Continue
MCP Server Setup Guide
Continue is an open-source AI coding assistant for VS Code and JetBrains. It supports MCP via its ~/.continue/config.json configuration file with both HTTP and stdio transport.
Prerequisites
- Continue extension — install from VS Code Marketplace or JetBrains Marketplace
- anonym.legal API key — Pro or Business plan
Installation
Open Continue Config
In VS Code, press Cmd/Ctrl+Shift+P → Continue: Open config.json. Or open directly at ~/.continue/config.json.
Add MCP Server — HTTP Method
{
"models": [...],
"mcpServers": [
{
"name": "anonym-legal",
"transport": {
"type": "streamableHttp",
"url": "https://anonym.legal/mcp",
"requestOptions": {
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
]
}
Alternative: stdio Method
{
"mcpServers": [
{
"name": "anonym-legal",
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-anonym-legal"],
"env": {
"ANONYM_LEGAL_API_KEY": "YOUR_API_KEY"
}
}
}
]
}
Reload Continue
Press Cmd/Ctrl+Shift+P → Continue: Reload config. The server will connect automatically. Check the Continue panel for the anonym-legal server status.
Available Tools (7)
free
tokens
free
free
free
free
free
Operators (6)
John Smith → [CLIENT] or [PERSON]
john@acme.com → (removed)
John Smith → a3f9b1...
4111-xxxx → enc:U2FsdGVkX1...
john@acme.com → jo**@****.com
John Smith → John Smith (tracked)
Troubleshooting
mcpServers not recognized
Ensure your Continue version supports MCP (0.9.195+). Update via VS Code Marketplace. Also note Continue uses an array for mcpServers, not an object like other clients.
JetBrains: config location
JetBrains Continue uses the same ~/.continue/config.json — the config is shared across all IDEs. Make sure you're editing the right file.