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>.
- 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. - Paste the entry below inside
servers(merge if the file already has servers). - Save, then run "MCP: List Servers" from the Command Palette and start
webanatomyif it is not running. - 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>"
}
}
}
}