hanzo-mcp 0.6.12__py3-none-any.whl → 0.7.0__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 (117) hide show
  1. hanzo_mcp/__init__.py +2 -2
  2. hanzo_mcp/analytics/__init__.py +5 -0
  3. hanzo_mcp/analytics/posthog_analytics.py +364 -0
  4. hanzo_mcp/cli.py +5 -5
  5. hanzo_mcp/cli_enhanced.py +7 -7
  6. hanzo_mcp/cli_plugin.py +91 -0
  7. hanzo_mcp/config/__init__.py +1 -1
  8. hanzo_mcp/config/settings.py +70 -7
  9. hanzo_mcp/config/tool_config.py +20 -6
  10. hanzo_mcp/dev_server.py +3 -3
  11. hanzo_mcp/prompts/project_system.py +1 -1
  12. hanzo_mcp/server.py +40 -3
  13. hanzo_mcp/server_enhanced.py +69 -0
  14. hanzo_mcp/tools/__init__.py +140 -31
  15. hanzo_mcp/tools/agent/__init__.py +85 -4
  16. hanzo_mcp/tools/agent/agent_tool.py +104 -6
  17. hanzo_mcp/tools/agent/agent_tool_v2.py +459 -0
  18. hanzo_mcp/tools/agent/clarification_protocol.py +220 -0
  19. hanzo_mcp/tools/agent/clarification_tool.py +68 -0
  20. hanzo_mcp/tools/agent/claude_cli_tool.py +125 -0
  21. hanzo_mcp/tools/agent/claude_desktop_auth.py +508 -0
  22. hanzo_mcp/tools/agent/cli_agent_base.py +191 -0
  23. hanzo_mcp/tools/agent/code_auth.py +436 -0
  24. hanzo_mcp/tools/agent/code_auth_tool.py +194 -0
  25. hanzo_mcp/tools/agent/codex_cli_tool.py +123 -0
  26. hanzo_mcp/tools/agent/critic_tool.py +376 -0
  27. hanzo_mcp/tools/agent/gemini_cli_tool.py +128 -0
  28. hanzo_mcp/tools/agent/grok_cli_tool.py +128 -0
  29. hanzo_mcp/tools/agent/iching_tool.py +380 -0
  30. hanzo_mcp/tools/agent/network_tool.py +273 -0
  31. hanzo_mcp/tools/agent/prompt.py +62 -20
  32. hanzo_mcp/tools/agent/review_tool.py +433 -0
  33. hanzo_mcp/tools/agent/swarm_tool.py +535 -0
  34. hanzo_mcp/tools/agent/swarm_tool_v2.py +594 -0
  35. hanzo_mcp/tools/common/__init__.py +15 -1
  36. hanzo_mcp/tools/common/base.py +5 -4
  37. hanzo_mcp/tools/common/batch_tool.py +103 -11
  38. hanzo_mcp/tools/common/config_tool.py +2 -2
  39. hanzo_mcp/tools/common/context.py +2 -2
  40. hanzo_mcp/tools/common/context_fix.py +26 -0
  41. hanzo_mcp/tools/common/critic_tool.py +196 -0
  42. hanzo_mcp/tools/common/decorators.py +208 -0
  43. hanzo_mcp/tools/common/enhanced_base.py +106 -0
  44. hanzo_mcp/tools/common/fastmcp_pagination.py +369 -0
  45. hanzo_mcp/tools/common/forgiving_edit.py +243 -0
  46. hanzo_mcp/tools/common/mode.py +116 -0
  47. hanzo_mcp/tools/common/mode_loader.py +105 -0
  48. hanzo_mcp/tools/common/paginated_base.py +230 -0
  49. hanzo_mcp/tools/common/paginated_response.py +307 -0
  50. hanzo_mcp/tools/common/pagination.py +226 -0
  51. hanzo_mcp/tools/common/permissions.py +1 -1
  52. hanzo_mcp/tools/common/personality.py +936 -0
  53. hanzo_mcp/tools/common/plugin_loader.py +287 -0
  54. hanzo_mcp/tools/common/stats.py +4 -4
  55. hanzo_mcp/tools/common/tool_list.py +4 -1
  56. hanzo_mcp/tools/common/truncate.py +101 -0
  57. hanzo_mcp/tools/common/validation.py +1 -1
  58. hanzo_mcp/tools/config/__init__.py +3 -1
  59. hanzo_mcp/tools/config/config_tool.py +1 -1
  60. hanzo_mcp/tools/config/mode_tool.py +209 -0
  61. hanzo_mcp/tools/database/__init__.py +1 -1
  62. hanzo_mcp/tools/editor/__init__.py +1 -1
  63. hanzo_mcp/tools/filesystem/__init__.py +48 -14
  64. hanzo_mcp/tools/filesystem/ast_multi_edit.py +562 -0
  65. hanzo_mcp/tools/filesystem/batch_search.py +3 -3
  66. hanzo_mcp/tools/filesystem/diff.py +2 -2
  67. hanzo_mcp/tools/filesystem/directory_tree_paginated.py +338 -0
  68. hanzo_mcp/tools/filesystem/rules_tool.py +235 -0
  69. hanzo_mcp/tools/filesystem/{unified_search.py → search_tool.py} +12 -12
  70. hanzo_mcp/tools/filesystem/{symbols_unified.py → symbols_tool.py} +104 -5
  71. hanzo_mcp/tools/filesystem/watch.py +3 -2
  72. hanzo_mcp/tools/jupyter/__init__.py +2 -2
  73. hanzo_mcp/tools/jupyter/jupyter.py +1 -1
  74. hanzo_mcp/tools/llm/__init__.py +3 -3
  75. hanzo_mcp/tools/llm/llm_tool.py +648 -143
  76. hanzo_mcp/tools/lsp/__init__.py +5 -0
  77. hanzo_mcp/tools/lsp/lsp_tool.py +512 -0
  78. hanzo_mcp/tools/mcp/__init__.py +2 -2
  79. hanzo_mcp/tools/mcp/{mcp_unified.py → mcp_tool.py} +3 -3
  80. hanzo_mcp/tools/memory/__init__.py +76 -0
  81. hanzo_mcp/tools/memory/knowledge_tools.py +518 -0
  82. hanzo_mcp/tools/memory/memory_tools.py +456 -0
  83. hanzo_mcp/tools/search/__init__.py +6 -0
  84. hanzo_mcp/tools/search/find_tool.py +581 -0
  85. hanzo_mcp/tools/search/unified_search.py +953 -0
  86. hanzo_mcp/tools/shell/__init__.py +11 -6
  87. hanzo_mcp/tools/shell/auto_background.py +203 -0
  88. hanzo_mcp/tools/shell/base_process.py +57 -29
  89. hanzo_mcp/tools/shell/bash_session_executor.py +1 -1
  90. hanzo_mcp/tools/shell/{bash_unified.py → bash_tool.py} +18 -34
  91. hanzo_mcp/tools/shell/command_executor.py +2 -2
  92. hanzo_mcp/tools/shell/{npx_unified.py → npx_tool.py} +16 -33
  93. hanzo_mcp/tools/shell/open.py +2 -2
  94. hanzo_mcp/tools/shell/{process_unified.py → process_tool.py} +1 -1
  95. hanzo_mcp/tools/shell/run_command_windows.py +1 -1
  96. hanzo_mcp/tools/shell/streaming_command.py +594 -0
  97. hanzo_mcp/tools/shell/uvx.py +47 -2
  98. hanzo_mcp/tools/shell/uvx_background.py +47 -2
  99. hanzo_mcp/tools/shell/{uvx_unified.py → uvx_tool.py} +16 -33
  100. hanzo_mcp/tools/todo/__init__.py +14 -19
  101. hanzo_mcp/tools/todo/todo.py +22 -1
  102. hanzo_mcp/tools/vector/__init__.py +1 -1
  103. hanzo_mcp/tools/vector/infinity_store.py +2 -2
  104. hanzo_mcp/tools/vector/project_manager.py +1 -1
  105. hanzo_mcp/types.py +23 -0
  106. hanzo_mcp-0.7.0.dist-info/METADATA +516 -0
  107. hanzo_mcp-0.7.0.dist-info/RECORD +180 -0
  108. {hanzo_mcp-0.6.12.dist-info → hanzo_mcp-0.7.0.dist-info}/entry_points.txt +1 -0
  109. hanzo_mcp/tools/common/palette.py +0 -344
  110. hanzo_mcp/tools/common/palette_loader.py +0 -108
  111. hanzo_mcp/tools/config/palette_tool.py +0 -179
  112. hanzo_mcp/tools/llm/llm_unified.py +0 -851
  113. hanzo_mcp-0.6.12.dist-info/METADATA +0 -339
  114. hanzo_mcp-0.6.12.dist-info/RECORD +0 -135
  115. hanzo_mcp-0.6.12.dist-info/licenses/LICENSE +0 -21
  116. {hanzo_mcp-0.6.12.dist-info → hanzo_mcp-0.7.0.dist-info}/WHEEL +0 -0
  117. {hanzo_mcp-0.6.12.dist-info → hanzo_mcp-0.7.0.dist-info}/top_level.txt +0 -0
