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>.
- Open Claude Desktop → Settings → Developer → Edit Config.
- It opens
claude_desktop_config.json(macOS:~/Library/Application Support/Claude/· Windows:%APPDATA%\Claude\). - Paste the entry below inside
mcpServers(merge if the file already exists). - Fully quit and reopen Claude Desktop. The
webanatomytools 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"
]
}
}
}