Claude Code / Claude Desktop
Claude Code — including Claude Desktop and the Claude VS Code extension — attaches to MCP servers over HTTP.
- Enable MCP connectors: Settings → Developer → Enable MCP connectors, then restart if prompted.
- Open
~/Library/Application Support/Claude/mcp-servers.json(macOS) or
%APPDATA%\Claude\mcp-servers.json (Windows) and add the entry below.
- Keep the key in an environment variable (for example
CLAUDE_MCP_TOKEN) and reference it in the
Authorization header before relaunching Claude.
{
"servers": [
{
"id": "my-mcp-server",
"name": "my-mcp-server",
"type": "http",
"url": "https://saas.seekdown.ai/api/public/mcp/<server-key>",
"headers": {
"Authorization": "Bearer <your-mcp-key>"
}
}
]
}