mcp-docs-server

mcp-docs-server

3.5

The MCP Docs Server is a Model Context Protocol server developed in TypeScript to provide comprehensive MCP documentation access. It is designed for compatibility with various MCP clients, including Claude Desktop.

MCP Docs Server (TypeScript)

A Model Context Protocol (MCP) server that exposes the full MCP documentation as a tool, written in TypeScript using the official MCP SDK.

Features

  • Provides a fetch_mcp_docs tool to retrieve the full MCP documentation from the official source.
  • Ready for use with Claude Desktop and other MCP clients.
  • Easily installable and runnable via npx or as a global npm binary.

Usage

Install dependencies

npm install

Build

npm run build

Run locally

npm start

Use via npx (after publishing)

npx @your-npm-username/mcp-docs-server-ts

Integration Example (Claude Desktop)

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-docs-published": {
      "command": "npx",
      "args": ["-y", "@your-npm-username/mcp-docs-server-ts"]
    }
  }
}

License

MIT