~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"claude-skills-marketplace-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/mhattingpete/claude-skills-marketplace",
"~/.claude/skills/claude-skills-marketplace"
],
"_inferred": true
}
}
}
Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"claude-skills-marketplace-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/mhattingpete/claude-skills-marketplace",
"~/.claude/skills/claude-skills-marketplace"
],
"_inferred": true
}
}
}
Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"claude-skills-marketplace-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/mhattingpete/claude-skills-marketplace",
"~/.claude/skills/claude-skills-marketplace"
],
"_inferred": true
}
}
}
Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"claude-skills-marketplace-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/mhattingpete/claude-skills-marketplace",
"~/.claude/skills/claude-skills-marketplace"
],
"_inferred": true
}
}
}
Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.
~/.continue/config.json
{
"mcpServers": [
{
"name": "claude-skills-marketplace-skill",
"command": "git",
"args": [
"clone",
"https://github.com/mhattingpete/claude-skills-marketplace",
"~/.claude/skills/claude-skills-marketplace"
]
}
]
}
O Continue usa um array de objetos de servidor em vez de um map.
~/.config/zed/settings.json
{
"context_servers": {
"claude-skills-marketplace-skill": {
"command": {
"path": "git",
"args": [
"clone",
"https://github.com/mhattingpete/claude-skills-marketplace",
"~/.claude/skills/claude-skills-marketplace"
]
}
}
}
}
Adicione em context_servers. Zed recarrega automaticamente ao salvar.
claude mcp add claude-skills-marketplace-skill -- git clone https://github.com/mhattingpete/claude-skills-marketplace ~/.claude/skills/claude-skills-marketplace
Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.