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
28 changes: 26 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,39 @@
"source": "github"
},
"version": "${VERSION}",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/github/github-mcp-server:${VERSION}",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "named",
"name": "-e",
"description": "Set an environment variable in the runtime",
"value": "GITHUB_PERSONAL_ACCESS_TOKEN={token}",
"isRequired": true,
"variables": {
"token": {
"isRequired": true,
"isSecret": true,
"format": "string"
}
}
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://api.githubcopilot.com/mcp/",
"headers": [
{
"name": "Authorization",
"description": "Authentication token (PAT or App token)",
"isRequired": true,
"description": "Authorization header with authentication token (PAT or App token)",
"isSecret": true
}
]
Expand Down