Skip to content

Conversation

@Nadiar
Copy link

@Nadiar Nadiar commented Dec 13, 2025

Description

Adds destiny2-mcp-server, an MCP server for Destiny 2 API integration.

Features

  • 16 tools for Destiny 2 data access:

    • Player search (exact and fuzzy with confidence scoring)
    • Profile and character information
    • Activity history and aggregated stats
    • Item/weapon lookup with perk details
    • Clan roster search
    • Post-Game Carnage Reports
    • And more
  • Cross-save detection - automatically identifies primary platform

  • Day-one raid tracking - bonus confidence for elite players

  • Local manifest caching - fast item searches

Server Details

Testing

The server has been tested locally and works with both npm/npx and Docker:

\\�ash

npm

npx destiny2-mcp-server

Docker

docker run -e BUNGIE_API_KEY=your_key ghcr.io/nadiar/destiny2-mcp-server:latest
\\

Checklist

  • MIT License
  • Dockerfile at repo root
  • server.yaml with proper format
  • tools.json with all 16 tools
  • readme.md with documentation link
  • Docker image published to ghcr.io

Copilot AI review requested due to automatic review settings December 13, 2025 02:11
@Nadiar Nadiar requested a review from a team as a code owner December 13, 2025 02:11
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds a new MCP server for Destiny 2 API integration, enabling access to player profiles, activity history, item lookups, and clan information through the Bungie API.

Key changes:

  • Adds destiny2-mcp-server with 16 comprehensive tools for Destiny 2 data access
  • Implements fuzzy player search with confidence scoring algorithm
  • Provides manifest caching for efficient item lookups

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.

File Description
servers/destiny2-mcp-server/server.yaml Server configuration with Bungie API key setup and host permissions
servers/destiny2-mcp-server/tools.json Comprehensive documentation of all 16 available tools with detailed descriptions and arguments
servers/destiny2-mcp-server/readme.md Link to external documentation on GitHub

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

},
{
"name": "find_players",
"description": "Fuzzy search for Destiny 2 players by partial name. Returns multiple matches sorted by confidence (0-100+), with cross-save primary account detection. Confidence weighs: recency (25%), playtime (25%), lifetime triumphs (15%), active triumphs (15%), clan (10%), plus bonuses for day-one raid clears and elite clan status.",
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The phrase "Confidence weighs:" is grammatically incorrect. The verb "weighs" requires an object. Consider changing to "Confidence weights:" (noun) or "Confidence is weighted by:" for clarity.

Suggested change
"description": "Fuzzy search for Destiny 2 players by partial name. Returns multiple matches sorted by confidence (0-100+), with cross-save primary account detection. Confidence weighs: recency (25%), playtime (25%), lifetime triumphs (15%), active triumphs (15%), clan (10%), plus bonuses for day-one raid clears and elite clan status.",
"description": "Fuzzy search for Destiny 2 players by partial name. Returns multiple matches sorted by confidence (0-100+), with cross-save primary account detection. Confidence is weighted by: recency (25%), playtime (25%), lifetime triumphs (15%), active triumphs (15%), clan (10%), plus bonuses for day-one raid clears and elite clan status.",

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant