Skip to main content
Every client points at the same endpoint and authenticates with your organization API key. Pick your client below.
Claude Desktop loads MCP servers from its claude_desktop_config.json.
1

Open the config file

In Claude Desktop, go to Settings → Developer → Edit Config, or open the file directly:
macOS:   ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
2

Add the Agntix server

Claude Desktop connects to remote servers through the mcp-remote bridge:
{
  "mcpServers": {
    "agntix": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.agntix.ai/mcp",
        "--header",
        "x-api-key:pk_live_xxxxxxxxxxxxxxxxxxxxxxxx"
      ]
    }
  }
}
3

Restart Claude Desktop

Fully quit and reopen the app. The Agntix tools appear under the tools (plug) icon in the composer. Ask “list my Agntix agents” to confirm.
Use a dedicated, scoped API key for each client (for example a read-only key for an assistant that should only summarize data). You can see each key’s last-used timestamp on the API Keys dashboard and revoke it instantly.

Troubleshooting

SymptomLikely cause
Tools don’t appearClient not restarted, or the server failed to start — check the client’s MCP logs.
401 UnauthorizedMissing or invalid x-api-key / Bearer token.
403 ForbiddenThe key is valid but lacks the scope for that tool. Issue a key with the right scopes.
npx errors in Claude DesktopNode.js 20+ must be installed and on your PATH for the mcp-remote bridge.
See the full list on the error codes page.