Python MCP server that retrieves and parses up-to-date technical documentation from the web for use by AI coding assistants. Code was implemented just using the Python Standard Library.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-for-docum": {
"command": "npx",
"args": [
"-y",
"wramsay/MCP-Server-For-Documenation"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-server-for-docum npx -y wramsay/MCP-Server-For-Documenation
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-server-for-docum": {
"command": "npx",
"args": [
"-y",
"wramsay/MCP-Server-For-Documenation"
]
}
}
}
📋 Copy