Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ bin/
.DS_Store

# binary
github-mcp-server
github-mcp-server
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://docker.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