WebAnatomy
Setup

Gemini CLI

Connect the Web Anatomy MCP to Gemini CLI.

Where it goes: ~/.gemini/settings.json under mcpServers.

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

  1. Open ~/.gemini/settings.json (create it if it does not exist; a project-level .gemini/settings.json also works but would expose the token to the repo).
  2. Add the entry below under mcpServers, merging with the existing JSON. Note the key is httpUrl.
  3. Restart Gemini CLI, then type /mcp to check the server and its tools.
{
  "mcpServers": {
    "webanatomy": {
      "httpUrl": "https://mcp.webanatomy.ai/mcp",
      "headers": {
        "Authorization": "Bearer <paste-your-private-beta-token-here>"
      }
    }
  }
}