Model Context Protocol (MCP) server providing documentation and code analysis for Python packages
Project description
MCPyDoc - Python Package Documentation MCP Server
MCPyDoc is a Model Context Protocol (MCP) server that provides comprehensive documentation and code analysis capabilities for Python packages. It enables AI agents like Cline and GitHub Copilot to understand and work with Python codebases more effectively.
โจ Features
- ๐ Package Documentation: Get comprehensive docs for any Python package
- ๐ Symbol Search: Find classes, functions, and modules by pattern
- ๐ป Source Code Access: Retrieve actual implementation code
- ๐๏ธ Structure Analysis: Analyze complete package architecture
- ๐ง Type Hints: Extract and analyze type annotations
- ๐ Docstring Parsing: Support for Google, NumPy, and Sphinx formats
- ๐ High Performance: Efficient caching and optimized operations
- ๐ก๏ธ Error Handling: Robust error management and validation
๐ Quick Start
Installation
# Install from PyPI (Recommended)
pip install mcpydoc
# Or install from source
git clone https://github.com/amit608/MCPyDoc.git
cd MCPyDoc
pip install .
Once installed and configured with your AI agent, the server will automatically start when needed.
๐ Integration with Cline
Configuration
Add MCPyDoc to your Cline MCP configuration:
{
"mcpServers": {
"mcpydoc": {
"command": "python",
"args": ["-m", "mcpydoc"],
"env": {},
"description": "Python package documentation and code analysis server"
}
}
}
Recommended Cline Rules
To help Cline use MCPyDoc effectively, consider adding these rules to your .clinerules file:
# Python Package Analysis Guidelines
## When to Use MCPyDoc Tools
### Always use MCPyDoc when:
- User asks about Python package functionality or capabilities
- Need to understand how to use a specific Python library
- Looking for specific functions or classes in a package
- Want to see source code implementation details
- Need to understand package structure or available modules
- Troubleshooting Python package usage issues
### Recommended workflow:
1. **Start with `analyze_structure`** to understand package organization
2. **Use `search_symbols`** to find relevant functions/classes
3. **Use `get_package_docs`** for comprehensive documentation of packages/modules
4. **Use `get_package_docs` with `module_path`** for specific method/class documentation
5. **Use `get_source_code`** when you need to see implementation details
### For specific method documentation:
- **Option 1**: `get_package_docs` with `module_path` parameter (e.g., `package="requests", module_path="Session.get"`)
- **Option 2**: `search_symbols` to find the method, then `get_package_docs` for details
- **Option 3**: `get_source_code` for the method implementation and its docstring
### Examples of when to use MCPyDoc:
- "I need to understand how to use the SQLAlchemy Session.query() method - show me its documentation and parameters"
- "How do I use requests to make HTTP calls?"
- "What classes are available in the pathlib module?"
- "Show me the source code for json.loads"
- "What functions does the os module provide for file operations?"
- "How do I use pandas for data analysis?"
### Don't use MCPyDoc for:
- Questions about Python language syntax
- General programming concepts
- Non-Python packages or libraries
- Questions already answered in previous context
Place this in your .clinerules file to help Cline automatically use MCPyDoc when working with Python packages.
๐ Supported Package Types
- โ
Standard Library - Built-in modules (
json,os,sys, etc.) - โ Third-Party Packages - pip-installed packages
- โ Local Packages - Development packages in current environment
- โ Virtual Environments - Proper path resolution
๐ ๏ธ API Reference
Core Methods
get_module_documentation(package, module_path=None, version=None)
Get comprehensive documentation for a package or specific module.
Parameters:
package(str): Package namemodule_path(str, optional): Dot-separated path to specific moduleversion(str, optional): Specific version to use
Returns: ModuleDocumentationResult
search_package_symbols(package, pattern=None, version=None)
Search for symbols in a package.
Parameters:
package(str): Package namepattern(str, optional): Search pattern (case-insensitive)version(str, optional): Specific version to use
Returns: List[SymbolSearchResult]
get_source_code(package, symbol_name, version=None)
Get source code for a specific symbol.
Parameters:
package(str): Package namesymbol_name(str): Dot-separated path to symbolversion(str, optional): Specific version to use
Returns: SourceCodeResult
analyze_package_structure(package, version=None)
Analyze complete package structure.
Parameters:
package(str): Package nameversion(str, optional): Specific version to use
Returns: PackageStructure
๐๏ธ Architecture
MCPyDoc uses a clean, modular architecture:
mcpydoc/
โโโ __init__.py # Package interface
โโโ __main__.py # CLI entry point
โโโ server.py # Core MCPyDoc class
โโโ mcp_server.py # MCP JSON-RPC server
โโโ analyzer.py # Package analysis engine
โโโ documentation.py # Docstring parsing
โโโ models.py # Pydantic data models
โโโ exceptions.py # Custom exceptions
โโโ utils.py # Utility functions
Key Components
- Analyzer: Package introspection and symbol discovery
- Documentation Parser: Multi-format docstring parsing
- MCP Server: JSON-RPC protocol implementation
- Models: Type-safe data structures with Pydantic
- Exception Handling: Comprehensive error management
๐ Performance
- Package Info: < 100ms (cached after first request)
- Symbol Search: < 200ms for most packages
- Source Retrieval: < 150ms
- Structure Analysis: < 500ms for typical packages
- Memory Usage: < 100MB for normal operations
๐ Troubleshooting
Common Issues
-
"Package not found" errors
- Ensure the package is installed:
pip install package_name - Check virtual environment activation
- Ensure the package is installed:
-
Import errors
- Verify MCPyDoc installation:
pip install . - Check Python path configuration
- Verify MCPyDoc installation:
-
Source code unavailable
- Some built-in functions don't have accessible source
- This is expected behavior for C extensions
Debug Commands
# Check environment
python -c "import sys; print(f'Python: {sys.version}'); print(f'Prefix: {sys.prefix}')"
# Test basic functionality
python -c "
import asyncio
from mcpydoc import MCPyDoc
async def test():
mcpydoc = MCPyDoc()
result = await mcpydoc.get_module_documentation('json')
print(f'Success: {result.package.name}')
asyncio.run(test())
"
๐ License
MIT License - see LICENSE file for details.
๐ค Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Run the test suite
- Submit a pull request
Made with โค๏ธ for the Python community
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcpydoc-0.1.4.tar.gz.
File metadata
- Download URL: mcpydoc-0.1.4.tar.gz
- Upload date:
- Size: 34.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0410549d5ddf845800561e0b06537d3c7c20242a1a918e119ee476fa06e0dee
|
|
| MD5 |
144288c4f63432c0c1f7411c34ee1c48
|
|
| BLAKE2b-256 |
7a460076f18bc54c9447ff75fef60c52fa206b9c52cea95f5f5c57d2ea896d81
|
File details
Details for the file mcpydoc-0.1.4-py3-none-any.whl.
File metadata
- Download URL: mcpydoc-0.1.4-py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98a724ee5bd9646da988ecc76d84e68893ab0a860417ce579773cda29b095421
|
|
| MD5 |
8e4bf068419f8f090d1a28a64e4a80ba
|
|
| BLAKE2b-256 |
0c6e7d831fcefe467b26ab0b4f94593806e4e7a3b9a74c1283b15e13093dbc5d
|