Files
Thomas Sickert 4fcfaa5130 Set title for GitHub MCP Server in server.json (#1397)
* Set title for GitHub MCP Server in server.json

* Update server.json
2025-11-13 09:24:02 -05:00

66 lines
1.8 KiB
JSON

{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/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.",
"title": "GitHub",
"status": "active",
"repository": {
"url": "https://github.com/github/github-mcp-server",
"source": "github"
},
"version": "${VERSION}",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/github/github-mcp-server:${VERSION}",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "positional",
"value": "run",
"description": "The runtime command to execute",
"isRequired": true
},
{
"type": "named",
"name": "-i",
"value": "true",
"description": "Run container in interactive mode",
"format": "boolean",
"isRequired": true
},
{
"type": "named",
"name": "--rm",
"value": "true",
"description": "Automatically remove the container when it exits",
"format": "boolean"
},
{
"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"
}
}
},
{
"type": "positional",
"valueHint": "image_name",
"value": "ghcr.io/github/github-mcp-server",
"description": "The container image to run",
"isRequired": true
}
]
}
]
}