skillsearch-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., "@skillsearch-mcpfind a skill for batch processing videos with ffmpeg"
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.
skillsearch-mcp
Semantic skill-library search as an MCP server. Given a natural-language query, it finds the most relevant skills (or any Markdown knowledge files) in your local skill directories — works out of the box with Claude Code, Codex, Cursor, and any MCP client.
Built on a small, local-first stack:
Embeddings:
bge-small-zh-v1.5via Ollama (works for Chinese + English)Storage: SQLite (WAL) — vector blobs + keyword columns, no heavy vector DB
Ranking: dual-channel Reciprocal Rank Fusion (cosine + substring keywords), so both semantic intent and exact terms like
ffmpegor14234are found
user query ──▶ embed (bge-small-zh) ──┐
keyword grams (4/2-gram) ─┴─▶ RRF ──▶ top-k skills + pathsWhy
Claude Code and Codex already have filesystem access. What they lack is a fast way to answer "which of my 100+ skills/knowledge files matches this task?". This server turns your skill library into a searchable index that any MCP client can query in ~100ms (local Ollama).
Related MCP server: ragi
Requirements
Python 3.10+
Ollama running locally with the embedding model:
ollama pull quentinz/bge-small-zh-v1.5Install
pip install skillsearch-mcp # from PyPI (once published)
# or from source
git clone https://github.com/<you>/skillsearch-mcp.git
cd skillsearch-mcp && pip install -e .Configuration
Environment variables:
Variable | Default | Description |
|
| Skill/knowledge root(s). Multiple dirs separated by |
|
| Where the index lives. Rebuilds automatically when skills change (mtime-based). |
|
| Ollama endpoint. |
|
| Embedding model. Any Ollama embedding model works, but index must be rebuilt after changing it (server does this automatically via meta check). |
Client setup
Claude Code
claude mcp add skillsearch -- python -m skillsearch_mcpor in .mcp.json:
{
"mcpServers": {
"skillsearch": {
"command": "python",
"args": ["-m", "skillsearch_mcp"],
"env": { "SKILLSEARCH_SKILLS_DIR": "/path/to/skills" }
}
}
}Codex
codex mcp add skillsearch -- python -m skillsearch_mcpor ~/.codex/config.toml:
[mcp_servers.skillsearch]
command = "python"
args = ["-m", "skillsearch_mcp"]
env = { SKILLSEARCH_SKILLS_DIR = "/path/to/skills" }Tools
skill_search(query, k=5)
Semantic search. Returns top-k matching skills with name, score, description, and absolute path. k is capped at 10.
skill_list()
List every indexed skill (name + description + path). Useful for exploration or for clients that want a full inventory.
Skill file format
Any directory containing SKILL.md files is indexed. A minimal example:
---
name: ffmpeg-video-batch-processing
description: ffmpeg video batch processing — watermark, compress, rename
---
# ffmpeg video batch processing
...full content...name and description from the frontmatter are used for search. Files
under .archive, .git, references, assets, templates,
node_modules are skipped.
How indexing works
On first query the server scans
SKILLSEARCH_SKILLS_DIR, embeds the first 512 chars of each skill, and stores vectors in SQLite (WAL).On subsequent queries it only re-indexes files whose mtime changed (cheap
update_indexpass), and prunes deleted ones.Query path: embed the query with the retrieval prefix, cosine-search the vector table, run 4-gram/2-gram substring scoring over name/description/ full_text, then fuse both rankings with RRF.
License
MIT
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
- AlicenseAqualityAmaintenanceA Model Context Protocol (MCP) server that provides intelligent search capabilities for discovering relevant Claude Agent Skills using vector embeddings and semantic similarity. This server implements the same progressive disclosure architecture that Anthropic describes in their Agent Skills enginee3396Apache 2.0
- AlicenseAqualityBmaintenanceLocal-first RAG indexing and semantic search MCP server. Enables document retrieval and context-aware queries using local embedding models.39MIT
- Flicense-qualityCmaintenanceEnables semantic search over local knowledge bases like Obsidian notes, SQLite, and plaintext files, exposing results to Claude via MCP server.
- Alicense-qualityBmaintenanceAn MCP server that provides always-fresh semantic search over Obsidian vaults, automatically watching file changes and using local embeddings via Ollama.286MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
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/thishuixinxin-create/skillsearch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server