Connects Claude to the Bungie.net API for querying Destiny 2 player data, clan rosters, character loadouts, and historical stats. You get eleven tools covering player search by name or global ID, full profile pulls with inventory, individual character details, cross-platform linked accounts, clan membership lists, and both per-character and account-wide stat lookups. Also includes manifest entity lookups for game definitions. Runs through Pipeworx's gateway, which means you can either use this standalone or tap into their full 250+ source collection. Ships with an ask_pipeworx wrapper that handles natural language queries instead of manual tool calls. Useful if you're building Destiny companion features, clan management bots, or stat tracking dashboards that need conversational access to live game data.
Bungie.net Platform API MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
search_destiny_player | Find Destiny player by display name with code. |
search_destiny_players_by_global_name | Search Bungie names. |
profile | Profile + characters + inventory. |
character | Character detail. |
linked_profiles | Cross-platform profiles. |
clan_members | Clan members. |
user_by_id | Bungie.net user. |
equipped_loadout | Equipped loadout (components=205). |
historical_stats | Historical stats. |
historical_stats_for_account | Account-wide stats. |
entity_definition | Single definition by type + hash. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"bungie": {
"url": "https://gateway.pipeworx.io/bungie/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Bungie data" })
The gateway picks the right tool and fills the arguments automatically.
MIT