hanzo-mcp 0.3.8__py3-none-any.whl → 0.5.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of hanzo-mcp might be problematic. Click here for more details.

Files changed (93) hide show
  1. hanzo_mcp/__init__.py +1 -1
  2. hanzo_mcp/cli.py +118 -170
  3. hanzo_mcp/cli_enhanced.py +438 -0
  4. hanzo_mcp/config/__init__.py +19 -0
  5. hanzo_mcp/config/settings.py +449 -0
  6. hanzo_mcp/config/tool_config.py +197 -0
  7. hanzo_mcp/prompts/__init__.py +117 -0
  8. hanzo_mcp/prompts/compact_conversation.py +77 -0
  9. hanzo_mcp/prompts/create_release.py +38 -0
  10. hanzo_mcp/prompts/project_system.py +120 -0
  11. hanzo_mcp/prompts/project_todo_reminder.py +111 -0
  12. hanzo_mcp/prompts/utils.py +286 -0
  13. hanzo_mcp/server.py +117 -99
  14. hanzo_mcp/tools/__init__.py +121 -33
  15. hanzo_mcp/tools/agent/__init__.py +8 -11
  16. hanzo_mcp/tools/agent/agent_tool.py +290 -224
  17. hanzo_mcp/tools/agent/prompt.py +16 -13
  18. hanzo_mcp/tools/agent/tool_adapter.py +9 -9
  19. hanzo_mcp/tools/common/__init__.py +17 -16
  20. hanzo_mcp/tools/common/base.py +79 -110
  21. hanzo_mcp/tools/common/batch_tool.py +330 -0
  22. hanzo_mcp/tools/common/config_tool.py +396 -0
  23. hanzo_mcp/tools/common/context.py +26 -292
  24. hanzo_mcp/tools/common/permissions.py +12 -12
  25. hanzo_mcp/tools/common/thinking_tool.py +153 -0
  26. hanzo_mcp/tools/common/validation.py +1 -63
  27. hanzo_mcp/tools/filesystem/__init__.py +97 -57
  28. hanzo_mcp/tools/filesystem/base.py +32 -24
  29. hanzo_mcp/tools/filesystem/content_replace.py +114 -107
  30. hanzo_mcp/tools/filesystem/directory_tree.py +129 -105
  31. hanzo_mcp/tools/filesystem/edit.py +279 -0
  32. hanzo_mcp/tools/filesystem/grep.py +458 -0
  33. hanzo_mcp/tools/filesystem/grep_ast_tool.py +250 -0
  34. hanzo_mcp/tools/filesystem/multi_edit.py +362 -0
  35. hanzo_mcp/tools/filesystem/read.py +255 -0
  36. hanzo_mcp/tools/filesystem/unified_search.py +689 -0
  37. hanzo_mcp/tools/filesystem/write.py +156 -0
  38. hanzo_mcp/tools/jupyter/__init__.py +41 -29
  39. hanzo_mcp/tools/jupyter/base.py +66 -57
  40. hanzo_mcp/tools/jupyter/{edit_notebook.py → notebook_edit.py} +162 -139
  41. hanzo_mcp/tools/jupyter/notebook_read.py +152 -0
  42. hanzo_mcp/tools/shell/__init__.py +29 -20
  43. hanzo_mcp/tools/shell/base.py +87 -45
  44. hanzo_mcp/tools/shell/bash_session.py +731 -0
  45. hanzo_mcp/tools/shell/bash_session_executor.py +295 -0
  46. hanzo_mcp/tools/shell/command_executor.py +435 -384
  47. hanzo_mcp/tools/shell/run_command.py +284 -131
  48. hanzo_mcp/tools/shell/run_command_windows.py +328 -0
  49. hanzo_mcp/tools/shell/session_manager.py +196 -0
  50. hanzo_mcp/tools/shell/session_storage.py +325 -0
  51. hanzo_mcp/tools/todo/__init__.py +66 -0
  52. hanzo_mcp/tools/todo/base.py +319 -0
  53. hanzo_mcp/tools/todo/todo_read.py +148 -0
  54. hanzo_mcp/tools/todo/todo_write.py +378 -0
  55. hanzo_mcp/tools/vector/__init__.py +99 -0
  56. hanzo_mcp/tools/vector/ast_analyzer.py +459 -0
  57. hanzo_mcp/tools/vector/git_ingester.py +482 -0
  58. hanzo_mcp/tools/vector/infinity_store.py +731 -0
  59. hanzo_mcp/tools/vector/mock_infinity.py +162 -0
  60. hanzo_mcp/tools/vector/project_manager.py +361 -0
  61. hanzo_mcp/tools/vector/vector_index.py +116 -0
  62. hanzo_mcp/tools/vector/vector_search.py +225 -0
  63. hanzo_mcp-0.5.1.dist-info/METADATA +276 -0
  64. hanzo_mcp-0.5.1.dist-info/RECORD +68 -0
  65. {hanzo_mcp-0.3.8.dist-info → hanzo_mcp-0.5.1.dist-info}/WHEEL +1 -1
  66. hanzo_mcp/tools/agent/base_provider.py +0 -73
  67. hanzo_mcp/tools/agent/litellm_provider.py +0 -45
  68. hanzo_mcp/tools/agent/lmstudio_agent.py +0 -385
  69. hanzo_mcp/tools/agent/lmstudio_provider.py +0 -219
  70. hanzo_mcp/tools/agent/provider_registry.py +0 -120
  71. hanzo_mcp/tools/common/error_handling.py +0 -86
  72. hanzo_mcp/tools/common/logging_config.py +0 -115
  73. hanzo_mcp/tools/common/session.py +0 -91
  74. hanzo_mcp/tools/common/think_tool.py +0 -123
  75. hanzo_mcp/tools/common/version_tool.py +0 -120
  76. hanzo_mcp/tools/filesystem/edit_file.py +0 -287
  77. hanzo_mcp/tools/filesystem/get_file_info.py +0 -170
  78. hanzo_mcp/tools/filesystem/read_files.py +0 -199
  79. hanzo_mcp/tools/filesystem/search_content.py +0 -275
  80. hanzo_mcp/tools/filesystem/write_file.py +0 -162
  81. hanzo_mcp/tools/jupyter/notebook_operations.py +0 -514
  82. hanzo_mcp/tools/jupyter/read_notebook.py +0 -165
  83. hanzo_mcp/tools/project/__init__.py +0 -64
  84. hanzo_mcp/tools/project/analysis.py +0 -886
  85. hanzo_mcp/tools/project/base.py +0 -66
  86. hanzo_mcp/tools/project/project_analyze.py +0 -173
  87. hanzo_mcp/tools/shell/run_script.py +0 -215
  88. hanzo_mcp/tools/shell/script_tool.py +0 -244
  89. hanzo_mcp-0.3.8.dist-info/METADATA +0 -196
  90. hanzo_mcp-0.3.8.dist-info/RECORD +0 -53
  91. {hanzo_mcp-0.3.8.dist-info → hanzo_mcp-0.5.1.dist-info}/entry_points.txt +0 -0
  92. {hanzo_mcp-0.3.8.dist-info → hanzo_mcp-0.5.1.dist-info}/licenses/LICENSE +0 -0
  93. {hanzo_mcp-0.3.8.dist-info → hanzo_mcp-0.5.1.dist-info}/top_level.txt +0 -0
