python-mcp-server-client
by GobinFan·★ 155·Score 39
A MCP server for querying technical documentation of major AI agent frameworks like LangChain and LlamaIndex.
Overview
This MCP server provides a unified interface to access documentation for popular AI frameworks including LangChain, LlamaIndex, AutoGen, Agno, OpenAI Agents SDK, MCP-doc, Camel-AI, and Crew-AI. It implements both stdio and SSE transport protocols, making it suitable for both local and cloud deployments. The server uses web scraping to fetch documentation from official sources, supporting keyword-based searches across multiple frameworks.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this MCP server when you need quick access to documentation for popular AI frameworks without leaving your development environment.
When NOT to choose this
Avoid this if you need offline access to documentation or require more reliable parsing methods than web scraping.
Tools this server exposes
1 tool extracted from the READMEget_docsasync def get_docs(query: str, library: str)Search and retrieve documentation for specified AI frameworks
Comparable tools
Installation
Installation
- Install UV package manager:
# MacOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Initialize project:
uv init mcp-server
cd mcp-server
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
uv add "mcp[cli]" httpx- Configure Claude Desktop:
{
"mcpServers": {
"docs-server": {
"command": "uv",
"args": [
"--directory",
"<your-project-path>",
"run",
"main.py"
]
}
}
}FAQ
- What frameworks are supported?
- Currently supports LangChain, LlamaIndex, AutoGen, Agno, OpenAI Agents SDK, MCP-doc, Camel-AI, and Crew-AI.
- Which transport protocols does it support?
- Supports both stdio for local use and SSE (Server-Sent Events) for cloud deployments.
Compare python-mcp-server-client with
Last updated · Auto-generated from public README + GitHub signals.