Docs MCP

Docs MCP

An MCP server that searches official documentation for popular libraries, scrapes pages, and returns clean, LLM-ready text.

Category
Visit Server

README

Docs MCP — AI-Powered Documentation Search

An MCP (Model Context Protocol) server that searches official documentation for popular libraries, scrapes the relevant pages, and returns clean, LLM-ready text. Connect it to Claude Desktop, Cursor, or any MCP-compatible client so your AI assistant can look up up-to-date docs on demand.

What it does

The project follows a three-step pipeline:

  1. Search the web — Uses the Serper API to run a Google search scoped to a library's official documentation site.
  2. Fetch and clean pages — Downloads the top result URLs and strips HTML noise using Groq LLM (openai/gpt-oss-20b).
  3. Return structured context — Sends back cleaned text with SOURCE: links so the calling agent can cite where the information came from.

The MCP server exposes a single tool, get_docs, that AI clients can call when they need documentation context.

Supported libraries

Library key Documentation site
langchain python.langchain.com/docs
lama-index docs.llamaindex.ai/en/stable
openai platform.openai.com/docs
uv docs.astral.sh/uv

Prerequisites

Project structure

web-scraping/
├── mcp_server.py   # MCP server (FastMCP) — exposes the get_docs tool
├── client.py       # Example MCP client that calls get_docs and summarizes results
├── utils.py        # LLM helpers (Groq) and HTML cleaning (trafilatura)
├── test.py         # Quick sanity check for the Groq API connection
├── pyproject.toml  # Project dependencies (managed by uv)
└── .env            # API keys (create this locally — do not commit)

Setup

1. Clone and enter the project

cd /path/to/web-scraping

2. Install dependencies with uv

uv sync

This creates a .venv virtual environment and installs all packages listed in pyproject.toml.

3. Create a .env file

Create a .env file in the project root with your API keys:

SERPER_API_KEY=your_serper_api_key_here
GROQ_API_KEY=your_groq_api_key_here

Both keys are required. The server loads them via python-dotenv.

4. Verify your Groq connection (optional)

uv run test.py

You should see API Key Found: True followed by a short LLM response.

Usage

Run the MCP server directly

uv run mcp_server.py

The server communicates over stdio (standard input/output), which is how MCP clients connect to it. Running it standalone will appear to hang — that is expected; it is waiting for an MCP client.

Run the example client

From the project root:

uv run client.py

This starts the MCP server as a subprocess, calls get_docs with a sample query ("How to publish a package with uv on gitlab"), and prints a human-readable answer generated by Groq.

Connect to Claude Desktop

Add the server to your Claude Desktop MCP config.

macOS config path:

~/Library/Application Support/Claude/claude_desktop_config.json

Recommended configuration — use --directory so the server works even when Claude Desktop does not honor the cwd field:

{
  "mcpServers": {
    "docs-mcp": {
      "command": "/opt/homebrew/bin/uv",
      "args": [
        "run",
        "--directory",
        "/Users/YOUR_USERNAME/Desktop/web-scraping",
        "mcp_server.py"
      ],
      "env": {
        "SERPER_API_KEY": "your_serper_api_key_here",
        "GROQ_API_KEY": "your_groq_api_key_here"
      }
    }
  }
}

Replace /Users/YOUR_USERNAME/Desktop/web-scraping with the absolute path to this project, and update the uv path if yours differs (which uv).

Alternative — run the venv Python directly (most reliable if cwd is ignored):

{
  "mcpServers": {
    "docs-mcp": {
      "command": "/Users/YOUR_USERNAME/Desktop/web-scraping/.venv/bin/python",
      "args": [
        "/Users/YOUR_USERNAME/Desktop/web-scraping/mcp_server.py"
      ],
      "env": {
        "SERPER_API_KEY": "your_serper_api_key_here",
        "GROQ_API_KEY": "your_groq_api_key_here"
      }
    }
  }
}

After saving the config, fully quit Claude Desktop (Cmd+Q) and reopen it. The docs-mcp server should appear as connected.

MCP tool reference

get_docs

Search official documentation for a library and return cleaned text.

Parameters:

Parameter Type Description
query string What to search for (e.g. "Publish a package")
library string One of: langchain, lama-index, openai, uv

Example call (from an MCP client):

{
  "query": "How to use async with LangChain",
  "library": "langchain"
}

Returns: Cleaned documentation text with SOURCE: <url> headers for each fetched page.

How it works internally

User / AI client
      │
      ▼
  get_docs(query, library)
      │
      ├─► Serper API  ──► Google search (site-scoped to official docs)
      │
      ├─► httpx       ──► Fetch top result URLs
      │
      └─► Groq LLM    ──► Clean HTML from each page (4000-char chunks)
                │
                ▼
         Structured text + source links
  • mcp_server.py — Defines the FastMCP server and the get_docs tool.
  • utils.pyget_response_from_llm() calls Groq; clean_html_to_txt() uses trafilatura (available as a fallback utility).
  • client.py — Demonstrates programmatic MCP usage with the official Python MCP SDK.

Troubleshooting

Failed to spawn: mcp_server.py — No such file or directory

Claude Desktop launched uv from the wrong working directory. Fix by using --directory with an absolute project path (see config above), or point directly at .venv/bin/python.

GROQ_API_KEY not found

Ensure .env exists in the project root with a valid key, or pass the key via the env block in your MCP config.

Server connects then immediately disconnects

Check Claude Desktop MCP logs for Python import errors. Run uv sync to reinstall dependencies, then test locally with uv run mcp_server.py.

Library X not supported by this tool

The library parameter must exactly match one of the supported keys: langchain, lama-index, openai, or uv.

Dependencies

Managed in pyproject.toml:

License

MIT License

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured