search_destiny_players_by_global_name

Pack: bungie · Endpoint: https://gateway.pipeworx.io/bungie/mcp

Paginated global search for Destiny players by Bungie name prefix; returns membershipId, membershipType, and bungieName for matching accounts.

Parameters

NameTypeRequiredDescription
pagenumberyes
display_name_prefixstringyes

Example call

Arguments

{
  "page": 0,
  "display_name_prefix": "Guard"
}

curl

curl -X POST https://gateway.pipeworx.io/bungie/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_destiny_players_by_global_name","arguments":{"page":0,"display_name_prefix":"Guard"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_destiny_players_by_global_name', {
  "page": 0,
  "display_name_prefix": "Guard"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Bungie name search response"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "bungie": {
      "url": "https://gateway.pipeworx.io/bungie/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026