Python 从0到1构建MCP Server & Client
@GobinFan
Python 从0到1构建MCP Server & Client について
支持查询主流agent框架技术文档的MCP server(支持stdio和sse两种传输协议), 支持 langchain、llama-index、autogen、agno、openai-agents-sdk、mcp-doc、camel-ai 和 crew-ai
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"python-mcp-server-client": {
"command": "uv",
"args": [
"init",
"mcp-server"
]
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Python 从0到1构建MCP Server & Client?
A hands-on tutorial and reference implementation for building Model Context Protocol (MCP) servers and clients in Python from scratch. It demonstrates how to expose a documentation-search tool through both local (Stdio) and remote (SSE) transports, and how to connect that server to MCP clients like Cursor, Cline, or a custom Python client.
How to use Python 从0到1构建MCP Server & Client?
Install UV, create a project directory, install dependencies (mcp[cli], httpx), and write a main.py file that defines the MCP server with the get_docs tool. Run the server locally with uv run main.py for Stdio, or uv run main.py --host 0.0.0.0 --port 8020 for SSE. Configure clients (Cline, Cursor) by adding a JSON block pointing uv --directory <path> run main.py to the MCP server definition.
Key features of Python 从0到1构建MCP Server & Client
- Implements both Stdio (local) and SSE (remote) transport protocols
- Provides a
get_docstool that searches and retrieves documentation for eight popular AI libraries - Uses the Serper API for Google search and BeautifulSoup for web page parsing
- Includes ready-to-use client configurations for Cursor and Cline
- Ships a complete custom Python MCP client using the OpenAI SDK
- Requires only the
mcpCLI package,httpx, andBeautifulSoupas dependencies
Use cases of Python 从0到1构建MCP Server & Client
- Quickly look up the latest LangChain, LlamaIndex, or CrewAI documentation from an AI assistant
- Build a local MCP server that agents (Claude, Cursor) can query for up-to-date framework docs
- Learn how to migrate from Function Call to MCP for tool calling across different LLM providers
- Deploy a cloud-hosted SSE-based MCP server that multiple remote clients can connect to
FAQ from Python 从0到1构建MCP Server & Client
What problem does this MCP server solve compared to traditional Function Call?
Before MCP, different LLM providers had inconsistent Function Call formats and each API tool required its own input/output wrapping. MCP acts as a universal "USB-C", standardizing function call formats across providers and unifying tool packaging.
What dependencies and runtime are required?
Python, the uv package manager, and the mcp[cli], httpx, and BeautifulSoup Python packages. A Serper API key must be set in the SERPER_API_KEY environment variable.
Which AI framework documentation sources are supported?
LangChain, LlamaIndex, AutoGen, Agno, OpenAI Agents SDK, MCP documentation, CAMEL-AI, and CrewAI.
What transport protocols are available?
Stdio for local use (requires CLI installation) and SSE (Server-Sent Events) for cloud deployment over HTTP long connections.
How do I configure the server with Cursor or Cline?
Create a .cursor/mcp.json file (Cursor) or configure the Cline plugin settings with the JSON: {"mcpServers": {"mcp-server": {"command": "uv", "args": ["--directory", "<path>", "run", "main.py"]}}}.
「AI とエージェント」の他のコンテンツ
Solon Ai
opensolonJava AI application development framework (supports LLM-tool,skill; RAG; MCP; Agent-ReAct,Team-Agent). Compatible with java8 ~ java25. It can also be embedded in SpringBoot, jFinal, Vert.x, Quarkus, and other frameworks.
MCP Server - Remote MacOs Use
baryhuangThe only general AI agent that does NOT requires extra API key, giving you full control on your local and remote MacOs from Claude Desktop App
MCP Client for Ollama (ollmcp)
joniglHarness the power of local LLMs with this TUI MCP Client for Ollama. Featuring all core MCP primitives (tools, prompts, resources), agent mode, multi-server, model switching, streaming responses, human-in-the-loop, thinking mode, model params config, system prompts, and saved pre
Unreal Engine Generative AI Support Plugin
prajwalshettydevUnreal Engine plugin for LLM/GenAI models & MCP UE5 server. OpenAI GPT-5, Deepseek R1, Claude Opus/Sonnet, Gemini 3, Grok 4, Alibaba Qwen, Kimi, ElevenLabs TTS, Inworld, OpenRouter, Groq, GLM, Ollama, Local, Meshy, Tripo, Hunyuan3D, Rodin, fal, Dashscope, Seedream. NPC AI, agenti
🔎 GPT Researcher
assafelovicAn autonomous agent that conducts deep research on any data using any LLM providers
コメント