MCP Doc MCP Server

A customized version of the MCP documentation server that enables integration between LLM applications (like Cursor, Claude Desktop, Windsurf) and

Local serverstdioPython

What is the MCP Doc MCP server?

If you want an AI assistant working directly with MCP Doc, the mcp doc mcp server is the bridge. A customized version of the MCP documentation server that enables integration between LLM applications (like Cursor, Claude Desktop, Windsurf) and documentation sources via the Model Context Protocol.

What MCP Doc does

A customized version of the MCP documentation server that enables integration between LLM applications (like Cursor, Claude Desktop, Windsurf) and documentation sources via the Model Context Protocol.

This server provides MCP host applications with: 1. Access to specific documentation files (langgraph.txt and mcp.txt) 2. Tools to fetch documentation from URLs within those files

Tools it exposes

Once connected, the assistant can call this tool directly:

  • Cursor — Then add these instructions to Cursor's Custom Instructions:

Installing the mcp doc mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Where it fits

Knowledge and memory servers address the most frustrating trait of language models — walking into every conversation with no recollection of the last one. MCP Doc sits in that group, and the shape of its toolset — Cursor — tells you what it is really for. Worth comparing against the other knowledge memory servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by esakrissa, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp doc mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
CursorThen add these instructions to Cursor's Custom Instructions:

How to install the MCP Doc MCP server

{
  "mcpServers": {
    "mcp-doc": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpdoc",
        "mcpdoc",
        "--urls",
        "LangGraph:https://raw.githubusercontent.com/esakrissa/mcp-doc/main/docs/langgraph.txt",
        "ModelContextProtocol:https://raw.githubusercontent.com/esakrissa/mcp-doc/main/docs/mcp.txt",
        "--allowed-domains",
        "*",
        "--transport",
        "stdio"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use MCP Doc to Cursor.

Frequently asked questions

It connects MCP Doc to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Cursor) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Doc directly.