hanzo-mcp 0.5.0__py3-none-any.whl → 0.5.2__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.
- hanzo_mcp/__init__.py +1 -1
- hanzo_mcp/config/settings.py +61 -0
- hanzo_mcp/tools/__init__.py +158 -12
- hanzo_mcp/tools/common/base.py +7 -2
- hanzo_mcp/tools/common/config_tool.py +396 -0
- hanzo_mcp/tools/common/stats.py +261 -0
- hanzo_mcp/tools/common/tool_disable.py +144 -0
- hanzo_mcp/tools/common/tool_enable.py +182 -0
- hanzo_mcp/tools/common/tool_list.py +263 -0
- hanzo_mcp/tools/database/__init__.py +71 -0
- hanzo_mcp/tools/database/database_manager.py +246 -0
- hanzo_mcp/tools/database/graph_add.py +257 -0
- hanzo_mcp/tools/database/graph_query.py +536 -0
- hanzo_mcp/tools/database/graph_remove.py +267 -0
- hanzo_mcp/tools/database/graph_search.py +348 -0
- hanzo_mcp/tools/database/graph_stats.py +345 -0
- hanzo_mcp/tools/database/sql_query.py +229 -0
- hanzo_mcp/tools/database/sql_search.py +296 -0
- hanzo_mcp/tools/database/sql_stats.py +254 -0
- hanzo_mcp/tools/editor/__init__.py +11 -0
- hanzo_mcp/tools/editor/neovim_command.py +272 -0
- hanzo_mcp/tools/editor/neovim_edit.py +290 -0
- hanzo_mcp/tools/editor/neovim_session.py +356 -0
- hanzo_mcp/tools/filesystem/__init__.py +20 -1
- hanzo_mcp/tools/filesystem/batch_search.py +812 -0
- hanzo_mcp/tools/filesystem/find_files.py +348 -0
- hanzo_mcp/tools/filesystem/git_search.py +505 -0
- hanzo_mcp/tools/llm/__init__.py +27 -0
- hanzo_mcp/tools/llm/consensus_tool.py +351 -0
- hanzo_mcp/tools/llm/llm_manage.py +413 -0
- hanzo_mcp/tools/llm/llm_tool.py +346 -0
- hanzo_mcp/tools/llm/provider_tools.py +412 -0
- hanzo_mcp/tools/mcp/__init__.py +11 -0
- hanzo_mcp/tools/mcp/mcp_add.py +263 -0
- hanzo_mcp/tools/mcp/mcp_remove.py +127 -0
- hanzo_mcp/tools/mcp/mcp_stats.py +165 -0
- hanzo_mcp/tools/shell/__init__.py +27 -7
- hanzo_mcp/tools/shell/logs.py +265 -0
- hanzo_mcp/tools/shell/npx.py +194 -0
- hanzo_mcp/tools/shell/npx_background.py +254 -0
- hanzo_mcp/tools/shell/pkill.py +262 -0
- hanzo_mcp/tools/shell/processes.py +279 -0
- hanzo_mcp/tools/shell/run_background.py +326 -0
- hanzo_mcp/tools/shell/uvx.py +187 -0
- hanzo_mcp/tools/shell/uvx_background.py +249 -0
- hanzo_mcp/tools/vector/__init__.py +21 -12
- hanzo_mcp/tools/vector/ast_analyzer.py +459 -0
- hanzo_mcp/tools/vector/git_ingester.py +485 -0
- hanzo_mcp/tools/vector/index_tool.py +358 -0
- hanzo_mcp/tools/vector/infinity_store.py +465 -1
- hanzo_mcp/tools/vector/mock_infinity.py +162 -0
- hanzo_mcp/tools/vector/vector_index.py +7 -6
- hanzo_mcp/tools/vector/vector_search.py +22 -7
- {hanzo_mcp-0.5.0.dist-info → hanzo_mcp-0.5.2.dist-info}/METADATA +68 -20
- hanzo_mcp-0.5.2.dist-info/RECORD +106 -0
- hanzo_mcp-0.5.0.dist-info/RECORD +0 -63
- {hanzo_mcp-0.5.0.dist-info → hanzo_mcp-0.5.2.dist-info}/WHEEL +0 -0
- {hanzo_mcp-0.5.0.dist-info → hanzo_mcp-0.5.2.dist-info}/entry_points.txt +0 -0
- {hanzo_mcp-0.5.0.dist-info → hanzo_mcp-0.5.2.dist-info}/licenses/LICENSE +0 -0
- {hanzo_mcp-0.5.0.dist-info → hanzo_mcp-0.5.2.dist-info}/top_level.txt +0 -0
|
@@ -48,13 +48,18 @@ class VectorSearchTool(BaseTool):
|
|
|
48
48
|
@property
|
|
49
49
|
def description(self) -> str:
|
|
50
50
|
"""Get the tool description."""
|
|
51
|
-
return """
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
automatically detected based on LLM.md files.
|
|
51
|
+
return """Pure semantic/vector search using Infinity embedded database.
|
|
52
|
+
|
|
53
|
+
Searches indexed documents using vector embeddings to find semantically similar content.
|
|
54
|
+
This is NOT keyword search - it finds documents based on meaning and context similarity.
|
|
56
55
|
|
|
57
|
-
|
|
56
|
+
Features:
|
|
57
|
+
- Searches across project-specific vector databases
|
|
58
|
+
- Returns similarity scores (0-1, higher is better)
|
|
59
|
+
- Supports filtering by project or file
|
|
60
|
+
- Automatically detects projects via LLM.md files
|
|
61
|
+
|
|
62
|
+
Use 'grep' for exact text/pattern matching, 'vector_search' for semantic similarity."""
|
|
58
63
|
|
|
59
64
|
async def call(
|
|
60
65
|
self,
|
|
@@ -212,4 +217,14 @@ Returns ranked results with similarity scores, project context, and document met
|
|
|
212
217
|
return "\n".join(output_lines)
|
|
213
218
|
|
|
214
219
|
except Exception as e:
|
|
215
|
-
return f"Error searching vector database: {str(e)}"
|
|
220
|
+
return f"Error searching vector database: {str(e)}"
|
|
221
|
+
|
|
222
|
+
def register(self, mcp_server) -> None:
|
|
223
|
+
"""Register this tool with the MCP server.
|
|
224
|
+
|
|
225
|
+
Args:
|
|
226
|
+
mcp_server: The FastMCP server instance
|
|
227
|
+
"""
|
|
228
|
+
# This is a placeholder - the actual registration would happen
|
|
229
|
+
# through the MCP server's tool registration mechanism
|
|
230
|
+
pass
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hanzo-mcp
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: MCP implementation of Hanzo capabilities
|
|
5
5
|
Author-email: Hanzo Industries Inc <dev@hanzo.ai>
|
|
6
6
|
License: MIT
|
|
@@ -45,6 +45,10 @@ Dynamic: license-file
|
|
|
45
45
|
|
|
46
46
|
# Hanzo MCP
|
|
47
47
|
|
|
48
|
+
[](https://hanzo.app/launch?repo=https://github.com/hanzoai/mcp)
|
|
49
|
+
[](https://hanzo.app/dev?repo=https://github.com/hanzoai/mcp&action=feature)
|
|
50
|
+
[](https://hanzo.app/dev?repo=https://github.com/hanzoai/mcp&action=bugfix)
|
|
51
|
+
|
|
48
52
|
An implementation of Hanzo capabilities using the Model Context Protocol (MCP).
|
|
49
53
|
|
|
50
54
|
## Overview
|
|
@@ -67,26 +71,59 @@ This project provides an MCP server that implements Hanzo-like functionality, al
|
|
|
67
71
|
|
|
68
72
|
## Tools Implemented
|
|
69
73
|
|
|
70
|
-
|
|
71
|
-
|
|
|
72
|
-
|
|
|
73
|
-
| `
|
|
74
|
-
| `
|
|
75
|
-
| `
|
|
76
|
-
| `
|
|
77
|
-
| `
|
|
78
|
-
| `content_replace`
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
|
82
|
-
|
|
|
83
|
-
| `
|
|
84
|
-
| `
|
|
85
|
-
| `
|
|
86
|
-
| `
|
|
74
|
+
### Core File Operations
|
|
75
|
+
| Tool | Description |
|
|
76
|
+
| ----------------- | ----------------------------------------------------------------------------------- |
|
|
77
|
+
| `read` | Read one or multiple files with encoding detection and line range support |
|
|
78
|
+
| `write` | Create or overwrite files with content |
|
|
79
|
+
| `edit` | Make precise line-based edits to existing files |
|
|
80
|
+
| `multi_edit` | Make multiple edits to a single file in one atomic operation |
|
|
81
|
+
| `directory_tree` | Get a recursive tree view of directories with customizable depth and filters |
|
|
82
|
+
| `content_replace` | Replace patterns in file contents using regex |
|
|
83
|
+
|
|
84
|
+
### Search & Analysis
|
|
85
|
+
| Tool | Description |
|
|
86
|
+
| ----------------- | ----------------------------------------------------------------------------------- |
|
|
87
|
+
| `grep` | Fast pattern search across files using ripgrep |
|
|
88
|
+
| `grep_ast` | AST-aware code search that understands code structure |
|
|
89
|
+
| `unified_search` | Intelligent multi-modal search combining text, vector, AST, and symbol search |
|
|
90
|
+
| `vector_search` | Semantic search across indexed documents and code |
|
|
91
|
+
| `vector_index` | Index documents and code in project-aware vector databases |
|
|
92
|
+
|
|
93
|
+
### Shell & Commands
|
|
94
|
+
| Tool | Description |
|
|
95
|
+
| ----------------- | ----------------------------------------------------------------------------------- |
|
|
96
|
+
| `run_command` | Execute shell commands with timeout, environment control, and session support |
|
|
97
|
+
|
|
98
|
+
### Jupyter Support
|
|
99
|
+
| Tool | Description |
|
|
100
|
+
| ----------------- | ----------------------------------------------------------------------------------- |
|
|
101
|
+
| `notebook_read` | Read Jupyter notebook cells with outputs and metadata |
|
|
102
|
+
| `notebook_edit` | Edit, insert, or delete cells in Jupyter notebooks |
|
|
103
|
+
|
|
104
|
+
### Task Management
|
|
105
|
+
| Tool | Description |
|
|
106
|
+
| ----------------- | ----------------------------------------------------------------------------------- |
|
|
107
|
+
| `todo_read` | Read the current task list for tracking progress |
|
|
108
|
+
| `todo_write` | Create and manage structured task lists with status and priority |
|
|
109
|
+
|
|
110
|
+
### Advanced Tools
|
|
111
|
+
| Tool | Description |
|
|
112
|
+
| ----------------- | ----------------------------------------------------------------------------------- |
|
|
113
|
+
| `think` | Structured space for complex reasoning and analysis without making changes |
|
|
114
|
+
| `dispatch_agent` | Launch specialized sub-agents for concurrent task execution |
|
|
115
|
+
| `batch` | Execute multiple tool calls in a single operation for performance |
|
|
116
|
+
|
|
117
|
+
For detailed documentation on all tools, see [TOOLS_DOCUMENTATION.md](./TOOLS_DOCUMENTATION.md).
|
|
87
118
|
|
|
88
119
|
## Getting Started
|
|
89
120
|
|
|
121
|
+
### 🚀 Try it Instantly in Hanzo.App
|
|
122
|
+
|
|
123
|
+
**No setup required!** Launch this project instantly in your browser:
|
|
124
|
+
|
|
125
|
+
[](https://hanzo.app/launch?repo=https://github.com/hanzoai/mcp)
|
|
126
|
+
|
|
90
127
|
### Quick Install
|
|
91
128
|
|
|
92
129
|
```bash
|
|
@@ -120,7 +157,7 @@ cd mcp
|
|
|
120
157
|
make install-desktop
|
|
121
158
|
|
|
122
159
|
# With custom paths and server name
|
|
123
|
-
make install-desktop ALLOWED_PATHS="/path/to/projects,/another/path" SERVER_NAME="hanzo
|
|
160
|
+
make install-desktop ALLOWED_PATHS="/path/to/projects,/another/path" SERVER_NAME="hanzo"
|
|
124
161
|
|
|
125
162
|
# Disable write tools (useful if you prefer using your IDE for edits)
|
|
126
163
|
make install-desktop DISABLE_WRITE=1
|
|
@@ -215,7 +252,11 @@ make publish-test
|
|
|
215
252
|
|
|
216
253
|
### Contributing
|
|
217
254
|
|
|
218
|
-
|
|
255
|
+
**New contributors welcome!** 🎉 We've made it easy to contribute:
|
|
256
|
+
|
|
257
|
+
[](https://hanzo.app/dev?repo=https://github.com/hanzoai/mcp&action=contribute)
|
|
258
|
+
|
|
259
|
+
**Traditional approach:**
|
|
219
260
|
|
|
220
261
|
1. Fork the repository
|
|
221
262
|
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
|
|
@@ -223,6 +264,13 @@ To contribute to this project:
|
|
|
223
264
|
4. Push to the branch (`git push origin feature/amazing-feature`)
|
|
224
265
|
5. Open a Pull Request
|
|
225
266
|
|
|
267
|
+
**Or use Hanzo Dev for AI-assisted contributions:**
|
|
268
|
+
- [Launch in Hanzo.App](https://hanzo.app/launch?repo=https://github.com/hanzoai/mcp) for instant setup
|
|
269
|
+
- [Add new features](https://hanzo.app/dev?repo=https://github.com/hanzoai/mcp&action=feature) with AI assistance
|
|
270
|
+
- [Fix bugs automatically](https://hanzo.app/dev?repo=https://github.com/hanzoai/mcp&action=bugfix)
|
|
271
|
+
|
|
272
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for detailed guidelines.
|
|
273
|
+
|
|
226
274
|
## License
|
|
227
275
|
|
|
228
276
|
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
hanzo_mcp/__init__.py,sha256=_4GbNO6P83JxRoxDqEGtbxEuFjE9k2nPrWmTPz2Kngo,89
|
|
2
|
+
hanzo_mcp/cli.py,sha256=fX8HtsD44elZhYre7Dn6RmH5lUt2AFRWz6ehGeoCkUY,9784
|
|
3
|
+
hanzo_mcp/cli_enhanced.py,sha256=rqh9gqyjMuUznIlPTC5pcIGYZTKAScacMsDb1e68ReE,15819
|
|
4
|
+
hanzo_mcp/server.py,sha256=mYiIcsAtQO2c_MGExYbzk5tj2U-MjcDWfTU5T22KuwQ,8107
|
|
5
|
+
hanzo_mcp/config/__init__.py,sha256=iZYGSJMsC1c97gRFqgyowfP4XW480BBVRAQq1r-Dp7g,506
|
|
6
|
+
hanzo_mcp/config/settings.py,sha256=F4ya4pHoxGACawPo4hd0bwfk6MwXvrTjH0WMBQpUN8I,16259
|
|
7
|
+
hanzo_mcp/config/tool_config.py,sha256=AT5eJRZAL8VTLu5DCdoC_MkDxtufVE_QOj7Yp_Fyi8k,6317
|
|
8
|
+
hanzo_mcp/prompts/__init__.py,sha256=L3eolRTyTohIp5JA0xv50TSFU4YSf_ycEEaODta7Ve0,3989
|
|
9
|
+
hanzo_mcp/prompts/compact_conversation.py,sha256=nvD068KEesiMcevxxMBeIJh6AqT7YHOqyH6RepRFFfA,4206
|
|
10
|
+
hanzo_mcp/prompts/create_release.py,sha256=1Z8xSTtz5vAm0rWFnERpFu7wIYExT4iXhM6nGmQaM-s,1374
|
|
11
|
+
hanzo_mcp/prompts/project_system.py,sha256=fQhOM6AGb6VIZQE_fSPDeS9slBGVkz_f_UbNNhxPRdw,7031
|
|
12
|
+
hanzo_mcp/prompts/project_todo_reminder.py,sha256=otiBdmzxssBSb3MZZSQsjYDGLBqi1bM0HgraELP_Nf4,3645
|
|
13
|
+
hanzo_mcp/prompts/utils.py,sha256=IwxIhzZfYJ2anToPulbrpcc07u4Dozo9ok6VE3BC_4A,9963
|
|
14
|
+
hanzo_mcp/tools/__init__.py,sha256=1_DWUUamBvBKFbsLcWFwAndbbXs4qODcqV0fyzMFBY4,12704
|
|
15
|
+
hanzo_mcp/tools/agent/__init__.py,sha256=MZ-LMIYptodQn1JpAEyNMbqRlioS4R8scgzNgsU189E,1897
|
|
16
|
+
hanzo_mcp/tools/agent/agent_tool.py,sha256=w-Oy2wPPTz79SCzmi7NsI8RU4eLbFKMTXDi-sFKrrbo,21268
|
|
17
|
+
hanzo_mcp/tools/agent/prompt.py,sha256=Wi9Z45hmQ92eUNZbOWzj9ZVCCr-fM1K9iyaRvTCAgrQ,4529
|
|
18
|
+
hanzo_mcp/tools/agent/tool_adapter.py,sha256=Od7VtD9qqDbgxhDHj0L-rohX4wOSMtYjZnU2BRuWSqI,2151
|
|
19
|
+
hanzo_mcp/tools/common/__init__.py,sha256=6LOEE9anSTsiPofgGNcD8CVHdU4SiaHjoQcRzNT2xos,921
|
|
20
|
+
hanzo_mcp/tools/common/base.py,sha256=Es67mEZXFVYFUroxTV94YiPirsLvX-GNLjUMF95k1P0,5874
|
|
21
|
+
hanzo_mcp/tools/common/batch_tool.py,sha256=-FaZtH1cqd3xSHUrMaIvB664WEK0rKtTvzpUeEl0DhY,12073
|
|
22
|
+
hanzo_mcp/tools/common/config_tool.py,sha256=Tmjf4e6z_EfuOjS5acUQnzGo43GZxSqJC329FmQ5QFE,16241
|
|
23
|
+
hanzo_mcp/tools/common/context.py,sha256=XrgzJwPQP8ooKoReveezVgRyOSJe-zfD5-knhusBgbg,5175
|
|
24
|
+
hanzo_mcp/tools/common/permissions.py,sha256=LR1tuQAPMoaKvqNtHPRaiB0ZUb0Tbsg3e9L6vvd4FLU,7562
|
|
25
|
+
hanzo_mcp/tools/common/stats.py,sha256=urc3sS92e75D1wQCYG9GP1ZQRel3SmVPm8-htaEIF4I,9758
|
|
26
|
+
hanzo_mcp/tools/common/thinking_tool.py,sha256=pEBSymlJZJIS2X0pc-2VX2dUAPi4ho2un-wa69yYTD8,5142
|
|
27
|
+
hanzo_mcp/tools/common/tool_disable.py,sha256=Wx3PN7j9CQ2f1cMGNBJlJfqdaB13qPFcEV3idJXGZe8,4246
|
|
28
|
+
hanzo_mcp/tools/common/tool_enable.py,sha256=KK_gP-hjZRpEACxBJfZDAjNl89bnC7ueJu5fwGfbI_k,5033
|
|
29
|
+
hanzo_mcp/tools/common/tool_list.py,sha256=-pxT-pbxDLoHBXZShdy_Zjvsn4-Y2688q65PgSsg0Fk,8922
|
|
30
|
+
hanzo_mcp/tools/common/validation.py,sha256=VV3VbDvYlAYl2Bi98xE7gFo0xnmqHHUGJGNPswm97qo,1694
|
|
31
|
+
hanzo_mcp/tools/database/__init__.py,sha256=6LnN5EsHFCFMQjg_jqxfOIExanAT2pLfaHyvOrvvO4U,2164
|
|
32
|
+
hanzo_mcp/tools/database/database_manager.py,sha256=urbP3T4QpTPBOH7JKjgjRbgMZAZxGm5Q_skZnZ9aHXQ,8807
|
|
33
|
+
hanzo_mcp/tools/database/graph_add.py,sha256=0Cdt5KPTVduE9c7C--HzIjx-12kmP3JEdsy28ZXtuh4,7730
|
|
34
|
+
hanzo_mcp/tools/database/graph_query.py,sha256=AgEKt-nqTALS0P9aPxMtANyEN3ik40tV8muCK9rydVc,19742
|
|
35
|
+
hanzo_mcp/tools/database/graph_remove.py,sha256=rlANurnV0cuz86IlAM1BovUUkme5V4GLsLxzdCajf_M,8765
|
|
36
|
+
hanzo_mcp/tools/database/graph_search.py,sha256=eqB3tk5g71c7GzilhIqXVsNQRzvvs1-MUxmfbSUjq0o,12555
|
|
37
|
+
hanzo_mcp/tools/database/graph_stats.py,sha256=yyxlCyClmLHC3X9lv9fU-O5YBOOg7GD-f8FSekXNVvw,13013
|
|
38
|
+
hanzo_mcp/tools/database/sql_query.py,sha256=7yhGJGkfjy339AINr8QVQICkpG3C0nTEGDzf20IN-zE,7279
|
|
39
|
+
hanzo_mcp/tools/database/sql_search.py,sha256=GyzKeVYo-pal4J2gvM_tjBnXbKYMNcURnnfJZ_oeFoI,9820
|
|
40
|
+
hanzo_mcp/tools/database/sql_stats.py,sha256=4gAIHRAVa1ydRChKGGhyA6cR8Z2cawGoxZBKQsnNJjI,8997
|
|
41
|
+
hanzo_mcp/tools/editor/__init__.py,sha256=RZKbXadNnh5fZ0-Wow-A5gAYCEfEuV_GapaR4mdjzW0,332
|
|
42
|
+
hanzo_mcp/tools/editor/neovim_command.py,sha256=_k6muOEVOBQx6ILJnUghMKlPKvO_1E9PDyM0qGC7twk,8272
|
|
43
|
+
hanzo_mcp/tools/editor/neovim_edit.py,sha256=BLZdQO7w0Aa61rf8SoLLkqPv0Zh-NGpX3fWMPAih7i8,8805
|
|
44
|
+
hanzo_mcp/tools/editor/neovim_session.py,sha256=f-iOnG5jsPrO7UrO77aMcwo0ZaP-us-KgIglVGe6bAs,11951
|
|
45
|
+
hanzo_mcp/tools/filesystem/__init__.py,sha256=8n_NklE5rTcvfVkwv-j720Ahtg6eE8HG2HHruHzJXYo,5436
|
|
46
|
+
hanzo_mcp/tools/filesystem/base.py,sha256=qwxer1jHgPIfyaUeC4QLzR9pjGWJCLP2L3qggUAulFY,3807
|
|
47
|
+
hanzo_mcp/tools/filesystem/batch_search.py,sha256=Rzp8yFzeHdnj2uR7YRIC85iz23yTr7uAl5U1_hGVjns,34467
|
|
48
|
+
hanzo_mcp/tools/filesystem/content_replace.py,sha256=hCiw9oQXS2_b6CjgC7XHOrRo5NH6H8zOFaSDS6Uwfgw,10015
|
|
49
|
+
hanzo_mcp/tools/filesystem/directory_tree.py,sha256=LZTJRmrDdSFpq9EpcTmVytimCp_glpCVKDxf7UCyq20,10755
|
|
50
|
+
hanzo_mcp/tools/filesystem/edit.py,sha256=PIlFsMjBG9WQw9IWC6dzLZly6UIBUcAUrohRkqyKFZY,10699
|
|
51
|
+
hanzo_mcp/tools/filesystem/find_files.py,sha256=AdwtY2Mz9oTPZ66juHe34_6fK_mVT-uNFVF6hhhdx8w,10948
|
|
52
|
+
hanzo_mcp/tools/filesystem/git_search.py,sha256=pab3PHI8wPxSHaaIuIWJwq1ULcdhye77xB4ORW05e7k,16209
|
|
53
|
+
hanzo_mcp/tools/filesystem/grep.py,sha256=-JKrBUk04tmObvwPh8UvBpLOc27NNndNt6eR5qSkCLs,16818
|
|
54
|
+
hanzo_mcp/tools/filesystem/grep_ast_tool.py,sha256=F-HacdAISZI_jDGJrxIcZ-dyj3OG919JUVimpvgAZNA,8142
|
|
55
|
+
hanzo_mcp/tools/filesystem/multi_edit.py,sha256=j8ytsFVsdQqJ9AWCJMQa8kWHyH4UpbBdHRIc7XepEJc,14313
|
|
56
|
+
hanzo_mcp/tools/filesystem/read.py,sha256=uF1KdIAsKL8-oQiwOfL9-dkTzKOqQK0nKLVe6hW-5KE,8892
|
|
57
|
+
hanzo_mcp/tools/filesystem/write.py,sha256=dkbZ61kYGRTzKPVtMG8ETYw8YHyo6YXb1cLI70ePYcQ,4833
|
|
58
|
+
hanzo_mcp/tools/jupyter/__init__.py,sha256=IJnkx6vwxP2ZJOGvUxG25fhstlny-uFnNBLjGlUt5hs,2515
|
|
59
|
+
hanzo_mcp/tools/jupyter/base.py,sha256=oxTz_exSsYni2cQJvL4gHZtC4EG5EU_1-nWyEdc-ZQ8,10090
|
|
60
|
+
hanzo_mcp/tools/jupyter/notebook_edit.py,sha256=wKEEQJ36pfgB0JHQi2nV_X7ApXqy6HXZY9XO4lZ9Efg,11848
|
|
61
|
+
hanzo_mcp/tools/jupyter/notebook_read.py,sha256=t2fkP5wAp8SBBaWHrty-uWsnn6l5WO2zIqISVSHnQus,5293
|
|
62
|
+
hanzo_mcp/tools/llm/__init__.py,sha256=MdGOvR91CACz3W90U00YQs-gNnIg0OAr7sz6qTFfWXw,594
|
|
63
|
+
hanzo_mcp/tools/llm/consensus_tool.py,sha256=3mC5kNempHYxXq0I6kr19_Rit1NQxKXNGsal-iNTUpw,11611
|
|
64
|
+
hanzo_mcp/tools/llm/llm_manage.py,sha256=FHf0U7YAW8EPMwFLdTlq_u1m1V3cPPYjKTc9S_hc8Bk,15655
|
|
65
|
+
hanzo_mcp/tools/llm/llm_tool.py,sha256=I-onULpskIs3wCX4OI5vShhwYGGe472lynJ9CczwSNg,11147
|
|
66
|
+
hanzo_mcp/tools/llm/provider_tools.py,sha256=PvcapPUg4gGzlLHm-s6X1q6S841yHKjTO43tDOx1-ZE,11535
|
|
67
|
+
hanzo_mcp/tools/mcp/__init__.py,sha256=Bix1Vl4wxT2BxFI-y6fOphFZCG57oNhNqmnlBV4edZE,266
|
|
68
|
+
hanzo_mcp/tools/mcp/mcp_add.py,sha256=QEv43rb_c-xHOWAMIw9VET8r0NOdUjmu1aNBiMTJIu0,7913
|
|
69
|
+
hanzo_mcp/tools/mcp/mcp_remove.py,sha256=wQLcx4kpZapD_Kd5iet6dp_7u6GzCrxhv66Z9c5C-j8,3255
|
|
70
|
+
hanzo_mcp/tools/mcp/mcp_stats.py,sha256=sdm6KFQwCox477r03RdOOvYodnJ1vByGXy84v2CmHrs,5467
|
|
71
|
+
hanzo_mcp/tools/shell/__init__.py,sha256=LLMhZU8Fq7Rc4T0e2lBatt8cZS_G2kl6skFj346gLio,2718
|
|
72
|
+
hanzo_mcp/tools/shell/base.py,sha256=twbz3EuX64cwvNlcHraZ5CcEhDpUvMI5mLTZvMADtbQ,5821
|
|
73
|
+
hanzo_mcp/tools/shell/bash_session.py,sha256=YPtdtC0pc6Q04RJqKUy0u0RPTbiT2IGtsvFqejK5Hu4,27271
|
|
74
|
+
hanzo_mcp/tools/shell/bash_session_executor.py,sha256=zRnrzj4sdQOxO22XXBENT6k2dXt3LDk5fxjWjUYyU_Q,10723
|
|
75
|
+
hanzo_mcp/tools/shell/command_executor.py,sha256=IuoRY48PMmpKHL5CFIExebjoiRRS5ZEl73UDzYTR3kU,36406
|
|
76
|
+
hanzo_mcp/tools/shell/logs.py,sha256=c0SBlHrpTAY7eckJ0DrPUDzb5OnJTbzuyt4BoE2aTuA,8457
|
|
77
|
+
hanzo_mcp/tools/shell/npx.py,sha256=PWPp64nNQr16l1qp3fZpL4EYxuVFtJO6l8JRjQrMcyg,5072
|
|
78
|
+
hanzo_mcp/tools/shell/npx_background.py,sha256=TZncVB3RqKDLOLNWKDFCoRCFlQ7tiBIyvPCmf_K_oTg,7109
|
|
79
|
+
hanzo_mcp/tools/shell/pkill.py,sha256=j8Y7aETUonGCRF4Ikivc_3Qde4BVqNbgVypUxUuMdvs,8665
|
|
80
|
+
hanzo_mcp/tools/shell/processes.py,sha256=J3aSxacjEAhch3U8jtseYS2bHH3oav-zaFTjoM_Xgrg,9384
|
|
81
|
+
hanzo_mcp/tools/shell/run_background.py,sha256=uYcPtmP2dZPgPPTzToHiO1hToUwJ67KggQm-sN8QWKY,9702
|
|
82
|
+
hanzo_mcp/tools/shell/run_command.py,sha256=Io6LyLm8XWZKZ-Zjhx3L-H5vmdNGoqbkU9jJzwL7zLs,16137
|
|
83
|
+
hanzo_mcp/tools/shell/run_command_windows.py,sha256=MGXC76b0uYKhxg1-d9CijPP36ufRusgyq9Zurpo1vSc,15363
|
|
84
|
+
hanzo_mcp/tools/shell/session_manager.py,sha256=o8iS4PFCnq28vPqYtdtH9M8lfGyzyhtNL0hmNI13Uuc,6509
|
|
85
|
+
hanzo_mcp/tools/shell/session_storage.py,sha256=elnyFgn0FwsmVvoWAoJFAqiEeNaK4_yByT8-zXa6r-o,10141
|
|
86
|
+
hanzo_mcp/tools/shell/uvx.py,sha256=NY_f3c-llI5IwkbdiE4r5pHCUS3KI37RTcmrRqlKIRI,5023
|
|
87
|
+
hanzo_mcp/tools/shell/uvx_background.py,sha256=lY1T0k_k28VqPyFx0bfF0qmeKbpTgvj3zhHd4OcU8rs,7094
|
|
88
|
+
hanzo_mcp/tools/todo/__init__.py,sha256=Ai-rlVWcy-CkJf1H2zIsbyx0wkxzWNLR3WAbGszbXKg,1720
|
|
89
|
+
hanzo_mcp/tools/todo/base.py,sha256=8sYZYAsFE5SjHRqynZCmCIKEobWB3aZwwSApg26keDo,10655
|
|
90
|
+
hanzo_mcp/tools/todo/todo_read.py,sha256=zXI9jn-kWXGSj88tI63yoAv-EWPDpkX1E6m0QfMUQHE,4759
|
|
91
|
+
hanzo_mcp/tools/todo/todo_write.py,sha256=fTAvrxrzkpdYwi7nYcJky2wjukChYsdXu5axqIUJg_c,15465
|
|
92
|
+
hanzo_mcp/tools/vector/__init__.py,sha256=TAxOaWOnzC756n7byfdfwTcaxjuHITs586bGHZ1B6Ww,3850
|
|
93
|
+
hanzo_mcp/tools/vector/ast_analyzer.py,sha256=2bUM9j9rCNARNXXF2cuFSp2ercwZAJWlAqeRIwn46Ck,15653
|
|
94
|
+
hanzo_mcp/tools/vector/git_ingester.py,sha256=pR4_HRMT7trGhr1kGHASvhgm7Vjwh6UY-UVdXCNj07s,16367
|
|
95
|
+
hanzo_mcp/tools/vector/index_tool.py,sha256=6VWDEfA_R6ySwVCg85h4rGw_uh4ROtpL2_Ab5kMDl8A,12758
|
|
96
|
+
hanzo_mcp/tools/vector/infinity_store.py,sha256=E3YotdY798HTPs4X2IMv-SOjt-VjCC2XAFaWPeSVUQU,28382
|
|
97
|
+
hanzo_mcp/tools/vector/mock_infinity.py,sha256=QyU7FM2eTCP0BeuX8xhRe0En7hG9EFt-XzgDu-BefrI,4990
|
|
98
|
+
hanzo_mcp/tools/vector/project_manager.py,sha256=JZ6c0m4RWKbV4JjkxAI6ZgyOy2Ymk8-o4ficTLZrIo0,12500
|
|
99
|
+
hanzo_mcp/tools/vector/vector_index.py,sha256=Idp9w4g_7WVbIDY3oEX4-o7bWWQadeo3XC9lVtyS7Wg,4392
|
|
100
|
+
hanzo_mcp/tools/vector/vector_search.py,sha256=QErsckzvwrBl_DkELIkBRE2kH-WOMxSgHLiwAFkiyMA,9636
|
|
101
|
+
hanzo_mcp-0.5.2.dist-info/licenses/LICENSE,sha256=mf1qZGFsPGskoPgytp9B-RsahfKvXsBpmaAbTLGTt8Y,1063
|
|
102
|
+
hanzo_mcp-0.5.2.dist-info/METADATA,sha256=Mk3SPG1yAlh9gooa9EvcA72JhsWIauW87RBNSLhgP5A,11995
|
|
103
|
+
hanzo_mcp-0.5.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
104
|
+
hanzo_mcp-0.5.2.dist-info/entry_points.txt,sha256=aRKOKXtuQr-idSr-yH4efnRl2v8te94AcgN3ysqqSYs,49
|
|
105
|
+
hanzo_mcp-0.5.2.dist-info/top_level.txt,sha256=eGFANatA0MHWiVlpS56fTYRIShtibrSom1uXI6XU0GU,10
|
|
106
|
+
hanzo_mcp-0.5.2.dist-info/RECORD,,
|
hanzo_mcp-0.5.0.dist-info/RECORD
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
hanzo_mcp/__init__.py,sha256=_HhgLXRNztyXYLjqCEuPOeVQ7tZ0pRxqkZziKkpSUrE,89
|
|
2
|
-
hanzo_mcp/cli.py,sha256=fX8HtsD44elZhYre7Dn6RmH5lUt2AFRWz6ehGeoCkUY,9784
|
|
3
|
-
hanzo_mcp/cli_enhanced.py,sha256=rqh9gqyjMuUznIlPTC5pcIGYZTKAScacMsDb1e68ReE,15819
|
|
4
|
-
hanzo_mcp/server.py,sha256=mYiIcsAtQO2c_MGExYbzk5tj2U-MjcDWfTU5T22KuwQ,8107
|
|
5
|
-
hanzo_mcp/config/__init__.py,sha256=iZYGSJMsC1c97gRFqgyowfP4XW480BBVRAQq1r-Dp7g,506
|
|
6
|
-
hanzo_mcp/config/settings.py,sha256=ibMmec9Zm5wHu-Y8e3o1F0_rgzP9V7pVOZjcW35l3KI,14058
|
|
7
|
-
hanzo_mcp/config/tool_config.py,sha256=AT5eJRZAL8VTLu5DCdoC_MkDxtufVE_QOj7Yp_Fyi8k,6317
|
|
8
|
-
hanzo_mcp/prompts/__init__.py,sha256=L3eolRTyTohIp5JA0xv50TSFU4YSf_ycEEaODta7Ve0,3989
|
|
9
|
-
hanzo_mcp/prompts/compact_conversation.py,sha256=nvD068KEesiMcevxxMBeIJh6AqT7YHOqyH6RepRFFfA,4206
|
|
10
|
-
hanzo_mcp/prompts/create_release.py,sha256=1Z8xSTtz5vAm0rWFnERpFu7wIYExT4iXhM6nGmQaM-s,1374
|
|
11
|
-
hanzo_mcp/prompts/project_system.py,sha256=fQhOM6AGb6VIZQE_fSPDeS9slBGVkz_f_UbNNhxPRdw,7031
|
|
12
|
-
hanzo_mcp/prompts/project_todo_reminder.py,sha256=otiBdmzxssBSb3MZZSQsjYDGLBqi1bM0HgraELP_Nf4,3645
|
|
13
|
-
hanzo_mcp/prompts/utils.py,sha256=IwxIhzZfYJ2anToPulbrpcc07u4Dozo9ok6VE3BC_4A,9963
|
|
14
|
-
hanzo_mcp/tools/__init__.py,sha256=q8bVRv11mHTRSZL9PPHlTl3kr4GUAygPk78QjCYavT4,6728
|
|
15
|
-
hanzo_mcp/tools/agent/__init__.py,sha256=MZ-LMIYptodQn1JpAEyNMbqRlioS4R8scgzNgsU189E,1897
|
|
16
|
-
hanzo_mcp/tools/agent/agent_tool.py,sha256=w-Oy2wPPTz79SCzmi7NsI8RU4eLbFKMTXDi-sFKrrbo,21268
|
|
17
|
-
hanzo_mcp/tools/agent/prompt.py,sha256=Wi9Z45hmQ92eUNZbOWzj9ZVCCr-fM1K9iyaRvTCAgrQ,4529
|
|
18
|
-
hanzo_mcp/tools/agent/tool_adapter.py,sha256=Od7VtD9qqDbgxhDHj0L-rohX4wOSMtYjZnU2BRuWSqI,2151
|
|
19
|
-
hanzo_mcp/tools/common/__init__.py,sha256=6LOEE9anSTsiPofgGNcD8CVHdU4SiaHjoQcRzNT2xos,921
|
|
20
|
-
hanzo_mcp/tools/common/base.py,sha256=HB7glx3O9eq2B8nHQu1FbRjtlQZM77CKB1lwMGb-CuE,5631
|
|
21
|
-
hanzo_mcp/tools/common/batch_tool.py,sha256=-FaZtH1cqd3xSHUrMaIvB664WEK0rKtTvzpUeEl0DhY,12073
|
|
22
|
-
hanzo_mcp/tools/common/context.py,sha256=XrgzJwPQP8ooKoReveezVgRyOSJe-zfD5-knhusBgbg,5175
|
|
23
|
-
hanzo_mcp/tools/common/permissions.py,sha256=LR1tuQAPMoaKvqNtHPRaiB0ZUb0Tbsg3e9L6vvd4FLU,7562
|
|
24
|
-
hanzo_mcp/tools/common/thinking_tool.py,sha256=pEBSymlJZJIS2X0pc-2VX2dUAPi4ho2un-wa69yYTD8,5142
|
|
25
|
-
hanzo_mcp/tools/common/validation.py,sha256=VV3VbDvYlAYl2Bi98xE7gFo0xnmqHHUGJGNPswm97qo,1694
|
|
26
|
-
hanzo_mcp/tools/filesystem/__init__.py,sha256=M_Q8Z-w8UyXCKUXLUwPYMrKsOPybZoUs888THA6xqPY,4561
|
|
27
|
-
hanzo_mcp/tools/filesystem/base.py,sha256=qwxer1jHgPIfyaUeC4QLzR9pjGWJCLP2L3qggUAulFY,3807
|
|
28
|
-
hanzo_mcp/tools/filesystem/content_replace.py,sha256=hCiw9oQXS2_b6CjgC7XHOrRo5NH6H8zOFaSDS6Uwfgw,10015
|
|
29
|
-
hanzo_mcp/tools/filesystem/directory_tree.py,sha256=LZTJRmrDdSFpq9EpcTmVytimCp_glpCVKDxf7UCyq20,10755
|
|
30
|
-
hanzo_mcp/tools/filesystem/edit.py,sha256=PIlFsMjBG9WQw9IWC6dzLZly6UIBUcAUrohRkqyKFZY,10699
|
|
31
|
-
hanzo_mcp/tools/filesystem/grep.py,sha256=-JKrBUk04tmObvwPh8UvBpLOc27NNndNt6eR5qSkCLs,16818
|
|
32
|
-
hanzo_mcp/tools/filesystem/grep_ast_tool.py,sha256=F-HacdAISZI_jDGJrxIcZ-dyj3OG919JUVimpvgAZNA,8142
|
|
33
|
-
hanzo_mcp/tools/filesystem/multi_edit.py,sha256=j8ytsFVsdQqJ9AWCJMQa8kWHyH4UpbBdHRIc7XepEJc,14313
|
|
34
|
-
hanzo_mcp/tools/filesystem/read.py,sha256=uF1KdIAsKL8-oQiwOfL9-dkTzKOqQK0nKLVe6hW-5KE,8892
|
|
35
|
-
hanzo_mcp/tools/filesystem/write.py,sha256=dkbZ61kYGRTzKPVtMG8ETYw8YHyo6YXb1cLI70ePYcQ,4833
|
|
36
|
-
hanzo_mcp/tools/jupyter/__init__.py,sha256=IJnkx6vwxP2ZJOGvUxG25fhstlny-uFnNBLjGlUt5hs,2515
|
|
37
|
-
hanzo_mcp/tools/jupyter/base.py,sha256=oxTz_exSsYni2cQJvL4gHZtC4EG5EU_1-nWyEdc-ZQ8,10090
|
|
38
|
-
hanzo_mcp/tools/jupyter/notebook_edit.py,sha256=wKEEQJ36pfgB0JHQi2nV_X7ApXqy6HXZY9XO4lZ9Efg,11848
|
|
39
|
-
hanzo_mcp/tools/jupyter/notebook_read.py,sha256=t2fkP5wAp8SBBaWHrty-uWsnn6l5WO2zIqISVSHnQus,5293
|
|
40
|
-
hanzo_mcp/tools/shell/__init__.py,sha256=CcVnsAqSd8FLtVpkuHQK4cbKHWrac6o9enEIqNlxz4k,1951
|
|
41
|
-
hanzo_mcp/tools/shell/base.py,sha256=twbz3EuX64cwvNlcHraZ5CcEhDpUvMI5mLTZvMADtbQ,5821
|
|
42
|
-
hanzo_mcp/tools/shell/bash_session.py,sha256=YPtdtC0pc6Q04RJqKUy0u0RPTbiT2IGtsvFqejK5Hu4,27271
|
|
43
|
-
hanzo_mcp/tools/shell/bash_session_executor.py,sha256=zRnrzj4sdQOxO22XXBENT6k2dXt3LDk5fxjWjUYyU_Q,10723
|
|
44
|
-
hanzo_mcp/tools/shell/command_executor.py,sha256=IuoRY48PMmpKHL5CFIExebjoiRRS5ZEl73UDzYTR3kU,36406
|
|
45
|
-
hanzo_mcp/tools/shell/run_command.py,sha256=Io6LyLm8XWZKZ-Zjhx3L-H5vmdNGoqbkU9jJzwL7zLs,16137
|
|
46
|
-
hanzo_mcp/tools/shell/run_command_windows.py,sha256=MGXC76b0uYKhxg1-d9CijPP36ufRusgyq9Zurpo1vSc,15363
|
|
47
|
-
hanzo_mcp/tools/shell/session_manager.py,sha256=o8iS4PFCnq28vPqYtdtH9M8lfGyzyhtNL0hmNI13Uuc,6509
|
|
48
|
-
hanzo_mcp/tools/shell/session_storage.py,sha256=elnyFgn0FwsmVvoWAoJFAqiEeNaK4_yByT8-zXa6r-o,10141
|
|
49
|
-
hanzo_mcp/tools/todo/__init__.py,sha256=Ai-rlVWcy-CkJf1H2zIsbyx0wkxzWNLR3WAbGszbXKg,1720
|
|
50
|
-
hanzo_mcp/tools/todo/base.py,sha256=8sYZYAsFE5SjHRqynZCmCIKEobWB3aZwwSApg26keDo,10655
|
|
51
|
-
hanzo_mcp/tools/todo/todo_read.py,sha256=zXI9jn-kWXGSj88tI63yoAv-EWPDpkX1E6m0QfMUQHE,4759
|
|
52
|
-
hanzo_mcp/tools/todo/todo_write.py,sha256=fTAvrxrzkpdYwi7nYcJky2wjukChYsdXu5axqIUJg_c,15465
|
|
53
|
-
hanzo_mcp/tools/vector/__init__.py,sha256=vNz7GM1P98TW-v6Y3KTwvaW7cO5P80mXAf6uKS0Y29M,3390
|
|
54
|
-
hanzo_mcp/tools/vector/infinity_store.py,sha256=hYaSuRxqukwVDMgzrxs_Qdia7Gx-FFEGuHE-4KIACo0,12002
|
|
55
|
-
hanzo_mcp/tools/vector/project_manager.py,sha256=JZ6c0m4RWKbV4JjkxAI6ZgyOy2Ymk8-o4ficTLZrIo0,12500
|
|
56
|
-
hanzo_mcp/tools/vector/vector_index.py,sha256=FePsCTeVkA3Uth3PFIZykXprCPfef7cqCCV_vH7z0Eo,4316
|
|
57
|
-
hanzo_mcp/tools/vector/vector_search.py,sha256=3dWS_jueMt07DSTZOKtz9El4uSwU9KgHUjRAiF14CxQ,9182
|
|
58
|
-
hanzo_mcp-0.5.0.dist-info/licenses/LICENSE,sha256=mf1qZGFsPGskoPgytp9B-RsahfKvXsBpmaAbTLGTt8Y,1063
|
|
59
|
-
hanzo_mcp-0.5.0.dist-info/METADATA,sha256=RRh07Zv5iMZRJZb2-nv92groJ5ql1VG2tS51Rj-fzhE,8930
|
|
60
|
-
hanzo_mcp-0.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
61
|
-
hanzo_mcp-0.5.0.dist-info/entry_points.txt,sha256=aRKOKXtuQr-idSr-yH4efnRl2v8te94AcgN3ysqqSYs,49
|
|
62
|
-
hanzo_mcp-0.5.0.dist-info/top_level.txt,sha256=eGFANatA0MHWiVlpS56fTYRIShtibrSom1uXI6XU0GU,10
|
|
63
|
-
hanzo_mcp-0.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|