-
Notifications
You must be signed in to change notification settings - Fork 3.4k
feat: Add MCPB bundle for Claude Desktop installation #1837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| # Source code - not needed for binary bundle | ||
| *.go | ||
| go.mod | ||
| go.sum | ||
|
|
||
| # Build and development | ||
| cmd/ | ||
| internal/ | ||
| pkg/ | ||
| script/ | ||
| e2e/ | ||
| e2e.test | ||
| .vscode/ | ||
| .github/ | ||
| .golangci.yml | ||
| .goreleaser.yaml | ||
| Dockerfile | ||
| .dockerignore | ||
|
|
||
| # Documentation (keep README for reference) | ||
| docs/ | ||
| CONTRIBUTING.md | ||
| CODE_OF_CONDUCT.md | ||
| SECURITY.md | ||
| SUPPORT.md | ||
| third-party-licenses.*.md | ||
| third-party/ | ||
|
|
||
| # Git | ||
| .git/ | ||
| .gitignore | ||
|
|
||
| # Misc | ||
| server.json | ||
| gemini-extension.json | ||
|
|
||
| # Keep only: | ||
| # - manifest.json | ||
| # - icon.png | ||
| # - bin/ (with all binaries) | ||
| # - README.md | ||
| # - LICENSE |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,93 @@ | ||||||
| { | ||||||
| "manifest_version": "0.3", | ||||||
| "name": "GitHub MCP Server", | ||||||
| "version": "0.28.1", | ||||||
| "description": "GitHub's official MCP Server - access repositories, issues, pull requests, actions, and more", | ||||||
| "author": { | ||||||
| "name": "GitHub", | ||||||
| "url": "https://github.com/github" | ||||||
| }, | ||||||
| "repository": { | ||||||
| "type": "git", | ||||||
| "url": "https://github.com/github/github-mcp-server" | ||||||
| }, | ||||||
| "homepage": "https://github.com/github/github-mcp-server", | ||||||
| "documentation": "https://github.com/github/github-mcp-server#readme", | ||||||
| "support": "https://github.com/github/github-mcp-server/issues", | ||||||
| "privacy_policies": [ | ||||||
| "https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" | ||||||
| ], | ||||||
| "icon": "icon.png", | ||||||
| "server": { | ||||||
| "type": "binary", | ||||||
| "entry_point": "bin/darwin-x64/github-mcp-server", | ||||||
| "mcp_config": { | ||||||
| "command": "${__dirname}/bin/darwin-x64/github-mcp-server", | ||||||
| "args": ["stdio"], | ||||||
| "env": { | ||||||
| "GITHUB_PERSONAL_ACCESS_TOKEN": "${user_config.github_token}", | ||||||
| "GITHUB_TOOLSETS": "${user_config.github_toolsets}", | ||||||
| "GITHUB_HOST": "${user_config.github_host}", | ||||||
| "GITHUB_READ_ONLY": "${user_config.github_read_only}", | ||||||
| "GITHUB_DYNAMIC_TOOLSETS": "${user_config.github_dynamic_toolsets}" | ||||||
| }, | ||||||
| "platform_overrides": { | ||||||
| "win32": { | ||||||
| "command": "${__dirname}/bin/win32-x64/github-mcp-server.exe" | ||||||
| }, | ||||||
| "linux": { | ||||||
| "command": "${__dirname}/bin/linux-x64/github-mcp-server" | ||||||
| } | ||||||
| } | ||||||
|
Comment on lines
+23
to
+41
|
||||||
| } | ||||||
| }, | ||||||
| "compatibility": { | ||||||
| "platforms": ["darwin", "win32", "linux"] | ||||||
| }, | ||||||
| "user_config": { | ||||||
| "github_token": { | ||||||
| "type": "string", | ||||||
| "title": "GitHub Personal Access Token", | ||||||
| "description": "Create at github.com/settings/tokens with repo scope", | ||||||
|
||||||
| "description": "Create at github.com/settings/tokens with repo scope", | |
| "description": "Create at github.com/settings/tokens. At minimum use the repo scope; additional scopes may be required for some toolsets (e.g., actions, security_events). See the README for full scope requirements.", |
Copilot
AI
Jan 18, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description for the GitHub Host configuration could be more specific. The format shown "github.mycompany.com" is missing the required "https://" prefix that the actual server code expects (as documented in the environment variables section). The description should specify the full format: "https://github.mycompany.com" to prevent user configuration errors.
| "description": "For GitHub Enterprise Server (e.g., github.mycompany.com). Leave empty for github.com", | |
| "description": "For GitHub Enterprise Server (must include \"https://\", e.g., https://github.mycompany.com). Leave empty for github.com", |
Copilot
AI
Jan 18, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tools list only includes 7 sample tools, which is incomplete. According to the project documentation, the GitHub MCP Server provides many more tools across multiple toolsets (repos, issues, pull_requests, users, actions, code_security, etc.). While this might be intentional to show representative examples, it creates a discrepancy between what users see in the manifest and what's actually available. Consider either including all tools or clarifying in the description that this is a partial list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version "0.28.1" appears to be hardcoded and may not match the actual release version. The project uses GoReleaser with version templating (see .goreleaser.yaml line 12 which sets version via ldflags), and server.json uses a VERSION template variable. Consider whether this version should be dynamically set during the build process to ensure consistency across all release artifacts, or document how this version should be maintained when new releases are created.