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": {
"affine": {
"command": "npx",
"args": [
"-y",
"affine-mcp-server"
],
"_inferred": true
}
}
}
⧉ Копировать
Откройте Claude Desktop → Settings → Developer → Edit Config. Перезапустите после сохранения.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"affine": {
"command": "npx",
"args": [
"-y",
"affine-mcp-server"
],
"_inferred": true
}
}
}
⧉ Копировать
Cursor использует ту же схему mcpServers, что и Claude Desktop. Конфиг проекта приоритетнее глобального.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"affine": {
"command": "npx",
"args": [
"-y",
"affine-mcp-server"
],
"_inferred": true
}
}
}
⧉ Копировать
Щёлкните значок MCP Servers на боковой панели Cline, затем "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"affine": {
"command": "npx",
"args": [
"-y",
"affine-mcp-server"
],
"_inferred": true
}
}
}
⧉ Копировать
Тот же формат, что и Claude Desktop. Перезапустите Windsurf для применения.
~/.continue/config.json
{
"mcpServers": [
{
"name": "affine",
"command": "npx",
"args": [
"-y",
"affine-mcp-server"
]
}
]
}
⧉ Копировать
Continue использует массив объектов серверов, а не map.
~/.config/zed/settings.json
{
"context_servers": {
"affine": {
"command": {
"path": "npx",
"args": [
"-y",
"affine-mcp-server"
]
}
}
}
}
⧉ Копировать
Добавьте в context_servers. Zed перезагружается автоматически.
claude mcp add affine -- npx -y affine-mcp-server
⧉ Копировать
Однострочная команда. Проверить: claude mcp list. Удалить: claude mcp remove.