Documentation Crawler & MCP Server

v1.0.0Search & Data Extractionstable

This project provides a toolset to crawl websites wikis, tool/library documentions and generate Markdown documentation, and make that documentation searchable via a Model Context Protocol (MCP) server, designed for integration with tools like Cursor.

crawlermcpmcp-server
Share:
38
Stars
0
Downloads
0
Weekly
0/5

What is Documentation Crawler & MCP Server?

Documentation Crawler & MCP Server is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to this project provides a toolset to crawl websites wikis, tool/library documentions and generate markdown documentation, and make that documentation searchable via a model context protocol (mcp) server...

This project provides a toolset to crawl websites wikis, tool/library documentions and generate Markdown documentation, and make that documentation searchable via a Model Context Protocol (MCP) server, designed for integration with tools like Cursor.

This server falls under the Search & Data Extraction and Knowledge & Memory categories on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • This project provides a toolset to crawl websites wikis, too

Use Cases

Crawl websites and documentation portals to generate searchable Markdown. Integrate documentation into Cursor and other AI tools.
alizdavoodi

Maintainer

LicenseMIT License
Languagepython
Versionv1.0.0
UpdatedApr 10, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx documentation-crawler-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Documentation Crawler & MCP Server

Documentation Crawler & MCP Server lets you crawl websites, wikis, and library documentation to generate local Markdown files, then makes that content searchable through an MCP interface using vector similarity. It exposes three tools — list_documents, get_document_headings, and search_documentation — that allow AI assistants in Cursor and other MCP clients to semantically query any documentation you have crawled. This is especially useful when working with third-party SDKs or internal wikis that are not indexed in AI training data.

Prerequisites

  • Python 3.9+ with uv package manager installed (https://github.com/astral-sh/uv)
  • Git to clone the repository
  • An MCP-compatible client such as Cursor or Claude Desktop
  • No external API keys required — all embedding generation runs locally
1

Clone the repository

Clone the MCPDocSearch repository to a permanent location on your machine, since the MCP server must reference the absolute path at runtime.

git clone https://github.com/alizdavoodi/MCPDocSearch.git
cd MCPDocSearch
2

Install dependencies with uv

Run uv sync to create a virtual environment and install all packages declared in pyproject.toml. No manual pip installs are required.

uv sync
3

Crawl a documentation site

Use the crawl.py script to fetch a documentation site and generate local Markdown files. You can limit depth and filter URLs with --max-depth and --include-pattern.

uv run python crawl.py https://docs.example.com --max-depth 2 --include-pattern "*api*"
4

Start the MCP server manually to verify

Run the MCP server directly to confirm it starts without errors. Note that the first startup may take several minutes while it generates embeddings from the crawled content.

uv run python -m mcp_server.main
5

Configure Cursor (or Claude Desktop) to use the server

Add the server to your MCP client configuration. For Cursor, create or edit .cursor/mcp.json in your project root. Replace the path with the absolute path where you cloned MCPDocSearch.

Documentation Crawler & MCP Server Examples

Client configuration

Cursor mcp.json configuration pointing to your local MCPDocSearch clone. Replace /absolute/path/to/MCPDocSearch with your actual path.

{
  "mcpServers": {
    "doc-query-server": {
      "command": "uv",
      "args": ["--directory", "/absolute/path/to/MCPDocSearch", "run", "python", "-m", "mcp_server.main"],
      "env": {}
    }
  }
}

Prompts to try

Example prompts once the server is connected and you have crawled documentation.

- "List all the documents you have indexed"
- "Search the documentation for how to authenticate API requests"
- "Get the heading structure for the quickstart document"
- "Find all references to pagination in the crawled docs"

Troubleshooting Documentation Crawler & MCP Server

First server startup is very slow or appears to hang

This is expected — the server generates vector embeddings for all crawled content on first run using a local ML model. On CPU hardware this can take several minutes. Subsequent starts use a cache and are much faster.

search_documentation returns no results

Make sure you have run the crawl.py script first and that it completed successfully. The MCP server can only search content that has been crawled and saved locally.

uv command not found

Install uv with: curl -LsSf https://astral.sh/uv/install.sh | sh — then restart your terminal. Verify with: uv --version

Frequently Asked Questions about Documentation Crawler & MCP Server

What is Documentation Crawler & MCP Server?

Documentation Crawler & MCP Server is a Model Context Protocol (MCP) server that this project provides a toolset to crawl websites wikis, tool/library documentions and generate markdown documentation, and make that documentation searchable via a model context protocol (mcp) server, designed for integration with tools like cursor. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Documentation Crawler & MCP Server?

Follow the installation instructions on the Documentation Crawler & MCP Server GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Documentation Crawler & MCP Server?

Documentation Crawler & MCP Server works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Documentation Crawler & MCP Server free to use?

Yes, Documentation Crawler & MCP Server is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Search & Data Extraction MCP Servers

Explore all search & data extraction servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "documentation-crawler-mcp-server": { "command": "npx", "args": ["-y", "documentation-crawler-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Documentation Crawler & MCP Server?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides