Docs MCP Server
@buger
About Docs MCP Server
Turn any github repo to MCP server, and chat with code or docs
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"docs-mcp": {
"command": "npx",
"args": [
"-y",
"@probelabs/docs-mcp@latest",
"--gitUrl",
"https://github.com/probelabs/probe"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Docs MCP Server?
A flexible Model Context Protocol (MCP) server powered by Probe that makes any documentation or codebase searchable by AI assistants. It allows you to chat with code or documentation by simply pointing to a Git repository or a local folder.
How to use Docs MCP Server?
Install and run the server via npx with CLI arguments, or configure it in an MCP client like Claude Desktop. For example:
npx -y @probelabs/docs-mcp@latest --gitUrl https://github.com/your-org/your-repo --toolName search_docs --toolDescription "Search documentation".
Configuration can also be provided via a docs-mcp.config.json file or environment variables.
Features of Docs MCP Server
- Powered by Probe search engine for relevant results.
- Supports local directories, Git repositories, and pre-built content.
- Dynamic configuration via config file, CLI, or environment variables.
- Automatic Git updates at configurable intervals.
- Customizable MCP tool name and description.
- Seamless integration with MCP-supporting AI assistants.
Use cases of Docs MCP Server
- Chat with any GitHub repository using natural language queries.
- Search your project's documentation or codebase.
- Build and publish custom MCP servers with pre-built documentation or code.
FAQ from Docs MCP Server
What is the difference between using a gitUrl with and without auto‑updates?
If autoUpdateInterval is 0 (default), the server downloads a .tar.gz archive from GitHub for faster startup. Setting it to a positive value triggers a full git clone and periodic git pull operations.
Can I use a local directory as the content source?
Yes, set the includeDir configuration option to an absolute path to a local directory. This works both during build and at runtime.
How do I customize the tool name exposed to AI assistants?
Use the --toolName and --toolDescription CLI arguments (or set them in the config file). They control the name and description of the search tool that AI assistants see.
How can I create a pre‑built, zero‑configuration MCP server?
Fork or clone this repository, configure docs-mcp.config.json with your content source and tool details, run npm run build, and publish to npm. Users can then run npx @my-org/my-docs-mcp@latest.
Does Docs MCP Server work with non‑GitHub Git repositories?
When autoUpdateInterval is 0, the server currently assumes a GitHub URL structure for tarball downloads. For other Git hosts, set autoUpdateInterval greater than 0 to use full git clone instead.
More Memory & Knowledge MCP servers
Notion MCP Server
makenotionOfficial Notion MCP Server
Docs MCP Server
araboldGrounded Docs MCP Server: Open-Source Alternative to Context7, Nia, and Ref.Tools
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.
Jupyter Notebook MCP Server (for Cursor)
jbenoModel Context Protocol (MCP) server designed to allow AI agents within Cursor to interact with Jupyter Notebook (.ipynb) files
Obsidian MCP Server
cyanheadsRead, write, search, and surgically edit Obsidian vault notes, tags, and frontmatter via MCP. STDIO or Streamable HTTP.
Comments