Claude Desktop Cursor Cline (VS Code) Windsurf Continue.dev Zed Claude Code (CLI)
~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"overleaf-mcp": {
"command": "npx",
"args": [
"-y",
"@mjyoo2/overleaf-mcp"
],
"env": {
"OVERLEAF_PROJECT_URL": "https://www.overleaf.com/project/<id>",
"OVERLEAF_GIT_TOKEN": "your_overleaf_git_token"
}
}
}
}
⧉ Kopieren
Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"overleaf-mcp": {
"command": "npx",
"args": [
"-y",
"@mjyoo2/overleaf-mcp"
],
"env": {
"OVERLEAF_PROJECT_URL": "https://www.overleaf.com/project/<id>",
"OVERLEAF_GIT_TOKEN": "your_overleaf_git_token"
}
}
}
}
⧉ Kopieren
Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"overleaf-mcp": {
"command": "npx",
"args": [
"-y",
"@mjyoo2/overleaf-mcp"
],
"env": {
"OVERLEAF_PROJECT_URL": "https://www.overleaf.com/project/<id>",
"OVERLEAF_GIT_TOKEN": "your_overleaf_git_token"
}
}
}
}
⧉ Kopieren
Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"overleaf-mcp": {
"command": "npx",
"args": [
"-y",
"@mjyoo2/overleaf-mcp"
],
"env": {
"OVERLEAF_PROJECT_URL": "https://www.overleaf.com/project/<id>",
"OVERLEAF_GIT_TOKEN": "your_overleaf_git_token"
}
}
}
}
⧉ Kopieren
Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.
~/.continue/config.json
{
"mcpServers": [
{
"name": "overleaf-mcp",
"command": "npx",
"args": [
"-y",
"@mjyoo2/overleaf-mcp"
]
}
]
}
⧉ Kopieren
Continue nutzt ein Array von Serverobjekten statt einer Map.
~/.config/zed/settings.json
{
"context_servers": {
"overleaf-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@mjyoo2/overleaf-mcp"
]
}
}
}
}
⧉ Kopieren
In context_servers hinzufügen. Zed lädt beim Speichern neu.
claude mcp add overleaf-mcp -- npx -y @mjyoo2/overleaf-mcp
⧉ Kopieren
Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.