This MCP server implementation provides a comprehensive set of Python development tools, enabling AI assistants to effectively work with Python code and projects. Developed by Gianluca Mazza, it offers features for file operations, code analysis, project management, and safe code execution within a controlled environment. The server is designed for use cases requiring advanced Python development capabilities, such as code refactoring, dependency management, and automated testing in AI-assisted programming workflows.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Read the contents of a file. Parameters: filename (string), start_line (optional int), end_line (optional int)
Write content to a file. Parameters: filename (string), content (string), mode (optional string)
List the contents of a directory. Parameters: directory (string)
Parse and analyze the structure of a Python file. Parameters: filename (string)
Format the provided code using a specified style. Parameters: code (string), style (string)
Lint a Python file and return issues found. Parameters: filename (string)
Create a new virtual environment.
Install dependencies from a requirements file or pyproject.toml. Parameters: filename (optional string)
Check for version conflicts between installed packages.
Update a specified package to the latest version or a specific version. Parameters: package_name (string), version (optional string)
Execute the provided Python code in a controlled environment. Parameters: code (string)