~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"ay-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/walidboulanouar/Ay-Skills",
"~/.claude/skills/Ay-Skills"
],
"_inferred": true
}
}
}
Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"ay-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/walidboulanouar/Ay-Skills",
"~/.claude/skills/Ay-Skills"
],
"_inferred": true
}
}
}
Cursor usa el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la global.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"ay-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/walidboulanouar/Ay-Skills",
"~/.claude/skills/Ay-Skills"
],
"_inferred": true
}
}
}
Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ay-skill": {
"command": "git",
"args": [
"clone",
"https://github.com/walidboulanouar/Ay-Skills",
"~/.claude/skills/Ay-Skills"
],
"_inferred": true
}
}
}
Mismo formato que Claude Desktop. Reinicia Windsurf para aplicar.
~/.continue/config.json
{
"mcpServers": [
{
"name": "ay-skill",
"command": "git",
"args": [
"clone",
"https://github.com/walidboulanouar/Ay-Skills",
"~/.claude/skills/Ay-Skills"
]
}
]
}
Continue usa un array de objetos de servidor en lugar de un mapa.
~/.config/zed/settings.json
{
"context_servers": {
"ay-skill": {
"command": {
"path": "git",
"args": [
"clone",
"https://github.com/walidboulanouar/Ay-Skills",
"~/.claude/skills/Ay-Skills"
]
}
}
}
}
Añádelo a context_servers. Zed recarga en caliente al guardar.
claude mcp add ay-skill -- git clone https://github.com/walidboulanouar/Ay-Skills ~/.claude/skills/Ay-Skills
Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.