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": {
"linear-mcp-tacticlaunch": {
"command": "npx",
"args": [
"-y",
"@tacticlaunch/mcp-linear"
],
"env": {
"LINEAR_API_TOKEN": "your_linear_api_token"
}
}
}
}
⧉ Kopieren
Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"linear-mcp-tacticlaunch": {
"command": "npx",
"args": [
"-y",
"@tacticlaunch/mcp-linear"
],
"env": {
"LINEAR_API_TOKEN": "your_linear_api_token"
}
}
}
}
⧉ Kopieren
Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"linear-mcp-tacticlaunch": {
"command": "npx",
"args": [
"-y",
"@tacticlaunch/mcp-linear"
],
"env": {
"LINEAR_API_TOKEN": "your_linear_api_token"
}
}
}
}
⧉ Kopieren
Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"linear-mcp-tacticlaunch": {
"command": "npx",
"args": [
"-y",
"@tacticlaunch/mcp-linear"
],
"env": {
"LINEAR_API_TOKEN": "your_linear_api_token"
}
}
}
}
⧉ Kopieren
Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.
~/.continue/config.json
{
"mcpServers": [
{
"name": "linear-mcp-tacticlaunch",
"command": "npx",
"args": [
"-y",
"@tacticlaunch/mcp-linear"
]
}
]
}
⧉ Kopieren
Continue nutzt ein Array von Serverobjekten statt einer Map.
~/.config/zed/settings.json
{
"context_servers": {
"linear-mcp-tacticlaunch": {
"command": {
"path": "npx",
"args": [
"-y",
"@tacticlaunch/mcp-linear"
]
}
}
}
}
⧉ Kopieren
In context_servers hinzufügen. Zed lädt beim Speichern neu.
claude mcp add linear-mcp-tacticlaunch -- npx -y @tacticlaunch/mcp-linear
⧉ Kopieren
Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.