WebAnatomy
Setup

Claude Desktop

Connect the Web Anatomy MCP to Claude Desktop via mcp-remote.

Claude Desktop supports stdio servers only, so it connects through the mcp-remote wrapper. Node.js must be installed.

Where it goes: claude_desktop_config.json under mcpServers.

Generate your token in the MCP dashboard and paste it in place of <paste-your-private-beta-token-here>.

  1. Open Claude Desktop → Settings → Developer → Edit Config.
  2. It opens claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/ · Windows: %APPDATA%\Claude\).
  3. Paste the entry below inside mcpServers (merge if the file already exists).
  4. Fully quit and reopen Claude Desktop. The webanatomy tools appear under the tools icon in the chat input.
{
  "mcpServers": {
    "webanatomy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.webanatomy.ai/mcp",
        "--header",
        "Authorization: Bearer <paste-your-private-beta-token-here>",
        "--transport",
        "http-first"
      ]
    }
  }
}