Description

支持查询主流agent框架技术文档的MCP server(支持stdio和sse两种传输协议), 支持 langchain、llama-index、autogen等框架。

Installation

npx -y python-mcp-server-client
npm install python-mcp-server-client
git clone https://github.com/GobinFan/python-mcp-server-client

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "python-mcp-server-client": {
      "command": "npx",
      "args": [
        "-y",
        "python-mcp-server-client"
      ]
    }
  }
}