Hanzo MCP
Hanzo AI + Platform capabilities via the Model Context Protocol (MCP).
Overview
This project provides an MCP server that enables access to Hanzo APIs and Platform capabilities, as well as providing development tools for managing and improving projects. By leveraging the Model Context Protocol, this server enables seamless integration with various MCP clients including Claude Desktop, allowing LLMs to directly access Hanzo's platform functionality.
Features
- Code Understanding: Analyze and understand codebases through file access and pattern searching
- Code Modification: Make targeted edits to files with proper permission handling
- Enhanced Command Execution: Run commands and scripts in various languages with improved error handling and shell support
- File Operations: Manage files with proper security controls through shell commands
- Code Discovery: Find relevant files and code patterns across your project
- Project Analysis: Understand project structure, dependencies, and frameworks
- Jupyter Notebook Support: Read and edit Jupyter notebooks with full cell and output handling
Tools Implemented
| Tool | Description |
| ---------------------- | --------------------------------------------------------------------------------------------- |
| read_files
| Read one or multiple files with encoding detection |
| write_file
| Create or overwrite files |
| edit_file
| Make line-based edits to text files |
| directory_tree
| Get a recursive tree view of directories |
| get_file_info
| Get metadata about a file or directory |
| search_content
| Search for patterns in file contents |
| content_replace
| Replace patterns in file contents |
| run_command
| Execute shell commands (also used for directory creation, file moving, and directory listing) |
| run_script
| Execute scripts with specified interpreters |
| script_tool
| Execute scripts in specific programming languages |
| project_analyze_tool
| Analyze project structure and dependencies |
| read_notebook
| Extract and read source code from all cells in a Jupyter notebook with outputs |
| edit_notebook
| Edit, insert, or delete cells in a Jupyter notebook |
| think
| Structured space for complex reasoning and analysis without making changes |
Getting Started
Usage
Configuring Claude Desktop
You can run it with uvx run hanzo-mcp
without installation. Configure Claude Desktop to use this server by adding the following to your Claude Desktop configuration file:
{
"mcpServers": {
"hanzo": {
"command": "uvx",
"args": [
"--from",
"hanzo-mcp",
"hanzo-mcp",
"--allow-path",
"/path/to/your/project"
]
}
}
}
Make sure to replace /path/to/your/project
with the actual path to the project you want Claude to access.
Advanced Configuration Options
You can customize the server using other options:
{
"mcpServers": {
"hanzo": {
"command": "uvx",
"args": [
"--from",
"hanzo-mcp",
"hanzo-mcp",
"--allow-path",
"/path/to/project",
"--name",
"custom-hanzo",
"--transport",
"stdio"
]
}
}
}
Configuring Claude Desktop System Prompt
To get the best experience with Hanzo MCP, you need to add the provided system prompt to your Claude Desktop client. This system prompt guides Claude through a structured workflow for interacting with Hanzo platform services and managing project files.
Follow these steps:
- Locate the system prompt file in this repository at
doc/system_prompt
- Open your Claude Desktop client
- Create a new project or open an existing one
- Navigate to the "Project instructions" section in the Claude Desktop sidebar
- Copy the contents of
doc/system_prompt
and paste it into the "Project instructions" section - Replace
{project_path}
with the actual absolute path to your project
The system prompt provides Claude with:
- A structured workflow for analyzing and modifying code
- Best practices for project exploration and analysis
- Guidelines for development, refactoring, and quality assurance
- Special formatting instructions for mathematical content
This step is crucial as it enables Claude to follow a consistent approach when helping you with code modifications.
Security
This implementation follows best practices for securing access to your filesystem:
- Permission prompts for file modifications and command execution
- Restricted access to specified directories only
- Input validation and sanitization
- Proper error handling and reporting
Development
To contribute to this project:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.