Bungie
liveGamesBungie.net API — Destiny 2 player profiles, characters, clans, loadouts, historical stats, and manifest definitions.
BYO key only — free application registration at bungie.net. Pass _apiKey on the gateway URL.
{
"mcpServers": {
"pipeworx-bungie": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/bungie/mcp?_apiKey=your_bungie_key"
]
}
}
}Tools
manifestDestiny 2 manifest metadata.
No parameters required.
Try it
search_destiny_playerFind Destiny player by display name with code.
No parameters required.
Try it
search_destiny_players_by_global_nameSearch Bungie names.
No parameters required.
Try it
profileProfile + characters + inventory.
No parameters required.
Try it
characterCharacter detail.
No parameters required.
Try it
linked_profilesCross-platform profiles.
No parameters required.
Try it
clanClan/group detail.
No parameters required.
Try it
clan_membersClan members.
No parameters required.
Try it
user_by_idBungie.net user.
No parameters required.
Try it
equipped_loadoutEquipped loadout (components=205).
No parameters required.
Try it
historical_statsHistorical stats.
No parameters required.
Try it
historical_stats_for_accountAccount-wide stats.
No parameters required.
Try it
entity_definitionSingle definition by type + hash.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/bungie/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/bungie/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"manifest","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("manifest", {});// Or ask in plain English:
const answer = await px.ask("bungie");