skill-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-mcpsearch for the incident response runbook"
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-mcp
Serve company documentation through one read-only MCP server. Point the server
at any compatible Markdown folder and agents get two portable tools:
search(query) to discover relevant information and fetch(id) to retrieve an
authoritative document with its canonical URL and metadata.
The content model is deliberately broader than Agent Skills. It works for internal-library guidance, data-source instructions, engineering standards, runbooks, architecture notes, and any other bounded company context.
Run the example catalog
Requires Python 3.14 or newer and uv.
git clone https://github.com/jacobragsdale/skill-mcp.git
cd skill-mcp
uv sync --locked
SKILL_MCP_CONTENT_ROOT=/absolute/path/to/skill-mcp/examples/context uv run skill-mcpConnect an MCP client to http://127.0.0.1:8000/mcp. The readiness endpoint
validates the live catalog and reports its document count:
curl http://127.0.0.1:8000/healthFastAPI's OpenAPI UI is available at http://127.0.0.1:8000/docs.
To keep the path in a local file, copy .env.example, set its required value,
and load it explicitly:
cp .env.example .env
uv run --env-file .env skill-mcpThe root is selected once at startup. Restart with a different
SKILL_MCP_CONTENT_ROOT to serve another compatible folder. Documents inside
the selected folder are validated and reread on every tool call, so edits go
live without rebuilding or restarting the server.
Related MCP server: mcp-docs
Add information to search and fetch
Create a UTF-8 Markdown file anywhere below the configured content root. Keep one file focused on one fetchable topic and begin it with this strict YAML frontmatter:
---
id: data/customer-orders
title: Customer order data source
url: https://docs.example.com/data/customer-orders
summary: Find governed customer order data and choose the supported table.
metadata:
owner: Data Platform
authority: example
updated: "2026-08-04"
---
# Customer order data
The supported source is ...Then validate the entire root:
uv run skill-mcp-validate /absolute/path/to/company-contextRepository contributors can invoke the repo-scoped
$add-company-context skill for
the complete authoring and retrieval-regression workflow. Do not hardcode
topic-specific branches in search or fetch; adding a valid document makes
it available to both tools automatically.
Content contract
The configured root is scanned recursively for non-hidden *.md files. Every
discovered file must satisfy the contract; one invalid document fails the
catalog rather than silently serving partial company guidance.
Field | Requirement |
| Required stable lowercase identifier using path segments and hyphens, such as |
| Required human-readable title, 1–200 characters. |
| Required absolute HTTP or HTTPS canonical source URL. |
| Required search-oriented summary, 1–500 characters. |
| Optional string-to-string provenance fields such as |
body | Required non-empty Markdown. A document may contain at most 60,000 characters so a fetch stays bounded. |
Keep identifiers stable when moving files: callers fetch by frontmatter id,
not by filesystem path. Hidden directories, hidden files, and common cache
directories are ignored. Symlinks that escape the configured root, duplicate
identifiers, malformed YAML, unknown frontmatter fields, non-UTF-8 text, and
empty bodies are rejected.
MCP reference
The server intentionally exposes tools only. That is the common denominator across coding agents; clients do not need MCP resource or prompt support.
Tool | Input | Structured result |
|
|
|
|
|
|
Both tools are declared read-only, non-destructive, idempotent, and
closed-world. Search is deterministic keyword retrieval over identifiers,
titles, summaries, metadata, and Markdown bodies. Titles and summaries receive
extra weight; an exact phrase in either receives a further boost. A query with
no matching terms returns an empty results array.
The server instructions tell agents to search whenever company-specific context could help, fetch before relying on a result, preserve canonical URLs as provenance, and avoid inventing internal facts when the catalog has no answer.
Production boundary
The included process binds only to 127.0.0.1:8000 and has no built-in
authentication or browser CORS policy. For company deployment, put it behind
your existing identity-aware gateway or reverse proxy, terminate TLS there,
and record per-tool latency, result count, fetched document id, caller, and
errors there or in structured application logs. Do not log full queries or
document bodies unless your privacy policy explicitly permits it.
Authentication controls who can reach a server; it is not document-level authorization. Run separate catalogs or add an authorization-aware storage adapter before mixing content with different audiences. The server is read-only and never executes, edits, or installs any served content.
Develop
uv sync --locked
uv run pytest
uv run pre-commit run --all-files
uv build --no-sourcesRetrieval examples live in examples/context/, and human-readable evaluation
queries live in evals/retrieval.json. The test suite checks every evaluation,
strict content rejection, live root swapping, the official in-memory MCP client
contract, tool annotations and schemas, and the FastAPI lifespan and health
route. CI runs the suite and all repository checks on Python 3.14.
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
- Alicense-qualityDmaintenanceA project-agnostic MCP server that exposes Markdown documentation from a project's /docs folder as MCP resources for AI agents. It provides stable, up-to-date context to reduce hallucinations and ensure agents remain aligned with project-specific conventions and goals.Last updated269MIT
- Alicense-qualityDmaintenanceGeneric MCP server that exposes Markdown documentation to LLMs, enabling them to search and answer questions about any software documentation.Last updatedMIT
- Alicense-qualityCmaintenanceAn MCP server that enables AI agents to search, read, and contribute to a structured markdown knowledge base with citations, freshness tracking, and a safe write path, providing a shared, auditable company memory.Last updated6MIT
- Alicense-qualityCmaintenanceA documentation MCP server that crawls websites and Git repositories, stores them as Markdown, and provides tools to search and retrieve documentation for local LLMs and AI agents.Last updatedApache 2.0
Related MCP Connectors
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
An MCP server that gives your AI access to the source code and docs of all public github repos
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/jacobragsdale/skill-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server