A Model Context Protocol (MCP) server that exposes the full MCP documentation as a tool, written in TypeScript using the official MCP SDK.
- Provides a
fetch_mcp_docstool 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
npxor as a global npm binary.
npm installnpm run buildnpm startnpx @your-npm-username/mcp-docs-server-tsAdd to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-docs-published": {
"command": "npx",
"args": ["-y", "@your-npm-username/mcp-docs-server-ts"]
}
}
}MIT