Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
"name": "io.github.github/github-mcp-server",
"description": "Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.",
"status": "active",
"repository": {
"url": "https://github.com/github/github-mcp-server",
"source": "github"
},
"version": "0.0.0",
"packages": [
{
"registryType": "oci",
"registryBaseUrl": "https://ghcr.io",
"identifier": "ghcr.io/github/github-mcp-server",
"version": "0.0.0",
"runtimeHint": "docker",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "positional",
"value": "run",
"description": "The runtime command to execute"
},
{
"type": "named",
"name": "-i",
"description": "Run container in interactive mode"
},
{
"type": "named",
"name": "--rm",
"description": "Automatically remove the container when it exits"
},
{
"type": "named",
"name": "-e",
"description": "Set an environment variable in the runtime"
},
{
"type": "positional",
"valueHint": "env_var_name",
"value": "GITHUB_PERSONAL_ACCESS_TOKEN",
"description": "Environment variable name"
},
{
"type": "positional",
"valueHint": "image_name",
"value": "ghcr.io/github/github-mcp-server",
"description": "The container image to run"
}
],
"environmentVariables": [
{
"description": "Your GitHub personal access token with appropriate scopes.",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "GITHUB_PERSONAL_ACCESS_TOKEN"
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://api.githubcopilot.com/mcp/"
}
]
}
Loading