Add destiny2-mcp-server: Destiny 2 API integration - #883
Closed
Nadiar wants to merge 3 commits into
Closed
Conversation
There was a problem hiding this comment.
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.
unitedideas
pushed a commit
to unitedideas/docker-mcp-registry-actablesite
that referenced
this pull request
Apr 17, 2026
Bumps [golang.org/x/mod](https://github.com/golang/mod) from 0.31.0 to 0.32.0. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/mod/commit/4c04067938546e62fc0572259a68a6912726bcdd"><code>4c04067</code></a> go.mod: update golang.org/x dependencies</li> <li>See full diff in <a href="https://github.com/golang/mod/compare/v0.31.0...v0.32.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds destiny2-mcp-server, an MCP server for Destiny 2 API integration.
Features
16 tools for Destiny 2 data access:
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