
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 — Destiny 2 + Bungie public data. Free API key (X-API-Key).
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
PLATFORM_BUNGIE_KEY. BYO: ?_apiKey=….manifest() — Destiny 2 manifest metadata (paths to JSON tables)search_destiny_player(membership_type, display_name_with_code) — find player (use -1 for any platform)search_destiny_players_by_global_name(page, display_name_prefix) — search by Bungie name prefixprofile(membership_type, destiny_membership_id, components) — profile + characters + inventory (components = comma-sep numbers; see Bungie docs)character(membership_type, destiny_membership_id, character_id, components) — character detaillinked_profiles(membership_type, membership_id, get_all_memberships?) — cross-platform profilesclan(group_id) — clan/group detailclan_members(group_id, current_page?) — clan membersuser_by_id(membership_id, membership_type) — Bungie.net userequipped_loadout(membership_type, destiny_membership_id, character_id) — equipped loadout (components=205)historical_stats(membership_type, destiny_membership_id, character_id?, modes?) — statshistorical_stats_for_account(membership_type, destiny_membership_id) — account-wide statsentity_definition(type, hash_identifier) — single definition (e.g. DestinyInventoryItemDefinition + item hash)https://www.bungie.net/Platform
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"bungie": {
"url": "https://gateway.pipeworx.io/bungie/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/bungie/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Bungie data" })
The gateway picks the right tool and fills the arguments automatically.
MIT