PypReader-MCP
An MCP server that enables AI models to inspect local Python packages by retrieving PyPI descriptions, file structures, and source code. It allows agents to understand third-party libraries directly from a specified environment for tasks like code analysis and dependency checking.
README
pypreader-mcp
An MCP-Server that reads the contents of Python packages. This Server allows Large Language Models (LLMs) and other AI Agents to inspect the contents of Python packages in a specified environment.
Overview
pypreader-mcp acts as a bridge between AI models and the local Python environment. By exposing a set of tools via MCP, it enables AI to programmatically browse installed packages, view their file structures, and read their source code. This is useful for tasks such as code analysis, dependency checking, and automated programming assistance.
Why build this?
When I use AI-integrated programming IDEs like Cursor or Trae, I always find that the currently used model is unaware of the third-party libraries I need.
But sometimes they pretend to know and seriously generate a bunch of indescribable stuff; other times they search the internet, but the results are mostly not good, making it hard to find any useful information.
So I created this MCP service. It can read documentation from the official website pypi.org or read source code from the site-packages environment corresponding to your Python, allowing for a more direct understanding of the contents of the third-party libraries you want to use.
Features
This Server provides the following tools to MCP clients:
get_pypi_description(package_name: str): Retrieve the official description of a package from PyPI.get_package_directory(package_name: str): List the entire file and directory structure of a specified installed package.get_source_code_by_path(package_path: str): Retrieve the complete source code of a specific file within a package.get_source_code_by_symbol(package_path: str, symbol_name: str): Get the definition (code snippet) of a specified symbol (function, class, etc.).
Usage
This tool is designed to act as an MCP Server for use in AI-based environments such as Cursor or Trae.
Configuration
In the MCP Server configuration of your AI environment, add a new Server with the following settings. This allows the AI to run the service directly from its Git repository using uvx.
{
"mcpServers": {
"PypReader-MCP": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/zakahan/pypreader-mcp.git",
"pypreader-mcp"
],
"env": {
"CURRENT_PYTHON_PATH": "<your-python-path>",
"CURRENT_LOGGING_LEVEL": "INFO"
}
}
}
}
MCP-Server Parameters
When configuring the MCP Server in your AI environment, you can specify the following env parameters:
CURRENT_PYTHON_PATH: Specifies the path to the Python executable of the target package installation environment. If not provided, it defaults to the Python executable running the Server. You can find the correct path by activating your project's Python environment and runningwhich pythonin the terminal.CURRENT_LOGGING_LEVEL: Sets the logging level of the Server. Options areDEBUG,INFO,WARNING,ERROR,CRITICAL. The default value isINFO.
If you use a Python virtual environment to configure your Python project, you typically need to modify python_path as needed to switch to your specified Python environment.
AI Coding Example
Take Trae as an example. As of now (2025-07-02), the doubao-seed-1.6 model is unaware of the fastmcp package (in fact, most models don't recognize it either). Under normal circumstances, it would either pretend to know and output a bunch of messy, indescribable incorrect content (even thinking I'm talking about FastAPI), or perform a clumsy search and find all sorts of disorganized information.
This time, I created a Trae agent equipped with this project's mcp-server. The result is as follows: Trae can understand my project and then write a fastmcp service to complete my task.
This is the entire process of Trae completing my requested task

These are the specific details of the tool calls

License
This project is licensed under the MIT License. For details, please refer to the LICENSE file.
What's New Now?
- 2025-07-06: Rewrote
get_source_code_by_symbolto use reading and writing temporary files instead of stdio to support the Windows platform. - 2025-07-04: Rewrote the
get_source_code_by_symboltool to fix the issue where it couldn't read classes or functions belonging to sub-packages.
What's Next?
- Resolve the issue where
python-package-nameis inconsistent with the actual path, e.g., the package namegoogle-adkhas an actual path ofgoogle/adkand is actually imported asgoogle.adk - Design a suitable prompt for the Agent. (The Trae version is here)
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。