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": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}
⧉ コピー
Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}
⧉ コピー
Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}
⧉ コピー
Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}
⧉ コピー
Claude Desktop と同じ形式。Windsurf を再起動して反映。
~/.continue/config.json
{
"mcpServers": [
{
"name": "puppeteer",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
]
}
⧉ コピー
Continue はマップではなくサーバーオブジェクトの配列を使用。
~/.config/zed/settings.json
{
"context_servers": {
"puppeteer": {
"command": {
"path": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}
}
⧉ コピー
context_servers に追加。保存時に Zed がホットリロード。
claude mcp add puppeteer -- npx -y @modelcontextprotocol/server-puppeteer
⧉ コピー
ワンライナー。claude mcp list で確認、claude mcp remove で削除。