MCP Documentation Hub
v1.0.0Complete documentation for the Model Context Protocol
documentationmcpreferenceguide
Server Information
- Server ID
- mcpdocs
- Author
- bookchaowalit
- Available Tools
- 5 tools
About
Comprehensive documentation hub for the Model Context Protocol (MCP). Includes protocol specifications, code examples, integration guides, and best practices. ## Features - Protocol overview and architecture - Code examples in JavaScript, Python, TypeScript, Go, and Rust - Integration guides for Claude Desktop, web apps, and custom servers - Security best practices - Searchable documentation
Available Tools
mcpdocs_get_protocol_docs
Get MCP protocol documentation
Input Schema
{
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": [
"overview",
"architecture",
"protocol",
"best-practices",
"security"
]
}
}
}mcpdocs_get_examples
Get code examples for MCP implementation
Input Schema
{
"type": "object",
"properties": {
"language": {
"type": "string",
"enum": [
"javascript",
"python",
"typescript",
"go",
"rust"
]
}
}
}mcpdocs_get_servers
Get list of available MCP servers
Input Schema
{
"type": "object",
"properties": {
"category": {
"type": "string"
}
}
}mcpdocs_get_integration_guide
Get integration guide for MCP
Input Schema
{
"type": "object",
"properties": {
"platform": {
"type": "string",
"enum": [
"claude-desktop",
"web-app",
"server",
"custom"
]
}
}
}mcpdocs_search_docs
Search MCP documentation
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string"
}
},
"required": [
"query"
]
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"mcpdocs": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit-mcpdocs-frontend.vercel.app"
}
}
}
}