@@ -1,196 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: hanzo-mcp
3
- Version: 0.3.8
4
- Summary: MCP implementation of Hanzo capabilities
5
- Author-email: Hanzo Industries Inc <dev@hanzo.ai>
6
- License: MIT
7
- Project-URL: Homepage, https://github.com/hanzoai/mcp
8
- Project-URL: Bug Tracker, https://github.com/hanzoai/mcp/issues
9
- Project-URL: Documentation, https://github.com/hanzoai/mcp/tree/main/docs
10
- Keywords: mcp,claude,hanzo,code,agent
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.12
15
- Description-Content-Type: text/markdown
16
- License-File: LICENSE
17
- Requires-Dist: mcp>=1.6.0
18
- Requires-Dist: httpx>=0.27.0
19
- Requires-Dist: uvicorn>=0.23.1
20
- Requires-Dist: openai>=1.50.0
21
- Requires-Dist: python-dotenv>=1.0.0
22
- Requires-Dist: litellm>=1.40.14
23
- Provides-Extra: dev
24
- Requires-Dist: pytest>=7.0.0; extra == "dev"
25
- Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
26
- Requires-Dist: ruff>=0.1.0; extra == "dev"
27
- Requires-Dist: black>=23.3.0; extra == "dev"
28
- Requires-Dist: sphinx>=8.0.0; extra == "dev"
29
- Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "dev"
30
- Requires-Dist: myst-parser>=2.0.0; extra == "dev"
31
- Provides-Extra: test
32
- Requires-Dist: pytest>=7.0.0; extra == "test"
33
- Requires-Dist: pytest-cov>=4.1.0; extra == "test"
34
- Requires-Dist: pytest-mock>=3.10.0; extra == "test"
35
- Requires-Dist: pytest-asyncio>=0.25.3; extra == "test"
36
- Requires-Dist: twisted; extra == "test"
37
- Provides-Extra: performance
38
- Requires-Dist: ujson>=5.7.0; extra == "performance"
39
- Requires-Dist: orjson>=3.9.0; extra == "performance"
40
- Provides-Extra: publish
41
- Requires-Dist: twine>=4.0.2; extra == "publish"
42
- Requires-Dist: build>=1.0.3; extra == "publish"
43
- Dynamic: license-file
44
-
45
- # Hanzo MCP
46
-
47
- An implementation of Hanzo capabilities using the Model Context Protocol (MCP).
48
-
49
- ## Overview
50
-
51
- This project provides an MCP server that implements Hanzo-like functionality, allowing Claude to directly execute instructions for modifying and improving project files. By leveraging the Model Context Protocol, this implementation enables seamless integration with various MCP clients including Claude Desktop.
52
-
53
- ![example](./docs/example.gif)
54
-
55
- ## Features
56
-
57
- - **Code Understanding**: Analyze and understand codebases through file access and pattern searching
58
- - **Code Modification**: Make targeted edits to files with proper permission handling
59
- - **Enhanced Command Execution**: Run commands and scripts in various languages with improved error handling and shell support
60
- - **File Operations**: Manage files with proper security controls through shell commands
61
- - **Code Discovery**: Find relevant files and code patterns across your project
62
- - **Project Analysis**: Understand project structure, dependencies, and frameworks
63
- - **Agent Delegation**: Delegate complex tasks to specialized sub-agents that can work concurrently
64
- - **Multiple LLM Provider Support**: Configure any LiteLLM-compatible model for agent operations
65
- - **Jupyter Notebook Support**: Read and edit Jupyter notebooks with full cell and output handling
66
-
67
- ## Tools Implemented
68
-
69
- | Tool | Description |
70
- | ---------------------- | --------------------------------------------------------------------------------------------- |
71
- | `read_files` | Read one or multiple files with encoding detection |
72
- | `write_file` | Create or overwrite files |
73
- | `edit_file` | Make line-based edits to text files |
74
- | `directory_tree` | Get a recursive tree view of directories |
75
- | `get_file_info` | Get metadata about a file or directory |
76
- | `search_content` | Search for patterns in file contents |
77
- | `content_replace` | Replace patterns in file contents |
78
- | `run_command` | Execute shell commands (also used for directory creation, file moving, and directory listing) |
79
- | `run_script` | Execute scripts with specified interpreters |
80
- | `script_tool` | Execute scripts in specific programming languages |
81
- | `project_analyze_tool` | Analyze project structure and dependencies |
82
- | `read_notebook` | Extract and read source code from all cells in a Jupyter notebook with outputs |
83
- | `edit_notebook` | Edit, insert, or delete cells in a Jupyter notebook |
84
- | `think` | Structured space for complex reasoning and analysis without making changes |
85
- | `dispatch_agent` | Launch one or more agents that can perform tasks using read-only tools concurrently |
86
-
87
- ## Getting Started
88
-
89
- ### Quick Install
90
-
91
- ```bash
92
- # Install using uv
93
- uv pip install hanzo-mcp
94
-
95
- # Or using pip
96
- pip install hanzo-mcp
97
- ```
98
-
99
- For detailed installation and configuration instructions, please refer to the [documentation](./docs/).
100
-
101
- Of course, you can also read [USEFUL_PROMPTS](./docs/USEFUL_PROMPTS.md) for some inspiration on how to use hanzo-mcp.
102
-
103
- ## Security
104
-
105
- This implementation follows best practices for securing access to your filesystem:
106
-
107
- - Permission prompts for file modifications and command execution
108
- - Restricted access to specified directories only
109
- - Input validation and sanitization
110
- - Proper error handling and reporting
111
-
112
- ## Documentation
113
-
114
- Comprehensive documentation is available in the [docs](./docs/) directory. You can build and view the documentation locally:
115
-
116
- ```bash
117
- # Build the documentation
118
- make docs
119
-
120
- # Start a local server to view the documentation
121
- make docs-serve
122
- ```
123
-
124
- Then open http://localhost:8000/ in your browser to view the documentation.
125
-
126
- ## Development
127
-
128
- ### Setup Development Environment
129
-
130
- ```bash
131
- # Clone the repository
132
- git clone https://github.com/hanzoai/mcp.git
133
- cd mcp
134
-
135
- # Install Python 3.13 using uv
136
- make install-python
137
-
138
- # Setup virtual environment and install dependencies
139
- make setup
140
-
141
- # Or install with development dependencies
142
- make install-dev
143
- ```
144
-
145
- ### Testing
146
-
147
- ```bash
148
- # Run tests
149
- make test
150
-
151
- # Run tests with coverage
152
- make test-cov
153
- ```
154
-
155
- ### Building and Publishing
156
-
157
- ```bash
158
- # Build package
159
- make build
160
-
161
- # Version bumping
162
- make bump-patch # Increment patch version (0.1.x → 0.1.x+1)
163
- make bump-minor # Increment minor version (0.x.0 → 0.x+1.0)
164
- make bump-major # Increment major version (x.0.0 → x+1.0.0)
165
-
166
- # Manual version bumping (alternative to make commands)
167
- python -m scripts.bump_version patch # Increment patch version
168
- python -m scripts.bump_version minor # Increment minor version
169
- python -m scripts.bump_version major # Increment major version
170
-
171
- # Publishing (creates git tag and pushes it to GitHub)
172
- make publish # Publish using configured credentials in .pypirc
173
- PYPI_TOKEN=your_token make publish # Publish with token from environment variable
174
-
175
- # Publishing (creates git tag, pushes to GitHub, and publishes to PyPI)
176
- make patch # Bump patch version, build, publish, create git tag, and push
177
- make minor # Bump minor version, build, publish, create git tag, and push
178
- make major # Bump major version, build, publish, create git tag, and push
179
-
180
- # Publish to Test PyPI
181
- make publish-test
182
- ```
183
-
184
- ### Contributing
185
-
186
- To contribute to this project:
187
-
188
- 1. Fork the repository
189
- 2. Create a feature branch (`git checkout -b feature/amazing-feature`)
190
- 3. Commit your changes (`git commit -m 'Add some amazing feature'`)
191
- 4. Push to the branch (`git push origin feature/amazing-feature`)
192
- 5. Open a Pull Request
193
-
194
- ## License
195
-
196
- This project is licensed under the MIT License - see the LICENSE file for details.
@@ -1,53 +0,0 @@
1
- hanzo_mcp/__init__.py,sha256=YJgmHonevGlnEMOkXDfzi3z5mRvW62n98J-dbEt-3uo,89
2
- hanzo_mcp/cli.py,sha256=HMIazDWF_GhWuEf_dtaxtRPbT-w9HN7iW4y3riE7p8o,13300
3
- hanzo_mcp/server.py,sha256=uL0diJRAt1o1Ij8Z5_08udBFrxBGz1cMEFQqMNoQgMo,6922
4
- hanzo_mcp/tools/__init__.py,sha256=Yf2drgTZJUp6_Nvy9VZF00aiKar2Wyd-c4tnAR0xO0s,3710
5
- hanzo_mcp/tools/agent/__init__.py,sha256=0eyQqqdAy7WCZEqUfV6xh66bDpQI9neB6iDjWf0_pJI,2189
6
- hanzo_mcp/tools/agent/agent_tool.py,sha256=qXu62ZRGM0o9mxOiRVFy-ABIZtEJ8z03DqAXshKAieI,19180
7
- hanzo_mcp/tools/agent/base_provider.py,sha256=dd1J75Q0wl_t_Gcuwc8Ft3PWxeDsmf0B3ybhRsUEgmA,2080
8
- hanzo_mcp/tools/agent/litellm_provider.py,sha256=6mVOLSNpfjAJKj6aBMflyYU6DRJpEqIxgu8wSzeRmxU,1334
9
- hanzo_mcp/tools/agent/lmstudio_agent.py,sha256=c4-VIDRXksv39HYpXzqwyF1PisoNd73R3Txa8Mkzibg,14510
10
- hanzo_mcp/tools/agent/lmstudio_provider.py,sha256=-gX8fxebyWaC7bqmZERR6QQc62Paj62IIDIu_rBu0wM,7876
11
- hanzo_mcp/tools/agent/prompt.py,sha256=jmYRI4Sm2D3LwEdC2qWakpqupgfGg8CT6grmx4NEDaA,4431
12
- hanzo_mcp/tools/agent/provider_registry.py,sha256=A-Wd5B5hLBznQV4wWbxE-yyvBPnbuUL2OtSJUz2K_H0,4236
13
- hanzo_mcp/tools/agent/tool_adapter.py,sha256=g9NKfIET0WOsm0r28xEXsibsprpI1C6ripcM6QwU-rI,2172
14
- hanzo_mcp/tools/common/__init__.py,sha256=felrGAEqLWOa8fuHjTCS7khqtlA-izz8k865ky7R-f8,797
15
- hanzo_mcp/tools/common/base.py,sha256=O7Lgft0XiC9Iyi3fYsmoWWrvKDK2Aa-FJLxPgnNJRJY,7341
16
- hanzo_mcp/tools/common/context.py,sha256=ReIfcm37j5qnLQ8G_-d88ad5uC1OKkjQZKG9HdJPybI,13145
17
- hanzo_mcp/tools/common/error_handling.py,sha256=rluaHpXV89pjcf8JxgYB6EdqVkcxihb3pyEO2gN-u7w,2789
18
- hanzo_mcp/tools/common/logging_config.py,sha256=664VEaV671t3_PG9qPMf_twVCQYendeQAqm-NuS32dU,3931
19
- hanzo_mcp/tools/common/permissions.py,sha256=4YCfA2PJUOl-z_47n5uaRXO8gAZ_shMaPhpi1dilgRE,7594
20
- hanzo_mcp/tools/common/session.py,sha256=csX5ZhgBjO2bdXXXPpsUPzOCc7Tib-apYe01AP8sh8k,2774
21
- hanzo_mcp/tools/common/think_tool.py,sha256=I-O6ipM-PUofkNoMMzv37Y_2Yfx9mh7F1upTTsfRN4M,4046
22
- hanzo_mcp/tools/common/validation.py,sha256=gB3uM_cbPZsH4Ez0hnTgIcdP-AUlHZU02aRmZEpk_6I,3648
23
- hanzo_mcp/tools/common/version_tool.py,sha256=4bJZhqgtvwQMyVSSZ-xU-NQvr1xfnyDi_4FnOpZvuw0,3406
24
- hanzo_mcp/tools/filesystem/__init__.py,sha256=61At2UKu2mEhi7FDpbyNIA88oGHyoVU6CtEX5qsKNSo,4107
25
- hanzo_mcp/tools/filesystem/base.py,sha256=HAzuMCrS0dKOBZNoLr7y74tdbYyKpi0FGhStuRgkFTU,3917
26
- hanzo_mcp/tools/filesystem/content_replace.py,sha256=ZwzxyOTASUmzP-jtEnsSR-MKtNFC4R3kQunpV3KOCyg,11049
27
- hanzo_mcp/tools/filesystem/directory_tree.py,sha256=cx-zpOeKP8DDuMt1ls3QhRk9h3RVmMhpPwpqn4wTfP4,11271
28
- hanzo_mcp/tools/filesystem/edit_file.py,sha256=03ku1_8X_uAUPfqGlR6fv55VEz-0Pifp9DJtkcOTFHY,10980
29
- hanzo_mcp/tools/filesystem/get_file_info.py,sha256=WR7uMqFcpKboS3FX3jF-MD-0-ROJJcppX7M_GtR0yLs,5392
30
- hanzo_mcp/tools/filesystem/read_files.py,sha256=SGdIiIDk0V_kB1HxDB32VFqoKIvlVt1TzTbSbwUB5hI,7099
31
- hanzo_mcp/tools/filesystem/search_content.py,sha256=2zXke1YHYxg6GKQ_XHb0sXeaSkHI7Jx3P-YAqrpOTNM,10766
32
- hanzo_mcp/tools/filesystem/write_file.py,sha256=7ZNR1ygECBjT7m62QNkeIEt0OGxNZL2zijX-bASWj0Y,5303
33
- hanzo_mcp/tools/jupyter/__init__.py,sha256=9mZ55Mq0JMmjOxCxbeFHS8vOqvezzh_uCst02EPB4Ng,2527
34
- hanzo_mcp/tools/jupyter/base.py,sha256=xtssHrkHx_u_nE12dqtZGcvuJe8kfsbSkMmq-6KQobQ,10412
35
- hanzo_mcp/tools/jupyter/edit_notebook.py,sha256=_ZNlsCYaO9_SbZouvrLYElvssL6nlElCc2JxNCeMdQo,11986
36
- hanzo_mcp/tools/jupyter/notebook_operations.py,sha256=PkZXk_PYPkBGxg2RWzqh-rN6VDHjFybImhdUm3xLLoY,23120
37
- hanzo_mcp/tools/jupyter/read_notebook.py,sha256=54-i9MIaUiZGJndUPp2_-edTo3_j9WSgxXXoTmRCnlI,5656
38
- hanzo_mcp/tools/project/__init__.py,sha256=kMaSPyYT03qXqFL83nKdSz19-IzlrsVZTJk6YMgJOhw,2208
39
- hanzo_mcp/tools/project/analysis.py,sha256=OBSnNuw6rASruCM8VyrJUIzmZmGAmqlylDsC786kTfQ,30753
40
- hanzo_mcp/tools/project/base.py,sha256=CniLAsjum5vC3cgvF9AqU-_ZY_0Nf9uaF2L_xV2obxE,1948
41
- hanzo_mcp/tools/project/project_analyze.py,sha256=6GLE_JcSiCy6kKdee0sMI5T2229A-Vpp98s2j_JD6yI,5711
42
- hanzo_mcp/tools/shell/__init__.py,sha256=lKgh0WXds4tZJ1tIL9MJbyMSzP6A9uZQALjGGBvyYc4,1679
43
- hanzo_mcp/tools/shell/base.py,sha256=OxKNWMp-fB-vozzWOE_hHvr5M_pFKSMIYfOX0dEOWzA,4836
44
- hanzo_mcp/tools/shell/command_executor.py,sha256=sNQEiU0qGVJQuq8HqMFD5h1N3CmOfSuoHj5UMpSnaBY,32707
45
- hanzo_mcp/tools/shell/run_command.py,sha256=r7HBw0lqabgkGnVsDXmLnrTo0SU9g8gLvzpa-9n-cmM,6891
46
- hanzo_mcp/tools/shell/run_script.py,sha256=CLYnDc0Ze8plkXU6d98RgE4UrBg-fwaMVdcn9Fc6Ixw,7432
47
- hanzo_mcp/tools/shell/script_tool.py,sha256=s63tawIZBvwgm_kU9P7A3D4v2ulVw7j4l_rpsa_zGuc,8680
48
- hanzo_mcp-0.3.8.dist-info/licenses/LICENSE,sha256=mf1qZGFsPGskoPgytp9B-RsahfKvXsBpmaAbTLGTt8Y,1063
49
- hanzo_mcp-0.3.8.dist-info/METADATA,sha256=y7zJw3DmlcfakPY925GEf2LEqNGgESX82fKeWeoz71k,8031
50
- hanzo_mcp-0.3.8.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
51
- hanzo_mcp-0.3.8.dist-info/entry_points.txt,sha256=aRKOKXtuQr-idSr-yH4efnRl2v8te94AcgN3ysqqSYs,49
52
- hanzo_mcp-0.3.8.dist-info/top_level.txt,sha256=eGFANatA0MHWiVlpS56fTYRIShtibrSom1uXI6XU0GU,10
53
- hanzo_mcp-0.3.8.dist-info/RECORD,,