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": {
"stash-mcp": {
"command": "docker",
"args": [
"run",
"-p",
"9000:9000",
"ghcr.io/alash3al/stash:latest"
]
}
}
}
⧉ نسخ
افتح Claude Desktop → Settings → Developer → Edit Config. أعد التشغيل بعد الحفظ.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"stash-mcp": {
"command": "docker",
"args": [
"run",
"-p",
"9000:9000",
"ghcr.io/alash3al/stash:latest"
]
}
}
}
⧉ نسخ
يستخدم Cursor نفس مخطط mcpServers مثل Claude Desktop. إعدادات المشروع أولى من الإعدادات العامة.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"stash-mcp": {
"command": "docker",
"args": [
"run",
"-p",
"9000:9000",
"ghcr.io/alash3al/stash:latest"
]
}
}
}
⧉ نسخ
انقر على أيقونة MCP Servers في شريط Cline الجانبي، ثم "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"stash-mcp": {
"command": "docker",
"args": [
"run",
"-p",
"9000:9000",
"ghcr.io/alash3al/stash:latest"
]
}
}
}
⧉ نسخ
نفس الصيغة مثل Claude Desktop. أعد تشغيل Windsurf لتطبيق التغييرات.
~/.continue/config.json
{
"mcpServers": [
{
"name": "stash-mcp",
"command": "docker",
"args": [
"run",
"-p",
"9000:9000",
"ghcr.io/alash3al/stash:latest"
]
}
]
}
⧉ نسخ
يستخدم Continue مصفوفة من كائنات الخادم بدلاً من خريطة.
~/.config/zed/settings.json
{
"context_servers": {
"stash-mcp": {
"command": {
"path": "docker",
"args": [
"run",
"-p",
"9000:9000",
"ghcr.io/alash3al/stash:latest"
]
}
}
}
}
⧉ نسخ
أضف إلى context_servers. يعيد Zed التحميل تلقائيًا عند الحفظ.
claude mcp add stash-mcp -- docker run -p 9000:9000 ghcr.io/alash3al/stash:latest
⧉ نسخ
أمر من سطر واحد. تحقق باستخدام claude mcp list. احذف باستخدام claude mcp remove.