Skip to content
unzoi docs

Claude Desktop

A remote connector in settings, or the stdio bridge on plans without them.

Kind MCP client
Transport Remote MCP connector, added in Settings.
Config Settings → Connectors, or claude_desktop_config.json

Setup

  1. Open Settings and look for Connectors (sometimes under Integrations).
  2. Add a custom connector with the URL below and your key as an x-api-key header.
  3. Restart Claude Desktop.
  4. Start a chat and check the tools appear in the tool menu.
https://api.unzoi.com/mcp
x-api-key: nai_your_key_here

If your plan has no custom-connector option, bridge through stdio

          {
  "mcpServers": {
    "unzoi": {
      "command": "npx",
      "args": [
        "-y", "mcp-remote", "https://api.unzoi.com/mcp",
        "--header", "x-api-key:${UNZOI_KEY}"
      ],
      "env": { "UNZOI_KEY": "nai_your_key_here" }
    }
  }
}
        

What differs here

  • Remote connectors are not available on every plan. The stdio bridge above works on all of them and is the usual fallback — see the mcp-remote page for what it is doing.
  • The config file lives under your user Library (macOS) or AppData (Windows); the app shows the exact path from Settings → Developer → Edit Config, which is more reliable than any path written down here.
  • Because a desktop config file is a plain JSON file in your home directory, it is a credential store. Treat it like one.

Next

Endpoint, for copying: https://api.unzoi.com/mcp