fix(engineering): correct GitHub MCP server URL#172
Open
tejas-dharani wants to merge 1 commit intoanthropics:mainfrom
Open
fix(engineering): correct GitHub MCP server URL#172tejas-dharani wants to merge 1 commit intoanthropics:mainfrom
tejas-dharani wants to merge 1 commit intoanthropics:mainfrom
Conversation
api.github.com/mcp returns 404 — the route does not exist. Correct endpoint is api.githubcopilot.com/mcp/ (verified from claude-plugins-official/external_plugins/github/.mcp.json). Fixes anthropics#168
f26de62 to
643005d
Compare
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.
Problem
engineering/.mcp.jsonships with a broken GitHub MCP URL:https://api.github.com/mcpdoes not exist — it returns a standard GitHub REST API 404:Every user who installs the
engineeringplugin sees GitHub MCP fail with✘ failedat startup.Fix
Change the URL to
https://api.githubcopilot.com/mcp/— the correct GitHub MCP endpoint, consistent withclaude-plugins-official/external_plugins/github/.mcp.json.Returns
401 Unauthorized(endpoint exists, requires auth) — not 404.Changes
engineering/.mcp.json:api.github.com/mcp→api.githubcopilot.com/mcp/Testing
Verified correct URL by inspecting
claude-plugins-official/external_plugins/github/.mcp.jsonand curl-testing both endpoints.Closes #168