WebAnatomy
Setup

VS Code (Copilot)

Connect the Web Anatomy MCP to VS Code Copilot.

Where it goes: User mcp.json under servers.

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

  1. Open the Command Palette (Cmd/Ctrl+Shift+P) and run "MCP: Open User Configuration". Use this user-level file, not .vscode/mcp.json, so the token is never committed.
  2. Paste the entry below inside servers (merge if the file already has servers).
  3. Save, then run "MCP: List Servers" from the Command Palette and start webanatomy if it is not running.
  4. The tools appear in Copilot Chat agent mode.
{
  "servers": {
    "webanatomy": {
      "type": "http",
      "url": "https://mcp.webanatomy.ai/mcp",
      "headers": {
        "Authorization": "Bearer <paste-your-private-beta-token-here>"
      }
    }
  }
}