~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ai-daily-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/geekjourneyx/ai-daily-skill",
"~/.claude/skills/ai-daily-skill"
],
"_inferred": true
}
}
}
Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"ai-daily-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/geekjourneyx/ai-daily-skill",
"~/.claude/skills/ai-daily-skill"
],
"_inferred": true
}
}
}
Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"ai-daily-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/geekjourneyx/ai-daily-skill",
"~/.claude/skills/ai-daily-skill"
],
"_inferred": true
}
}
}
Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ai-daily-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/geekjourneyx/ai-daily-skill",
"~/.claude/skills/ai-daily-skill"
],
"_inferred": true
}
}
}
Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.
~/.continue/config.json
{
"mcpServers": [
{
"name": "ai-daily-skill",
"command": "git",
"args": [
"clone",
"https://github.com/geekjourneyx/ai-daily-skill",
"~/.claude/skills/ai-daily-skill"
]
}
]
}
Continue nutzt ein Array von Serverobjekten statt einer Map.
~/.config/zed/settings.json
{
"context_servers": {
"ai-daily-skill": {
"command": {
"path": "git",
"args": [
"clone",
"https://github.com/geekjourneyx/ai-daily-skill",
"~/.claude/skills/ai-daily-skill"
]
}
}
}
}
In context_servers hinzufügen. Zed lädt beim Speichern neu.
claude mcp add ai-daily-skill -- git clone https://github.com/geekjourneyx/ai-daily-skill ~/.claude/skills/ai-daily-skill
Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.