@@ -1,339 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: hanzo-mcp
3
- Version: 0.6.12
4
- Summary: The Zen of Hanzo MCP: One server to rule them all. The ultimate MCP that orchestrates all others.
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://mcp.hanzo.ai
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.9.4
18
- Requires-Dist: fastmcp>=2.9.2
19
- Requires-Dist: httpx>=0.28.1
20
- Requires-Dist: uvicorn>=0.34.0
21
- Requires-Dist: openai>=1.62.0
22
- Requires-Dist: python-dotenv>=1.0.1
23
- Requires-Dist: litellm>=1.73.2
24
- Requires-Dist: grep-ast>=0.8.1
25
- Requires-Dist: bashlex>=0.18
26
- Requires-Dist: libtmux>=0.39.0
27
- Requires-Dist: nbformat>=5.10.4
28
- Requires-Dist: psutil>=6.1.1
29
- Requires-Dist: pydantic>=2.11.1
30
- Requires-Dist: pydantic-settings>=2.7.0
31
- Requires-Dist: typing-extensions>=4.13.0
32
- Requires-Dist: watchdog>=6.0.0
33
- Provides-Extra: dev
34
- Requires-Dist: pytest>=7.0.0; extra == "dev"
35
- Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
36
- Requires-Dist: ruff>=0.1.0; extra == "dev"
37
- Requires-Dist: black>=23.3.0; extra == "dev"
38
- Requires-Dist: sphinx>=8.0.0; extra == "dev"
39
- Requires-Dist: sphinx-rtd-theme>=3.0.0; extra == "dev"
40
- Requires-Dist: myst-parser>=4.0.0; extra == "dev"
41
- Requires-Dist: sphinx-copybutton>=0.5.0; extra == "dev"
42
- Provides-Extra: docs
43
- Requires-Dist: sphinx>=8.0.0; extra == "docs"
44
- Requires-Dist: sphinx-rtd-theme>=3.0.0; extra == "docs"
45
- Requires-Dist: myst-parser>=4.0.0; extra == "docs"
46
- Requires-Dist: sphinx-copybutton>=0.5.0; extra == "docs"
47
- Provides-Extra: test
48
- Requires-Dist: pytest>=7.0.0; extra == "test"
49
- Requires-Dist: pytest-cov>=4.1.0; extra == "test"
50
- Requires-Dist: pytest-mock>=3.10.0; extra == "test"
51
- Requires-Dist: pytest-asyncio>=0.25.3; extra == "test"
52
- Requires-Dist: twisted; extra == "test"
53
- Provides-Extra: performance
54
- Requires-Dist: ujson>=5.7.0; extra == "performance"
55
- Requires-Dist: orjson>=3.9.0; extra == "performance"
56
- Provides-Extra: publish
57
- Requires-Dist: twine>=4.0.2; extra == "publish"
58
- Requires-Dist: build>=1.0.3; extra == "publish"
59
- Dynamic: license-file
60
-
61
- # Hanzo MCP - The Zen of Model Context Protocol
62
-
63
- [![Documentation](https://img.shields.io/badge/docs-mcp.hanzo.ai-blue?style=for-the-badge)](https://mcp.hanzo.ai)
64
- [![PyPI](https://img.shields.io/pypi/v/hanzo-mcp?style=for-the-badge)](https://pypi.org/project/hanzo-mcp/)
65
- [![License](https://img.shields.io/github/license/hanzoai/mcp?style=for-the-badge)](https://github.com/hanzoai/mcp/blob/main/LICENSE)
66
- [![Join our Discord](https://img.shields.io/discord/YOUR_DISCORD_ID?style=for-the-badge&logo=discord)](https://discord.gg/hanzoai)
67
-
68
- ## 🥷 One MCP to Rule Them All
69
-
70
- **Start here. Add other MCPs later. Control everything through one opinionated interface.**
71
-
72
- Hanzo MCP isn't just another Model Context Protocol server—it's **THE** MCP server. While others give you fragments, we give you the complete toolkit. One server that orchestrates all others, with the power to add, remove, and control any MCP server dynamically.
73
-
74
- ```bash
75
- # Install and rule your development world
76
- uvx hanzo-mcp
77
- ```
78
-
79
- > **Note on Deprecation Warnings**: If you see Pydantic deprecation warnings, clear your uvx cache with `rm -rf ~/.cache/uv/` and run again. This is due to litellm using old Pydantic v1 config style in cached environments.
80
-
81
- ## 🎯 Why Hanzo MCP?
82
-
83
- ### The Problem with Other MCPs
84
- - **Fragmented Experience**: Install 10 different MCPs for 10 different tasks
85
- - **Inconsistent Interfaces**: Each MCP has its own conventions and quirks
86
- - **Limited Scope**: Most MCPs do one thing, leaving you to juggle multiple servers
87
- - **No Orchestration**: No way to coordinate between different MCP servers
88
-
89
- ### The Hanzo Way
90
- - **One Installation**: 65+ professional tools out of the box
91
- - **Unified Philosophy**: Consistent, opinionated interface following Unix principles
92
- - **MCP Orchestration**: Install and control other MCP servers through Hanzo
93
- - **Swappable Opinions**: Don't like our way? Load a different palette and change everything
94
-
95
- ## 🚀 Features That Set Us Apart
96
-
97
- ### 🎨 Palette System - Opinions Are Just Configurations
98
- ```python
99
- # Don't like our shell tools? Swap the palette
100
- palette_load(palette="minimal") # Just the essentials
101
- palette_load(palette="pentesting") # Security focused tools
102
- palette_load(palette="data-science") # Jupyter, pandas, numpy focused
103
- palette_load(palette="your-custom") # Your tools, your way
104
- ```
105
-
106
- ### 🔌 MCP Server Orchestration
107
- ```python
108
- # Add any MCP server dynamically
109
- mcp_add(url="github.com/someone/their-mcp", alias="their")
110
-
111
- # Use their tools through our unified interface
112
- their_tool(action="whatever", params=...)
113
-
114
- # Remove when done
115
- mcp_remove(alias="their")
116
- ```
117
-
118
- ### 🛠️ 65+ Battle-Tested Tools
119
-
120
- #### Intelligent Multi-Modal Search
121
- - **search**: Combines grep, AST analysis, vector embeddings, and git history
122
- - **symbols**: Find any code symbol across languages instantly
123
- - **git_search**: Search through git history, branches, and commits
124
-
125
- #### Advanced Development
126
- - **agent**: Delegate complex tasks to specialized AI agents
127
- - **llm**: Query multiple LLM providers with consensus
128
- - **jupyter**: Full Jupyter notebook support
129
- - **neovim**: Integrated Neovim for power users
130
-
131
- #### File Operations That Just Work
132
- - **edit/multi_edit**: Intelligent pattern-based editing
133
- - **read/write**: Automatic encoding detection
134
- - **tree**: Visual directory structures
135
- - **watch**: Monitor file changes in real-time
136
-
137
- #### Process & System Control
138
- - **run_command**: Secure command execution with timeout
139
- - **processes**: Monitor and manage system processes
140
- - **npx/uvx**: Package runners with background support
141
-
142
- #### And So Much More
143
- - Database tools (SQL, Graph)
144
- - Vector search and indexing
145
- - Todo management
146
- - Configuration management
147
- - MCP server management
148
- - Statistical analysis
149
- - Batch operations
150
-
151
- ## 🎯 The Zen of Hanzo
152
-
153
- 1. **One Tool, One Purpose** - Each tool does one thing exceptionally well
154
- 2. **Actions Over Tools** - Complex tools support multiple actions, not multiple interfaces
155
- 3. **Parallel by Default** - Run multiple operations concurrently
156
- 4. **Smart Fallbacks** - Automatically choose the best available backend
157
- 5. **Secure by Design** - Fine-grained permissions and audit trails
158
- 6. **Opinionated but Flexible** - Strong defaults with palette customization
159
-
160
- ## 🚀 Quick Start
161
-
162
- ### Installation
163
-
164
- ```bash
165
- # Install globally with uvx (recommended)
166
- uvx hanzo-mcp
167
-
168
- # Or install with pip
169
- pip install hanzo-mcp
170
-
171
- # Or install from source for development
172
- git clone https://github.com/hanzoai/mcp
173
- cd mcp
174
- make install
175
- ```
176
-
177
- ### Add to Claude Desktop
178
-
179
- ```bash
180
- # Automatic installation
181
- make install-desktop
182
-
183
- # Or manual configuration
184
- cat >> ~/Library/Application\ Support/Claude/claude_desktop_config.json << 'EOF'
185
- {
186
- "mcpServers": {
187
- "hanzo": {
188
- "command": "uvx",
189
- "args": ["hanzo-mcp"]
190
- }
191
- }
192
- }
193
- EOF
194
- ```
195
-
196
- ### Your First Session
197
-
198
- 1. Open Claude Desktop
199
- 2. Start with `search` to explore any codebase
200
- 3. Use `tree` to understand structure
201
- 4. Edit files with `edit` or `multi_edit`
202
- 5. Run commands with `run_command`
203
- 6. Add other MCP servers with `mcp_add`
204
-
205
- ## 🎨 Palette System
206
-
207
- Palettes let you completely transform Hanzo MCP's behavior:
208
-
209
- ```python
210
- # List available palettes
211
- palette_list()
212
-
213
- # Load a different personality
214
- palette_load(palette="minimal") # Just core tools
215
- palette_load(palette="academic") # Research and writing focused
216
- palette_load(palette="devops") # Infrastructure and deployment
217
-
218
- # Create your own
219
- palette_create(
220
- name="my-workflow",
221
- tools=["read", "write", "edit", "search", "my-custom-tool"],
222
- config={"editor": "vim", "search_backend": "ripgrep"}
223
- )
224
- ```
225
-
226
- ## 🔌 MCP Orchestration
227
-
228
- Hanzo MCP can manage other MCP servers:
229
-
230
- ```python
231
- # Add any MCP server
232
- mcp_add(url="github.com/modelcontextprotocol/servers/tree/main/postgres")
233
-
234
- # List installed servers
235
- mcp_stats()
236
-
237
- # Use tools from other servers seamlessly
238
- postgres_query(query="SELECT * FROM users")
239
-
240
- # Remove when done
241
- mcp_remove(alias="postgres")
242
- ```
243
-
244
- ## 📊 Advanced Features
245
-
246
- ### Intelligent Search
247
- ```python
248
- # Multi-modal search across your codebase
249
- results = search(
250
- query="authentication",
251
- include_git=True, # Search git history
252
- include_vector=True, # Semantic search
253
- include_ast=True, # AST symbol search
254
- parallel=True # Search all modes concurrently
255
- )
256
- ```
257
-
258
- ### Agent Orchestration
259
- ```python
260
- # Delegate complex tasks to specialized agents
261
- agent(
262
- task="Refactor this codebase to use async/await",
263
- files=["src/**/*.py"],
264
- instructions="Maintain backwards compatibility"
265
- )
266
- ```
267
-
268
- ### Consensus LLM Queries
269
- ```python
270
- # Query multiple LLMs and get consensus
271
- llm(
272
- action="consensus",
273
- prompt="Is this code secure?",
274
- providers=["openai", "anthropic", "google"],
275
- threshold=0.8
276
- )
277
- ```
278
-
279
- ## 🏗️ Architecture
280
-
281
- Built on modern Python with:
282
- - **FastMCP**: High-performance MCP framework
283
- - **UV**: Lightning-fast Python package management
284
- - **Parallel Execution**: Concurrent operations by default
285
- - **Smart Backends**: Automatic selection of best available tools
286
- - **Type Safety**: Full type hints and validation
287
-
288
- ## 🤝 Contributing
289
-
290
- We welcome contributions! The codebase is designed for extensibility:
291
-
292
- 1. **Add a Tool**: Drop a file in `hanzo_mcp/tools/`
293
- 2. **Create a Palette**: Define tool collections and configurations
294
- 3. **Improve Existing Tools**: Each tool is independently testable
295
-
296
- See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
297
-
298
- ## 📚 Documentation
299
-
300
- - **[Quick Start Guide](https://mcp.hanzo.ai/quickstart)** - Get running in 5 minutes
301
- - **[Tool Reference](https://mcp.hanzo.ai/tools)** - Detailed documentation for all 65+ tools
302
- - **[Palette System](https://mcp.hanzo.ai/palettes)** - Customize your experience
303
- - **[MCP Orchestration](https://mcp.hanzo.ai/orchestration)** - Control other MCP servers
304
- - **[Best Practices](https://mcp.hanzo.ai/best-practices)** - Tips from power users
305
-
306
- ## 🌟 Why Developers Choose Hanzo MCP
307
-
308
- > "I replaced 12 different MCP servers with just Hanzo. The palette system means I can switch contexts instantly—from web dev to data science to DevOps." - *Power User*
309
-
310
- > "The agent orchestration is incredible. I can delegate entire refactoring tasks and it just works." - *Sr. Engineer*
311
-
312
- > "Finally, an MCP that thinks like a developer. Smart defaults, great errors, and everything is parallel." - *Tech Lead*
313
-
314
- ## 📈 Stats
315
-
316
- - **65+** Professional Tools
317
- - **10x** Faster than installing multiple MCPs
318
- - **1** Unified interface to rule them all
319
- - **∞** Possibilities with the palette system
320
-
321
- ## 📄 License
322
-
323
- MIT - Use it, extend it, make it yours.
324
-
325
- ## 🔗 Links
326
-
327
- - [GitHub](https://github.com/hanzoai/mcp)
328
- - [Documentation](https://mcp.hanzo.ai)
329
- - [PyPI](https://pypi.org/project/hanzo-mcp/)
330
- - [Discord Community](https://discord.gg/hanzoai)
331
- - [Report Issues](https://github.com/hanzoai/mcp/issues)
332
-
333
- ---
334
-
335
- <p align="center">
336
- <b>The Zen of Hanzo MCP</b><br>
337
- <i>One server. All tools. Your way.</i><br><br>
338
- <code>uvx hanzo-mcp</code>
339
- </p>
@@ -1,135 +0,0 @@
1
- hanzo_mcp/__init__.py,sha256=YvzSKP7uAofDDoy2Yj36r8eSZjOJfiyZevQqHRET8Ew,362
2
- hanzo_mcp/__main__.py,sha256=TY-sUBg0MJozJws4-e3_kT8mJVoYGKCk6G3gPGxjIBI,129
3
- hanzo_mcp/cli.py,sha256=f9O-O4kfFGhJlWZFUs2PNnBKBt1Xv8teKaIhKDFFK3g,13297
4
- hanzo_mcp/cli_enhanced.py,sha256=_YirFtkOT-hlu1OqHslgivafWxs6RQ1VJKfowywVoQY,15970
5
- hanzo_mcp/dev_server.py,sha256=bmgVwIUQH_VoD15iyyldVkFl7Co7A4BcrkHnKq55Bbs,8137
6
- hanzo_mcp/server.py,sha256=FoJWaDY0LRgtsO1gq6NBKGWy7urwkXuR30tA0KJCAR8,8874
7
- hanzo_mcp/config/__init__.py,sha256=iZYGSJMsC1c97gRFqgyowfP4XW480BBVRAQq1r-Dp7g,506
8
- hanzo_mcp/config/settings.py,sha256=ctzcQa3Yk_3ACN8i8B_Hnvc_8aVad4GrKmdIQEEo0lA,16411
9
- hanzo_mcp/config/tool_config.py,sha256=AT5eJRZAL8VTLu5DCdoC_MkDxtufVE_QOj7Yp_Fyi8k,6317
10
- hanzo_mcp/prompts/__init__.py,sha256=Fp2Jr6SmUd6QmasOclgkTIb4qCzRSqtu3i-0d98XKEg,3992
11
- hanzo_mcp/prompts/compact_conversation.py,sha256=nvD068KEesiMcevxxMBeIJh6AqT7YHOqyH6RepRFFfA,4206
12
- hanzo_mcp/prompts/create_release.py,sha256=1Z8xSTtz5vAm0rWFnERpFu7wIYExT4iXhM6nGmQaM-s,1374
13
- hanzo_mcp/prompts/project_system.py,sha256=-W-PN-h-wW2F41-FM_OnLkX__4i40JpvF6lvW-3rjoM,8231
14
- hanzo_mcp/prompts/project_todo_reminder.py,sha256=otiBdmzxssBSb3MZZSQsjYDGLBqi1bM0HgraELP_Nf4,3645
15
- hanzo_mcp/prompts/utils.py,sha256=IwxIhzZfYJ2anToPulbrpcc07u4Dozo9ok6VE3BC_4A,9963
16
- hanzo_mcp/tools/__init__.py,sha256=KRHS8ijzc1NDqfPYJ0ZO-vwLlYzRtt0z8OXII4kf9Zw,14318
17
- hanzo_mcp/tools/agent/__init__.py,sha256=U4nchBrzKAnCn0ffbzOnN00zg-ZmXR6J8ZrdaBIWKQ8,1900
18
- hanzo_mcp/tools/agent/agent.py,sha256=xWYV6-ACIut_u2yiaobmN5szvoBOs8vre0opNKcKkmY,13541
19
- hanzo_mcp/tools/agent/agent_tool.py,sha256=A46xrkXGNBbNhSoZYfWyujswKDcIM04bZUKQPwlbAVw,21376
20
- hanzo_mcp/tools/agent/prompt.py,sha256=Wi9Z45hmQ92eUNZbOWzj9ZVCCr-fM1K9iyaRvTCAgrQ,4529
21
- hanzo_mcp/tools/agent/tool_adapter.py,sha256=HbuCOuj21hdNlUu0vLQq2QRupi7vCDhMPj2MH-oTwKE,2302
22
- hanzo_mcp/tools/common/__init__.py,sha256=pnKbCbAl0HrwaLpy_f4NJaX5_O7rVCTxZhnyPYpoyFQ,924
23
- hanzo_mcp/tools/common/base.py,sha256=o5_vIsQjmYD_wfJYofP7cLn1SY6hCVo3OAT23MFJOfQ,5888
24
- hanzo_mcp/tools/common/batch_tool.py,sha256=RsypKEaKPf4NgOpWjiLe1_KAYid_oqPDMti3xMsOdoY,12002
25
- hanzo_mcp/tools/common/config_tool.py,sha256=BgkXG5W2_g7lnrVbYWKkeCWA4cxUtdZTFzhFApmUT7c,16252
26
- hanzo_mcp/tools/common/context.py,sha256=e6ZCiMRK4RFPW5oi5zqLdVt-hhQndTUtyinpf-nPOUo,5186
27
- hanzo_mcp/tools/common/palette.py,sha256=I-DBp1tKzpQfHj1M5Bzj-mvOobz_3AlgKz25wvfv6oI,11251
28
- hanzo_mcp/tools/common/palette_loader.py,sha256=wOFQpfw2TCIc78StibfdQksHZAE4g8vqZMAWhTYhqmY,3671
29
- hanzo_mcp/tools/common/permissions.py,sha256=LR1tuQAPMoaKvqNtHPRaiB0ZUb0Tbsg3e9L6vvd4FLU,7562
30
- hanzo_mcp/tools/common/stats.py,sha256=QqtEoz_kWC7sNM5EQxTMqCmOxHJwoPLKyNrGIDWDf2Y,9769
31
- hanzo_mcp/tools/common/thinking_tool.py,sha256=-jNKGS9V9qkl2Y7Zl8QK6HJmJ4XE2EOWyeA-dg3Fg-o,5071
32
- hanzo_mcp/tools/common/tool_disable.py,sha256=JFXQsA08WzCHYSuEETjmcUzk1RhABZljRD0d4N8PkSI,4257
33
- hanzo_mcp/tools/common/tool_enable.py,sha256=CD9ioFVVcnAFtrhKKsuLuKhMh31qMBSVdLSldDbTBmE,5044
34
- hanzo_mcp/tools/common/tool_list.py,sha256=QmFmBkEh4oP26X_4zCW-Xc4mFtv77nboPpO6cqw_5-I,9311
35
- hanzo_mcp/tools/common/validation.py,sha256=VV3VbDvYlAYl2Bi98xE7gFo0xnmqHHUGJGNPswm97qo,1694
36
- hanzo_mcp/tools/config/__init__.py,sha256=UfpEzxNmysTz4U8r0HS4xlaABDzf3H7DqFBxUwBd17w,242
37
- hanzo_mcp/tools/config/config_tool.py,sha256=lWs4HVzZcsIfFn_G_7zUgngKPk1by3bHPvYTyDmAJ5U,6877
38
- hanzo_mcp/tools/config/index_config.py,sha256=VNxCrFyBFLAjoial5pZlRNZgrF1iDVl5yy-_czEyfGo,6332
39
- hanzo_mcp/tools/config/palette_tool.py,sha256=bbSAfTBD7on0aXWU9Mgm75-gOkxn0q9dWd1iTk9USzk,6512
40
- hanzo_mcp/tools/database/__init__.py,sha256=RXHXDyD79a8MbJ5AOuQOgCbCL7cO5yxVH2LbA3lEyGA,2167
41
- hanzo_mcp/tools/database/database_manager.py,sha256=urbP3T4QpTPBOH7JKjgjRbgMZAZxGm5Q_skZnZ9aHXQ,8807
42
- hanzo_mcp/tools/database/graph.py,sha256=i4yufKM8KNlb4NgsHkZSZ2kLICuJsQfl9m13sTfTZZ4,16964
43
- hanzo_mcp/tools/database/graph_add.py,sha256=gxFG-OHkvJhLUUW-xQMvNiQ_iQDt7vJ1k9rWdBd7dEg,7741
44
- hanzo_mcp/tools/database/graph_query.py,sha256=j7I0zhkiqLZqE2Btef4NMeqAuJiDXFoNYniphRSnzaY,19753
45
- hanzo_mcp/tools/database/graph_remove.py,sha256=Ei0ezAKa1902ll1wLTKcVXjoFETGCPbH7EvcQ5ctTMM,8776
46
- hanzo_mcp/tools/database/graph_search.py,sha256=ATZEe5U4wjHV4ocSQZko_QlN9Clrx-EZ_DSGzYaoSTs,12566
47
- hanzo_mcp/tools/database/graph_stats.py,sha256=dcBpMwFgS9X5l57Kdi8RAfyeI2-YKrDNyW0BjRL3L2I,13024
48
- hanzo_mcp/tools/database/sql.py,sha256=I7mDodvYwt5jqS0qMid2JcJatQ5Q0yabyTPi9X59Drw,16144
49
- hanzo_mcp/tools/database/sql_query.py,sha256=MsZ9XQ-KIMOMeqIxUnbKpd4_CN8Nt6zIN6vB9V6xkik,7290
50
- hanzo_mcp/tools/database/sql_search.py,sha256=KEG7DBcBvMy0CGRoxxanOYmwKL9GVN4vNPQvjxhlxkg,9831
51
- hanzo_mcp/tools/database/sql_stats.py,sha256=9aumwENMo-9DOfcLBg8zQ6khIdxVIQLVh_kNYE4MbZA,9008
52
- hanzo_mcp/tools/editor/__init__.py,sha256=RZKbXadNnh5fZ0-Wow-A5gAYCEfEuV_GapaR4mdjzW0,332
53
- hanzo_mcp/tools/editor/neovim_command.py,sha256=R4OtUia7WKdzOK8AHDrNpHii5GDJmHWwZigFy9ATycs,8283
54
- hanzo_mcp/tools/editor/neovim_edit.py,sha256=Hq10p1LIHBM_jGIyvjQYtJr8NR5pAeLRM6GfnGHFzTg,8816
55
- hanzo_mcp/tools/editor/neovim_session.py,sha256=H1AhXBod9HzcYv4fQu4pOlBcyfwgjUo24lzenDZfqRU,11962
56
- hanzo_mcp/tools/filesystem/__init__.py,sha256=wX3GTjevm-aON_RHs58WawgIn3LRxz4lN1AcqPHW6OI,6735
57
- hanzo_mcp/tools/filesystem/base.py,sha256=0_6PBU1yqGRIQ8ggQNMEA2rB4DXTFg7sMJRAoocN9do,3818
58
- hanzo_mcp/tools/filesystem/batch_search.py,sha256=03Ile8x9F5ySW_8YtLYMw7zyWf8eUhTW1wjZ3iqMN00,34302
59
- hanzo_mcp/tools/filesystem/content_replace.py,sha256=9GvQhJP1yBJsLQZPHs1UJZ6hxLBh1gCmZaU_CI4kbsA,9958
60
- hanzo_mcp/tools/filesystem/diff.py,sha256=7ZpVkSy_CjEu3dVfULXQ9Wn8IPKYLlS77fIGHvRQ3wg,7626
61
- hanzo_mcp/tools/filesystem/directory_tree.py,sha256=H_fuqNot8Qx3eJQXBsFGIUVyASGFjXgnO_viT_gCLwU,10696
62
- hanzo_mcp/tools/filesystem/edit.py,sha256=jqn1ae3tL5JrHQYm-uWHbXZSuAtw8o2Nj2yYJ1CGg8k,10632
63
- hanzo_mcp/tools/filesystem/find.py,sha256=897Lnd2507979hBzkskU5gEj1XDJdr7Gr9hTZIAWkUU,15337
64
- hanzo_mcp/tools/filesystem/find_files.py,sha256=BjmDzXvfXLV7_5NSZ7whhxXzJbM-vP1O0xq411PReSk,10959
65
- hanzo_mcp/tools/filesystem/git_search.py,sha256=qOOIxuATu6UPdlWokJaifaKLphj1Y3uMREqCMD9weOk,16220
66
- hanzo_mcp/tools/filesystem/grep.py,sha256=LDBGEpN2dj5xW1VvfgDxlkx4QqofWeztqwdyf_pSup0,16832
67
- hanzo_mcp/tools/filesystem/multi_edit.py,sha256=p6_OJNBn9uzCxVcLJrL88gze_P4O8j2Lm0-DZAESwpY,14242
68
- hanzo_mcp/tools/filesystem/read.py,sha256=y8FV9S4GZZLNMplrIZrz5FrqQ0xT3OiIHav-a2uDBzs,9342
69
- hanzo_mcp/tools/filesystem/symbols.py,sha256=gwLwA2PA6YuT7hojjFVHq2xVPuB2xlyTYyVbBow7AXY,7290
70
- hanzo_mcp/tools/filesystem/symbols_unified.py,sha256=UETAT3ofVVTFRuyrgKLehigV937cL5CCEbGaysmwXhE,12258
71
- hanzo_mcp/tools/filesystem/tree.py,sha256=MPBb3jHWa09DezDILP3FP7S_XCY2dJYQM-zUVYUloQQ,7497
72
- hanzo_mcp/tools/filesystem/unified_search.py,sha256=hmLGNWPiLrap7sJdTxJv-UM7A93qoo_cutrFlD_SAHc,26675
73
- hanzo_mcp/tools/filesystem/unix_aliases.py,sha256=jagrJbDo97Kpt3Zu3LQcuw_z28MQlADrNPbWgk6_cA0,3162
74
- hanzo_mcp/tools/filesystem/watch.py,sha256=hbqDUqlIlWXW4-2S8Z4ui-JSNgcWXxn_YOcZLo44ddc,7073
75
- hanzo_mcp/tools/filesystem/write.py,sha256=FwumcJX9RW_Xy8noKh-S3p95KRyOUG59Nl4w5lznV40,4762
76
- hanzo_mcp/tools/jupyter/__init__.py,sha256=JVCoHVUkBMvkN_JmfOs63lF7q31bGyPLscHXfqknbOw,2425
77
- hanzo_mcp/tools/jupyter/base.py,sha256=cK190wDExYyUFu7qrT-s5sHglPd9k6SrlpA60sLwFFE,10101
78
- hanzo_mcp/tools/jupyter/jupyter.py,sha256=0mUNu_Q0jnmiQip9Y2naAF0tJ71hy4mMmUMoWnuCBYU,11757
79
- hanzo_mcp/tools/jupyter/notebook_edit.py,sha256=MeaeUgvPnc5EmvgzbtJGIqKqFuUFt_8RE-XzBouYU4Q,11806
80
- hanzo_mcp/tools/jupyter/notebook_read.py,sha256=Au6Ad3N1Z5cYq2yIbu5y9H4oF6SwOj6SdHQeBwP7Gus,5222
81
- hanzo_mcp/tools/llm/__init__.py,sha256=kY8OJVsM8qRb0eVRjF7kuWJsrrlIxcUQntJS_FYXt8M,721
82
- hanzo_mcp/tools/llm/consensus_tool.py,sha256=5Rjs9TS0jeNkSH12AQK3fSvy7yo6tJRdmfYZLrR6NgU,11622
83
- hanzo_mcp/tools/llm/llm_manage.py,sha256=SCgmiO_cjQnCFdpsGzIPMluN1s8FA-Nj5-3AJZLvIUg,15666
84
- hanzo_mcp/tools/llm/llm_tool.py,sha256=cEzZKORFzdu4KcYJ8KB105m_xHLaMGTz5owPjbjPx-8,11158
85
- hanzo_mcp/tools/llm/llm_unified.py,sha256=BxSmXkJpD8QA-RQN_-L1G9zbZrP6gCQGuUegLtlafww,29804
86
- hanzo_mcp/tools/llm/provider_tools.py,sha256=mtjGdAPX3XFc_22fMNYNQbeU49opduQPO9h7DoN5IQo,11546
87
- hanzo_mcp/tools/mcp/__init__.py,sha256=0-7s3m51wXMt56X1hgUBEjadvLpu64OGcjjJWFOI058,365
88
- hanzo_mcp/tools/mcp/mcp_add.py,sha256=e66tk-OoV8R5x020sDHWgmJw_QLncfA7_RAi2Mr3ZDc,7924
89
- hanzo_mcp/tools/mcp/mcp_remove.py,sha256=cI_C6xjaHrQ0jnlqRZvrtjDi4CR6V0mTDLynOlrcAiA,3266
90
- hanzo_mcp/tools/mcp/mcp_stats.py,sha256=nka8zAJEEfqlA3tO5IamuIwOnmIZzLDW52kOxPTCDZc,5478
91
- hanzo_mcp/tools/mcp/mcp_unified.py,sha256=xZPKDqhBEMsUKFrKS9nRcl0n2YWZU_6DK3lvl2PYBQ4,16871
92
- hanzo_mcp/tools/shell/__init__.py,sha256=d66Jo8BIA6Re__b3r9V_e8uGm8psplQ2SGf0XRSGBzM,1733
93
- hanzo_mcp/tools/shell/base.py,sha256=Nx9rAE7CO9-Hr5k_qYKUtNFq4twI6Z-lOt0fpkS57i4,5832
94
- hanzo_mcp/tools/shell/base_process.py,sha256=KgXA98hFsbU5Y9E6mGLTTwQZowgHGpk5HSALxRICqDI,9495
95
- hanzo_mcp/tools/shell/bash_session.py,sha256=YPtdtC0pc6Q04RJqKUy0u0RPTbiT2IGtsvFqejK5Hu4,27271
96
- hanzo_mcp/tools/shell/bash_session_executor.py,sha256=xqvnFZSdlRKuuQx7HKsS6axasZa6Lr8YnIlny2qwr1Q,10892
97
- hanzo_mcp/tools/shell/bash_unified.py,sha256=vWQbTCgZS9ucD3cMr_ZYlLuGCnmQljRITYKUI-qrJek,4883
98
- hanzo_mcp/tools/shell/command_executor.py,sha256=Tw0UGRHBYxizkr7UaB148gmUwthc0D6pI92aPFIqc4I,36509
99
- hanzo_mcp/tools/shell/logs.py,sha256=RahjkEHNwsKbnJ7cTAie70BSb9bV6T9Vf4JJluoZXYo,8468
100
- hanzo_mcp/tools/shell/npx.py,sha256=Bs5tKpyJMm6Yfrmuph0btbvSQGbDczR_YToP2iRqhHY,5083
101
- hanzo_mcp/tools/shell/npx_background.py,sha256=GNZOYV_jjA9pa7w-ZNy_oX7iSA_VfZRzVUr7dKunfjo,7120
102
- hanzo_mcp/tools/shell/npx_unified.py,sha256=O6mYTwPQCNAR4ICmP3DNJcaNvfAcl0yOhaf26npmwfg,3520
103
- hanzo_mcp/tools/shell/open.py,sha256=Fo21N-XIosKDfGDIiROTUb8QxaqSddIY44YJgthGQ68,3686
104
- hanzo_mcp/tools/shell/pkill.py,sha256=PStKLEhuZhCZAXnn-Wwlut2xjV7GIc7PozuF8y8b7gI,8676
105
- hanzo_mcp/tools/shell/process_unified.py,sha256=XEFhyR9dc9vbmNEZUkNzlwytVeL8bKiCGK6PYbTmOVo,5008
106
- hanzo_mcp/tools/shell/processes.py,sha256=q2TCVpftV1HJaoEOEWzTOOUvyRemZiG0v8hK9VGM94A,9395
107
- hanzo_mcp/tools/shell/run_background.py,sha256=K2SxCF9sDcVxcwzAA77plZMb3wjYTOoSqS6MVyuBFBE,9713
108
- hanzo_mcp/tools/shell/run_command.py,sha256=AEH3waGpjbaSxBxSfmDW6hF7aL4pzwEwgUojOEsSNOY,16095
109
- hanzo_mcp/tools/shell/run_command_windows.py,sha256=ccicQHYJVfqowKxyUIpXYDoIvZl6jpgJDubPuDUpC5A,15321
110
- hanzo_mcp/tools/shell/session_manager.py,sha256=o8iS4PFCnq28vPqYtdtH9M8lfGyzyhtNL0hmNI13Uuc,6509
111
- hanzo_mcp/tools/shell/session_storage.py,sha256=elnyFgn0FwsmVvoWAoJFAqiEeNaK4_yByT8-zXa6r-o,10141
112
- hanzo_mcp/tools/shell/uvx.py,sha256=Y74SmbYHYlEoXXMzc9wh405-MD7zKAgFyWDBKastBHI,5034
113
- hanzo_mcp/tools/shell/uvx_background.py,sha256=uXeSJ_hjbpWyo2Zm75KJTZI2h_ZV5nEb_rAF7Gl954U,7105
114
- hanzo_mcp/tools/shell/uvx_unified.py,sha256=UBuhiiqsfdLML2Y86Av8Wmqh7lB6NVPBIUI5Yc3utAA,3556
115
- hanzo_mcp/tools/todo/__init__.py,sha256=p0flShq4Kw9saGQ5NXjTjwFa8BeukACaEJBTqG34H2M,1723
116
- hanzo_mcp/tools/todo/base.py,sha256=k0CFZy59YlLAJBVzVA4tr-qGkQ1l5yF04kcmziwQWec,10666
117
- hanzo_mcp/tools/todo/todo.py,sha256=y4LM8CIb94tK-lURnVer2WzctKPx_EWS0kEIM1Ut0Os,8218
118
- hanzo_mcp/tools/todo/todo_read.py,sha256=EWqXOeQANGQOJXKyMv-0GeJdq-d0HnslRM__LW6Jydg,4688
119
- hanzo_mcp/tools/todo/todo_write.py,sha256=nJG2By4FXHZm7NNreEfVYb3wPJbraVWjrdv_TqXqYFo,15394
120
- hanzo_mcp/tools/vector/__init__.py,sha256=7n7mUYruIINPtUdniy45qU0qI11dLvt07PqfEbNb_D0,4011
121
- hanzo_mcp/tools/vector/ast_analyzer.py,sha256=0MraKxFbZqaPns0CUacCG84IX_DW_RxSfi7fvXT-MEY,15986
122
- hanzo_mcp/tools/vector/git_ingester.py,sha256=pR4_HRMT7trGhr1kGHASvhgm7Vjwh6UY-UVdXCNj07s,16367
123
- hanzo_mcp/tools/vector/index_tool.py,sha256=rMqv1WQMt18eikXdOzUNYyvWdR1gK_rIy4P769gGTak,12769
124
- hanzo_mcp/tools/vector/infinity_store.py,sha256=yKiPVitpkk3Ud1Zb0O_q6IlsB0diVIvFxqKCZ2Pw8IY,28631
125
- hanzo_mcp/tools/vector/mock_infinity.py,sha256=QyU7FM2eTCP0BeuX8xhRe0En7hG9EFt-XzgDu-BefrI,4990
126
- hanzo_mcp/tools/vector/project_manager.py,sha256=ML-ZeZTb1Pb5m-T0jF2LH0myTmG688uMR0nHRQBSNDY,13625
127
- hanzo_mcp/tools/vector/vector.py,sha256=EpKEDkRfSHsDfPewqRwNAulX0BndlK48p-sFSMtt3js,10179
128
- hanzo_mcp/tools/vector/vector_index.py,sha256=IqXoEfEk6TOOEThXw4obePZqfvBRiYL_LCrx8z35-h8,4403
129
- hanzo_mcp/tools/vector/vector_search.py,sha256=jwX1azf4V4seqJ2CIDloX3lJ5_hkUl7X5e2OOgGXQNk,9647
130
- hanzo_mcp-0.6.12.dist-info/licenses/LICENSE,sha256=mf1qZGFsPGskoPgytp9B-RsahfKvXsBpmaAbTLGTt8Y,1063
131
- hanzo_mcp-0.6.12.dist-info/METADATA,sha256=mWECTG9AjK-tKztANkIijYLOgxeCVl1zR25f4WEx_w0,11291
132
- hanzo_mcp-0.6.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
133
- hanzo_mcp-0.6.12.dist-info/entry_points.txt,sha256=Q_g5SzWk47z2b_rE_RgonVqk4-d8VQ6pqwMveYiXJuU,101
134
- hanzo_mcp-0.6.12.dist-info/top_level.txt,sha256=eGFANatA0MHWiVlpS56fTYRIShtibrSom1uXI6XU0GU,10
135
- hanzo_mcp-0.6.12.dist-info/RECORD,,
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 hanzoai
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.