GitHub Copilot
GitHub Copilot Chat can talk to MCP HTTP servers on builds with MCP enabled.
- Enable MCP: Settings → GitHub Copilot → Experimental → Enable MCP (build-dependent).
- Create or edit
~/.config/github-copilot/mcp.jsonand add the entry below. - Reference your token from an environment variable (for example
COPILOT_MCP_TOKEN) in the
header, then reload Copilot.
{
"version": 1,
"mcpServers": {
"my-mcp-server": {
"type": "http",
"url": "https://saas.seekdown.ai/api/public/mcp/<server-key>",
"headers": {
"Authorization": "Bearer <your-mcp-key>"
}
}
}
}