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
Exposes 1,334 skills as global MCP tools in Claude Desktop, VSCode, Cursor, and any compatible client
What it does
๐ Automatically discovers all skills in
c:\skills(live, no rebuild required)๐๏ธ Categorizes 1,334 skills into 18 categories with dedicated commands per category
๐ง Exposes 24 MCP tools: 18 category-based + 6 general (including BM25 semantic search)
๐ Works in Claude Desktop, VSCode Copilot, Cursor, GitHub Copilot
Related MCP server: Skillz
Architecture
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 quick steps
1๏ธโฃ Install dependencies
# Recomendado (uv)
cd c:\mcp
uv sync
# Alternativa (pip)
pip install -r requirements.txt2๏ธโฃ Run setup
cd c:\mcp
python setup.pyOr using the PowerShell script (recommended for Windows):
.\setup.ps1This automatically configures:
โ Claude Desktop (
%APPDATA%\Claude\claude_desktop_config.json)โ Cursor (
~\.cursor\mcp.json)๐ Displays instructions for VSCode
3๏ธโฃ Restart applications
Restart Claude Desktop, Cursor, and/or VSCode to load the server.
Available tools (24 total)
By category (18 tools)
Each tool lists only the skills in that category, with an icon and count.
Tool | Category | Skills |
| โฟ Accessibility | 9 |
| ๐ค AI & Agents | 191 |
| โ๏ธ Backend | 123 |
| ๐จ Frontend | 122 |
| ๐ DevOps & Cloud | 238 |
| ๐ Security | 89 |
| โ Testing & QA | 114 |
| ๐ฑ Mobile | 29 |
| ๐ Data Engineering | 38 |
| ๐ Automation | 171 |
| ๐๏ธ Architecture | 79 |
| ๐ป Languages | 75 |
| ๐ Content & Marketing | 97 |
| ๐ฎ GameDev | 8 |
| ๐ผ Business & Startups | 53 |
| ๐ Web3 & Blockchain | 8 |
| ๐ฅ Health & Wellness | 17 |
| โ๏ธ Legal | 9 |
All accept the parameter
limit: int = 0(0 = returns all in the category)
General (6 tools)
Tool | What it does |
| Reads and returns the full SKILL.md of a skill |
| Searches by substring in name/category |
| BM25 semantic search โ understands context, multi-token, partial synonyms |
| Lists all available categories with counts |
| Lists all 1,334 skills with pagination |
| Forces immediate cache reload (no restart) |
Usage examples
# 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) | ...Skill categorization
Skills are automatically categorized by folder name using token rules, prefixes, and substrings defined in mcp_server.py (dict CATEGORY_RULES).
To verify categories after adding new skills:
python categorize_skills.pyRuntime categorization is performed directly by the server โ
categories.jsonis just a snapshot for auditing.
Current distribution (March 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 (meta/personal skills without technical category)
77.7% of skills categorized into specific categories
Structure of a SKILL.md
# Nome da Skill
Descriรงรฃo brevรญssima do que a skill faz.
## Uso
Como usar, exemplos, contexto...The server reads the title (H1), extracts metadata, and uses the full content as context.
Adding a new skill
Create the folder:
c:\skills\{skill-name}\Create the file:
c:\skills\{skill-name}\SKILL.mdRun
python categorize_skills.pyto update the category cacheThe server discovers the skill on the next call (no restart required)
Troubleshooting
Skills not appearing
python -c "from mcp_server import get_skills; print(len(get_skills()))"Claude Desktop / Cursor not connecting
Check
uvin PATH:uv --versionCheck the config:
%APPDATA%\Claude\claude_desktop_config.jsonCompletely restart the client
VSCode not recognizing tools
Check
settings.json(see output ofpython setup.py)Restart VSCode
Slash Commands per Client
Client | Syntax | Status |
Claude Desktop |
| โ native |
Claude Code |
| โ native |
VS Code Copilot |
| โ works |
Cursor | does not support MCP Prompts | โ use natural language |
Dynamic Global Memory
Client | Mechanism | How to update |
Claude Desktop / Code |
| edit and save |
VS Code Copilot |
| edit and save |
Cursor |
|
|
Sync rules with 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
๐ MCP Spec 2025-11-25
๐ FastMCP Docs
๐งฉ VSCode MCP Guide
๐ฑ๏ธ Cursor MCP Guide
Created: March 26, 2026
Updated: March 29, 2026
Version: 2.2
Skills: 1,334 | Categories: 18 | MCP Tools: 24
Status: โ
Production ready
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables Claude to create, edit, run, and manage reusable skills stored locally, including executing scripts with automatic dependency management and environment variables. Works across all MCP-compatible clients like Cursor, Claude Desktop, and claude.ai.529MIT
- AlicenseNot gradedqualityDmaintenanceTurns Claude-style skills (SKILL.md files with resources) into callable MCP tools for any agent. Discovers skills from a directory, exposes their instructions and resources, and can execute bundled helper scripts.398MIT
- AlicenseNot gradedqualityNot gradedmaintenanceAn MCP server that transforms Claude-style skills and resources into callable tools for any MCP-compatible agent or client. It automatically discovers, exposes, and executes scripts from skills organized in local directories or packaged archives.
- AlicenseNot gradedqualityCmaintenanceAutomatically discovers and installs AI skills for your project's tech stack, supporting Claude, Copilot, Codex, and other MCP-compatible agents.144MIT
Related MCP Connectors
A registry of 5,900+ peer-authored skills any MCP agent can search and load on demand.
Agent-first skill marketplace with USK open standard for Claude, Cursor, Gemini, Codex CLI.
Free public MCP for AI agents โ 193 tools, 44 workflows. No API key.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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