skill-retrieval-mcp
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., "@skill-retrieval-mcpHelp me set up CI/CD for this Python project"
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.
skill-retrieval-mcp
Semantic search over a licence-vetted corpus of 374 agent skills, served to your coding agent over MCP. Runs locally, answers in single-digit milliseconds, makes zero API calls.
Works with Claude Code, Codex CLI, Gemini CLI, Cursor, OpenClaw, Hermes, and any MCP-compatible agent.
You: "Deploy this service to GKE"
─── Step 1: the agent searches ───────────────────────────────────────
Agent: search_skills("deploy a containerised service on kubernetes") ← 6ms
→ 5 results (summaries only, no full instructions):
1. "gke-service-networking" (0.56) - Gateway API, Ingress, Cloud Armor, NEGs, managed SSL
2. "gke-workload-scaling" (0.51) - HPA and VPA for GKE workloads
3. "gke-manifest-generation" (0.51) - Production-ready Kubernetes YAML for Autopilot/Standard
4. "gke-app-onboarding" (0.46) - Containerizing and deploying an app to GKE for the first time
5. "gke-basics" (0.44) - Cluster provisioning, credentials, Autopilot vs Standard
─── Step 2: it reads the descriptions and picks #4, not #1 ───────────
Agent: get_skill("gke-app-onboarding")
→ gets the full guide: containerization, manifests, migration path
→ writes the Dockerfile and deployment.yaml
─── Step 3: a new need emerges mid-task ──────────────────────────────
Agent: # the service has to survive traffic spikes — search again
search_skills("autoscale pods on cpu and memory") ← 6ms
→ "gke-workload-scaling" (0.61) - Horizontal and Vertical Pod Autoscaler for GKE
→ reads the guide, adds the HPA manifestBoth searches are real output from the shipped corpus, not an illustration. Three things in it are the whole design:
Search returns summaries, not instructions. Five summaries cost a few hundred tokens; the one skill the agent actually reads costs about 2,400.
The top hit is not always the right one. The agent picked #4 because its description says for the first time — a judgement no ranking can make. That is why search hands back descriptions instead of injecting the winner.
The agent searches again as the task evolves. Neither "autoscale" nor "pods" appeared in what the user asked for.
Installation
pip install "skill-retrieval-mcp[local,hf]"
skill-mcp pull --include-index # corpus + pre-built vector index
skill-mcp init # detect and register with your agentsAbout two minutes, mostly download. init finds the agents you have installed
and writes their config for you.
init writes .mcp.json, ~/.gemini/settings.json, .cursor/mcp.json and
~/.codex/config.toml itself. For OpenClaw and Hermes it calls their own
mcp add, because both keep MCP servers inside a larger hand-edited config and
re-serialising it here would drop your comments. DeepSeek Harness has no
mcp add, so init prints the row for you to paste.
If it misses your agent, register this entry yourself:
{
"mcpServers": {
"skill-retrieval": {
"command": "/absolute/path/to/skill-mcp",
"args": ["--data-dir", "/absolute/path/to/data-dir", "serve"]
}
}
}Two details are load-bearing, and both fail silently if you shorten them:
commandhas to be an absolute path, notskill-mcp. The agent resolves the name itself, from a session whosePATHhas routinely never seen the venv or pipx directory you installed into.which skill-mcpgives you the value.--data-dirhas to be spelled out, and it has to come beforeserve.~is re-resolved in whatever environment the agent spawns the server from, and the config that records your choice lives inside the chosen directory, so nothing else can recover it. A server opened on the wrong directory starts cleanly, lists its tools, and answers every search with nothing.skill-mcp statusprints the resolved directory to use.
Related MCP server: skill-curator-mcp
Why search instead of install
Installing skills by hand works, right up until it doesn't scale:
You don't know what exists. You install the ten you happen to find. Everything else, the agent guesses at.
You can't install what you can't name. Mid-task the agent needs a skill for "OIDC-based PyPI publishing" — you would never have thought to add it.
A skill library doesn't fit in the prompt. Lazy loading still puts every skill's name and description in front of the model: 37K tokens for this corpus before it has read a single one. The instructions are another 960K.
Installing by hand | skill-retrieval-mcp | |
Scale | Dozens, if you're diligent | 374 across 8 upstream repos |
Discovery | You find and install each one | The agent searches by need |
Selection | You pick upfront | The agent picks per task |
Matching | Name matching on descriptions | Semantic, single-digit ms, local FAISS |
Provenance | Whatever you happened to clone | Every skill carries its repo, URL and SPDX licence |
On 43 held-out queries phrased the way an agent would phrase a task — never
echoing a skill's own name — the shipped corpus answers 81.4% at rank 1 and
90.7% within the top 3. The harness is in the repo; see
dev.md for what it measures and what it found.
What's in the corpus
374 skills from eight repositories whose licences were read before anything was imported:
Repository | Skills | Licence |
163 | MIT | |
112 | Apache-2.0 | |
35 | MIT | |
24 | MIT | |
20 | Apache-2.0 | |
14 | MIT | |
5 | MIT | |
1 | MIT |
Each skill is a step-by-step guide with code examples, pitfalls and recommendations — not a one-liner. The median runs about 9,600 characters.
Every row records the repository it came from, its upstream URL and its SPDX licence, so anything you get back can be traced and attributed. Repositories without a licence permitting redistribution are not imported, however good the content.
skill-mcp status shows what you have locally.
Tools
Tool | What it does |
| Semantic search — describe what you need in natural language |
| Exact match — tool names, error messages, CLI commands |
| Fetch full instructions; call after searching |
| Browse available domains and counts |
Search returns summaries only. The agent calls get_skill for the ones it
actually wants, which is where the token saving comes from.
Adding your own skills
<!-- ~/my-skills/deploy-checklist/SKILL.md -->
---
name: "deploy-checklist"
description: "Pre-deployment verification checklist for production releases"
tags: ["deployment", "production", "checklist"]
---
## Steps
1. Run full test suite...
2. Check database migrations...skill-mcp import --source directory --path ~/my-skills/The index updates automatically — new skills are searchable immediately, and
only the new ones are embedded. Pass --no-index to skip that when you are
batch-importing several sources before one build. Your skills merge with the
corpus; deduplication is automatic.
Configuration
Everything lives in one data directory, ~/.skill-mcp by default:
~/.skill-mcp/
├── config.yaml
├── skills.db # SQLite + FTS5
└── index/ # FAISSPoint somewhere else with the global --data-dir flag or SKILL_MCP_DATA_DIR.
The flag belongs to the group, so it goes before the subcommand:
skill-mcp --data-dir /srv/skills pullEmbedding backends
The default is sentence-transformers/all-MiniLM-L6-v2 — local, free, no API
key, and the one the pre-built index was built with.
Backend | Pre-built index | Requires |
| yes | nothing |
| build locally |
|
| build locally | Ollama running |
An index is only valid for the model that built it, so switching means rebuilding:
# set backend: openai, model: text-embedding-3-large in config.yaml, then
skill-mcp build-index --backend openaiCLI reference
skill-mcp [--data-dir DIR] [--log-level LEVEL] COMMAND [ARGS]
init [--data-dir DIR] [--no-register] Set up the data directory, register with agents
pull [--replace] [--include-index] Download the corpus from HuggingFace
import --source SOURCE --path PATH Import your own skills
[--no-index]
build-index [--backend B] [--model M] Build or update the vector index
[--force]
serve [--transport stdio|sse] Start the MCP server
search QUERY [--k N] Search from the terminal
status Show what is loaded
dedup Remove cross-source duplicatesContributing
Issues and pull requests are welcome at
github.com/JayCheng113/skill-retrieval-mcp.
dev.md documents the architecture and the reasoning behind the
design decisions, including what was tried and rejected — read it before a
non-trivial change.
To propose a repository for the corpus, open an issue with its licence and a
case for what it covers that the current 374 do not. The bar is in
dev.md: a licence that
permits redistribution, and evidence the skills actually win queries.
git clone https://github.com/JayCheng113/skill-retrieval-mcp
cd skill-retrieval-mcp
pip install -e ".[all,dev]"
pytest tests/ -v # 240 tests, ~6sLicense
MIT — see LICENSE.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
AI agent skills marketplace — token-efficient skill search & execution
Search & install 6,500+ AI agent skills from skills-hub.ai inside any MCP tool.
A registry of 5,900+ peer-authored skills any MCP agent can search and load on demand.
- SkilderOAuthai.skilder
One place to build, share, and govern the skills and tools your AI agents use at work.
Related MCP Servers
- AlicenseAqualityDmaintenanceConnects AI coding agents to the SkillsMP marketplace, allowing users to search, read, and install over 8,000 community-made skills. It enables agents to gain new capabilities either through on-the-spot instruction or permanent installation without requiring an API key.52210MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to intelligently match tasks to skills through semantic embeddings, track skill effectiveness, detect skill gaps, and discover new skills from external sources.Apache 2.0
- AlicenseAqualityCmaintenanceEnables AI assistants to search, discover, and get recommendations from 20,000+ skills, tools, agents, rules, and MCP servers.5261MIT
- AlicenseAqualityBmaintenanceEnables AI agents to autonomously search, evaluate, and install skills from the skills.sh catalog.2413ISC
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/JayCheng113/skill-retrieval-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server