Continue
MCP Server-Setup-Leitfaden
Continue ist ein Open-Source KI-Kodierassistent für VS Code und JetBrains. Er unterstützt MCP über die Konfigurationsdatei ~/.continue/config.json mit HTTP- und stdio-Transport.
Voraussetzungen
- Continue-Erweiterung — Installieren Sie sie vom VS Code Marketplace oder JetBrains Marketplace
- anonym.legal API-Schlüssel — Pro- oder Business-Plan
Installation
Continue-Konfiguration öffnen
Drücken Sie in VS Code Cmd/Strg+Umschalt+P → Continue: Open config.json. Oder öffnen Sie direkt die Datei ~/.continue/config.json.
MCP Server hinzufügen — HTTP-Methode
{
"models": [...],
"mcpServers": [
{
"name": "anonym-legal",
"transport": {
"type": "streamableHttp",
"url": "https://anonym.legal/mcp",
"requestOptions": {
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
]
}
Alternative: stdio-Methode
{
"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"
}
}
}
]
}
Continue neu laden
Drücken Sie Cmd/Strg+Umschalt+P → Continue: Reload config. Der Server verbindet sich automatisch. Überprüfen Sie das Continue-Panel auf den anonym-legal-Server-Status.
Verfügbare Tools (7)
kostenlos
Tokens
kostenlos
kostenlos
kostenlos
kostenlos
kostenlos
Operatoren (6)
John Smith → [CLIENT] oder [PERSON]
john@acme.com → (entfernt)
John Smith → a3f9b1...
4111-xxxx → enc:U2FsdGVkX1...
john@acme.com → jo**@****.com
John Smith → John Smith (verfolgbar)
Fehlerbehebung
mcpServers nicht erkannt
Stellen Sie sicher, dass Ihre Continue-Version MCP unterstützt (0.9.195+). Aktualisieren Sie über VS Code Marketplace. Beachten Sie auch, dass Continue ein Array für mcpServers verwendet, nicht ein Objekt wie andere Clients.
JetBrains: Speicherort der Konfiguration
JetBrains Continue verwendet die gleiche ~/.continue/config.json — die Konfiguration wird über alle IDEs hinweg geteilt. Stellen Sie sicher, dass Sie die richtige Datei bearbeiten.