~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"swift-concurrency-migration-skill": {
"command": "claude",
"args": [
"plugin",
"marketplace",
"add",
"kylehughes/the-unofficial-swift-concurrency-migration-skill"
],
"_inferred": false
}
}
}
Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"swift-concurrency-migration-skill": {
"command": "claude",
"args": [
"plugin",
"marketplace",
"add",
"kylehughes/the-unofficial-swift-concurrency-migration-skill"
],
"_inferred": false
}
}
}
Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"swift-concurrency-migration-skill": {
"command": "claude",
"args": [
"plugin",
"marketplace",
"add",
"kylehughes/the-unofficial-swift-concurrency-migration-skill"
],
"_inferred": false
}
}
}
Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"swift-concurrency-migration-skill": {
"command": "claude",
"args": [
"plugin",
"marketplace",
"add",
"kylehughes/the-unofficial-swift-concurrency-migration-skill"
],
"_inferred": false
}
}
}
Claude Desktop と同じ形式。Windsurf を再起動して反映。
~/.continue/config.json
{
"mcpServers": [
{
"name": "swift-concurrency-migration-skill",
"command": "claude",
"args": [
"plugin",
"marketplace",
"add",
"kylehughes/the-unofficial-swift-concurrency-migration-skill"
]
}
]
}
Continue はマップではなくサーバーオブジェクトの配列を使用。
~/.config/zed/settings.json
{
"context_servers": {
"swift-concurrency-migration-skill": {
"command": {
"path": "claude",
"args": [
"plugin",
"marketplace",
"add",
"kylehughes/the-unofficial-swift-concurrency-migration-skill"
]
}
}
}
}
context_servers に追加。保存時に Zed がホットリロード。
claude mcp add swift-concurrency-migration-skill -- claude plugin marketplace add kylehughes/the-unofficial-swift-concurrency-migration-skill
ワンライナー。claude mcp list で確認、claude mcp remove で削除。