mcp-docs-helper
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-docs-helpershow me the template for a basic server"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Documentation Helper
An AI-powered developer tool that provides LLMs with instant access to MCP protocol specifications and TypeScript SDK documentation.
Overview
MCP Documentation Helper is a Model Context Protocol (MCP) server that exposes comprehensive MCP documentation as structured resources. It enables AI assistants like Claude to provide accurate, context-aware guidance when building custom MCP servers.
Features
š Complete Documentation Access - Full MCP protocol specification and TypeScript SDK docs
š Context-Aware Search - Intelligent search with relevance scoring and focused results
š Code Templates - Ready-to-use implementation patterns for common MCP use cases
šÆ Categorized Resources - Quick access to tools, resources, prompts, transports, and examples
š¤ AI-Optimized - Designed specifically for LLM-assisted development workflows
Related MCP server: Library Docs MCP Server
Prerequisites
Node.js 18+ or Bun
An MCP client (Claude Desktop, Cursor, or any MCP-compatible client)
Installation
1. Clone the Repository
git clone https://github.com/yourusername/mcp-documentation-helper.git
cd mcp-documentation-helper2. Install Dependencies
Using npm:
npm installUsing Bun:
bun installThat's it! The repository includes all necessary MCP documentation files in the data directory.
Usage
Running Locally
Using npm:
npm run devUsing Bun:
bun run devUsing Node directly (after building):
npm run build
npm run startConnecting to Claude Desktop
Open your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Add the MCP server configuration:
For npm/Node:
{
"mcpServers": {
"mcp-docs": {
"command": "node",
"args": [
"/absolute/path/to/mcp-documentation-helper/build/index.js"
]
}
}
}For Bun:
{
"mcpServers": {
"mcp-docs": {
"command": "bun",
"args": [
"index.ts"
],
"cwd": "/absolute/path/to/mcp-documentation-helper"
}
}
}Replace
/absolute/path/to/mcp-documentation-helperwith your actual project pathRestart Claude Desktop
Connecting to Cursor
Open Cursor Settings ā MCP Servers
Click "Add MCP Server"
Configure the server:
For npm/Node:
{
"name": "mcp-docs",
"command": "node",
"args": [
"/absolute/path/to/mcp-documentation-helper/build/index.js"
]
}For Bun:
{
"name": "mcp-docs",
"command": "bun",
"args": [
"index.ts"
],
"cwd": "/absolute/path/to/mcp-documentation-helper"
}Save and restart Cursor
Using with VS Code (via MCP extension)
Install the MCP extension for VS Code
Add to your workspace settings (
.vscode/settings.json):
{
"mcp.servers": {
"mcp-docs": {
"command": "node",
"args": [
"/absolute/path/to/mcp-documentation-helper/build/index.js"
]
}
}
}Available Resources
Once connected, the following resources are available:
Resource URI | Description |
| Full MCP protocol and SDK documentation |
| Getting started guide |
| Tool implementation reference |
| Resource implementation reference |
| Prompt implementation reference |
| Transport setup (stdio, HTTP, SSE) |
| Working code examples |
Available Tools
search-mcp-docs
Search across all MCP documentation with context-aware results.
Parameters:
query(string): What you want to learn or implementfocus(optional):all,implementation,concepts,examples, ortroubleshooting
get-implementation-template
Get code templates for common MCP patterns.
Available Templates:
basic-server- Basic MCP server structuretool-with-validation- Tool with Zod validationresource-static- Static resourceresource-dynamic- Dynamic resource with parametersprompt-simple- Simple prompt templatestdio-server- stdio transport setuphttp-server- HTTP transport setuperror-handling- Error handling patterns
Available Prompts
build-server
Start building a new MCP server with guided assistance.
debug-server
Get help debugging an MCP server issue.
Example Usage
Once connected to Claude Desktop or Cursor, you can:
You: "I want to build an MCP server that connects to a PostgreSQL database"
Claude: *Uses mcp-docs resources to provide accurate implementation guidance*You: "How do I implement a dynamic resource with parameters?"
Claude: *Searches documentation and provides relevant examples*You: "Show me how to set up an HTTP transport"
Claude: *Retrieves transport documentation and code templates*Development
Project Structure
mcp-documentation-helper/
āāā data/ # Documentation files
ā āāā llms-full.txt # MCP protocol documentation
ā āāā typescript-sdk-readme.md # TypeScript SDK docs
āāā index.ts # Main server implementation
āāā package.json # Dependencies and scripts
āāā tsconfig.json # TypeScript configurationScripts
npm run dev- Run in development mode with tsxnpm run build- Build TypeScript to JavaScriptnpm run start- Run the built serverbun run dev- Run with Bun (if using Bun)
How It Works
Documentation Parsing: The server parses MCP protocol and SDK documentation into structured sections
Resource Exposure: Documentation is exposed through MCP resources with semantic URIs
Intelligent Search: Built-in search tool provides context-aware results with relevance scoring
Code Templates: Pre-built templates help jumpstart common implementation patterns
AI Integration: LLMs can access documentation through standard MCP protocols
Troubleshooting
Server Not Showing Up in Claude Desktop
Check that the path in the config is absolute, not relative
Verify the
datadirectory contains both required filesRestart Claude Desktop completely
Check Claude Desktop logs for errors
Documentation Files Not Found
The repository includes all necessary documentation files. If you encounter this error:
Ensure you cloned the full repository with all files
Check that the
datadirectory exists with both files:
ls data/
# Should show:
# llms-full.txt
# typescript-sdk-readme.mdBuild Errors (Node/npm)
Make sure you've run the build command before starting:
npm run build
npm run startContributing
Contributions are welcome! Please feel free to submit a Pull Request.
Acknowledgments
Built with the Model Context Protocol SDK
Documentation sourced from modelcontextprotocol.io
Inspired by the Building MCP with LLMs guide
Links
Made with ā¤ļø for the MCP community
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context23265MIT
- FlicenseBqualityDmaintenanceAn MCP server that fetches real-time documentation for popular libraries like Langchain, Llama-Index, MCP, and OpenAI, allowing LLMs to access updated library information beyond their knowledge cut-off dates.13
- Flicense-qualityDmaintenanceA customized MCP server that enables integration between LLM applications and documentation sources, providing AI-assisted access to LangGraph and Model Context Protocol documentation.
- Alicense-qualityDmaintenanceAn MCP server that enables LLMs to understand and work with TypeScript APIs they haven't been trained on by providing structured access to TypeScript type definitions and documentation.1846MIT
Related MCP Connectors
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CHIRANTH-24/mcp-docs-helper'
If you have feedback or need assistance with the MCP directory API, please join our Discord server