Skills MCP Server
Includes skills related to Docker within the DevOps & Cloud category, enabling users to search for and access Docker-related development skills through the MCP server's search and categorization tools.
Includes Git-related skills within various categories, enabling users to search for and access Git-related development skills through the MCP server's search and categorization tools.
Includes GitHub-related skills within various categories, enabling users to search for and access GitHub-related development skills through the MCP server's search and categorization tools.
Integrates with VS Code Copilot to expose 1334 skills as MCP tools accessible through slash commands like /skills.ai and /skills.backend within the VS Code environment.
Processes skills stored in SKILL.md files, extracting metadata from markdown content and using the full markdown content as context for skill invocation and semantic search.
Includes Python-related skills within the Languages category, enabling users to search for and access Python development skills through the MCP server's search and categorization tools.
Includes React-related skills within the Frontend category, enabling users to search for and access React development skills through the MCP server's search and categorization tools.
Integrates with Cursor's SQLite-based Rules system, providing tools to synchronize global memory rules from CLAUDE.md to Cursor's user rules through the sync_cursor_rules.py utility.
Uses pyproject.toml for dependency management configuration, enabling the MCP server to be installed and run with proper dependencies through uv or pip.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Skills MCP Serversearch for skills related to React hooks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🎯 Skills MCP Server - Global Command Integration
Expõe 1334 skills como ferramentas MCP globais em Claude Desktop, VSCode, Cursor e qualquer cliente compatível
O que faz
📚 Descobre automaticamente todas as skills em
c:\skills(ao vivo, sem rebuild)🗂️ Categoriza 1334 skills em 18 categorias com comandos dedicados por categoria
🔧 Expõe 24 ferramentas MCP: 18 de categoria + 6 gerais (incluindo busca semântica BM25)
🌐 Funciona em Claude Desktop, VSCode Copilot, Cursor, GitHub Copilot
Arquitetura
c:\skills\ ← 1300+ skills (cada uma com SKILL.md)
├── agent-customization/
│ └── SKILL.md
├── react-best-practices/
│ └── SKILL.md
└── ...
c:\mcp\ ← MCP Server
├── mcp_server.py ← Servidor principal (24 tools, FastMCP)
├── categorize_skills.py ← Utilitário de auditoria de categorias
├── categories.json ← Snapshot de categorias para auditoria
├── sync_cursor_rules.py ← Sincroniza CLAUDE.md → Cursor User Rules
├── setup.py ← Configura clientes automaticamente
├── pyproject.toml ← Dependências (uv)
├── requirements.txt ← Dependências (pip)
└── README.mdSetup - 3 passos rápidos
1️⃣ Instalar dependências
# Recomendado (uv)
cd c:\mcp
uv sync
# Alternativa (pip)
pip install -r requirements.txt2️⃣ Executar setup
cd c:\mcp
python setup.pyOu usando o script PowerShell (recomendado para Windows):
.\setup.ps1Isso configura automaticamente:
✅ Claude Desktop (
%APPDATA%\Claude\claude_desktop_config.json)✅ Cursor (
~\.cursor\mcp.json)📝 Exibe instruções para VSCode
3️⃣ Reiniciar as aplicações
Reinicie Claude Desktop, Cursor e/ou VSCode para carregar o servidor.
Ferramentas disponíveis (24 total)
Por categoria (18 tools)
Cada tool lista somente as skills da categoria, com ícone e contagem.
Tool | Categoria | Skills |
| ♿ Acessibilidade | 9 |
| 🤖 AI & Agentes | 191 |
| ⚙️ Backend | 123 |
| 🎨 Frontend | 122 |
| 🚀 DevOps & Cloud | 238 |
| 🔒 Segurança | 89 |
| ✅ Testing & QA | 114 |
| 📱 Mobile | 29 |
| 📊 Data Engineering | 38 |
| 🔄 Automação | 171 |
| 🏗️ Arquitetura | 79 |
| 💻 Linguagens | 75 |
| 📝 Conteúdo & Marketing | 97 |
| 🎮 GameDev | 8 |
| 💼 Negócios & Startups | 53 |
| 🔗 Web3 & Blockchain | 8 |
| 🏥 Saúde & Bem-estar | 17 |
| ⚖️ Jurídico & Legal | 9 |
Todas aceitam parâmetro
limit: int = 0(0 = retorna todas da categoria)
Gerais (6 tools)
Tool | O que faz |
| Lê e retorna o SKILL.md completo de uma skill |
| Busca por substring no nome/categoria |
| Busca semântica BM25 — entende contexto, multi-token, sinônimos parciais |
| Lista todas as categorias disponíveis com contagens |
| Lista todas as 1334 skills com paginação |
| Força reload imediato do cache (sem restart) |
Exemplos de uso
# Listar skills de AI
list_ai_skills()
→ 🤖 AI & Agentes — 129 skills: agent-evaluation, agent-memory-mcp, ...
# Invocar uma skill específica
invoke_skill("react-best-practices", "como usar hooks corretamente?")
→ [retorna conteúdo completo do SKILL.md]
# Buscar por palavra
search_skills("docker")
→ [lista todas as skills com "docker" no nome]
# Ver todas as categorias
list_categories()
→ ♿ accessibility (8) | 🤖 ai (129) | ⚙️ backend (80) | ...Categorização de skills
As skills são categorizadas automaticamente pelo nome da pasta usando regras de tokens, prefixos e substrings definidas em mcp_server.py (dict CATEGORY_RULES).
Para verificar categorias após adicionar novas skills:
python categorize_skills.pyA categorização em runtime é feita pelo servidor diretamente — o
categories.jsoné apenas um snapshot para auditoria.
Distribuição atual (março 2026):
🚀 devops: 233 | 🤖 ai: 168 | 🔄 automation: 153 | ✅ testing: 109
⚙️ backend: 94 | 🎨 frontend: 91 | 📝 content: 88 | 🔒 security: 81
💻 language: 63 | 🏗️ architecture: 60 | 💼 business: 33 | 📱 mobile: 27
📊 data: 22 | ♿ accessibility: 9 | 🔗 web3: 8 | 🎮 gamedev: 7
📦 other: 298 (skills meta/pessoais sem categoria técnica)
77.7% das skills categorizadas em categorias específicas
Estrutura de uma SKILL.md
# Nome da Skill
Descrição brevíssima do que a skill faz.
## Uso
Como usar, exemplos, contexto...O servidor lê o título (H1), extrai metadados e usa o conteúdo completo como contexto.
Adicionar uma nova skill
Crie a pasta:
c:\skills\{nome-da-skill}\Crie o arquivo:
c:\skills\{nome-da-skill}\SKILL.mdRode
python categorize_skills.pypara atualizar o cache de categoriasO servidor já descobre a skill na próxima chamada (sem restart)
Troubleshooting
Skills não aparecem
python -c "from mcp_server import get_skills; print(len(get_skills()))"Claude Desktop / Cursor não conecta
Verifique
uvno PATH:uv --versionVerifique o config:
%APPDATA%\Claude\claude_desktop_config.jsonReinicie completamente o cliente
VSCode não reconhece as tools
Verifique
settings.json(ver output dopython setup.py)Reinicie o VSCode
Slash Commands por Cliente
Cliente | Sintaxe | Status |
Claude Desktop |
| ✅ nativo |
Claude Code |
| ✅ nativo |
VS Code Copilot |
| ✅ funciona |
Cursor | não suporta MCP Prompts | ❌ use linguagem natural |
Memória Global Dinâmica
Cliente | Mecanismo | Como atualizar |
Claude Desktop / Code |
| edite e salve |
VS Code Copilot |
| edite e salve |
Cursor |
|
|
Sincronizar regras com o Cursor
# Ver o que será gravado (dry-run)
python c:/mcp/sync_cursor_rules.py --show
# Sincronizar (feche o Cursor antes)
python c:/mcp/sync_cursor_rules.py
# Limpar
python c:/mcp/sync_cursor_rules.py --clearLinks
Criado: 26 de março de 2026
Atualizado: 29 de março de 2026
Versão: 2.2
Skills: 1334 | Categorias: 18 | Tools MCP: 24
Status: ✅ Pronto para produção
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Blindex09/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server