hanzo-mcp 0.1.25__py3-none-any.whl → 0.1.30__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 (48) hide show
  1. hanzo_mcp/__init__.py +2 -2
  2. hanzo_mcp/cli.py +80 -9
  3. hanzo_mcp/server.py +41 -10
  4. hanzo_mcp/tools/__init__.py +51 -32
  5. hanzo_mcp/tools/agent/__init__.py +59 -0
  6. hanzo_mcp/tools/agent/agent_tool.py +474 -0
  7. hanzo_mcp/tools/agent/prompt.py +137 -0
  8. hanzo_mcp/tools/agent/tool_adapter.py +75 -0
  9. hanzo_mcp/tools/common/__init__.py +17 -0
  10. hanzo_mcp/tools/common/base.py +216 -0
  11. hanzo_mcp/tools/common/context.py +7 -3
  12. hanzo_mcp/tools/common/permissions.py +63 -119
  13. hanzo_mcp/tools/common/session.py +91 -0
  14. hanzo_mcp/tools/common/thinking_tool.py +123 -0
  15. hanzo_mcp/tools/filesystem/__init__.py +85 -5
  16. hanzo_mcp/tools/filesystem/base.py +113 -0
  17. hanzo_mcp/tools/filesystem/content_replace.py +287 -0
  18. hanzo_mcp/tools/filesystem/directory_tree.py +286 -0
  19. hanzo_mcp/tools/filesystem/edit_file.py +287 -0
  20. hanzo_mcp/tools/filesystem/get_file_info.py +170 -0
  21. hanzo_mcp/tools/filesystem/read_files.py +198 -0
  22. hanzo_mcp/tools/filesystem/search_content.py +275 -0
  23. hanzo_mcp/tools/filesystem/write_file.py +162 -0
  24. hanzo_mcp/tools/jupyter/__init__.py +67 -4
  25. hanzo_mcp/tools/jupyter/base.py +284 -0
  26. hanzo_mcp/tools/jupyter/edit_notebook.py +295 -0
  27. hanzo_mcp/tools/jupyter/notebook_operations.py +72 -112
  28. hanzo_mcp/tools/jupyter/read_notebook.py +165 -0
  29. hanzo_mcp/tools/project/__init__.py +64 -1
  30. hanzo_mcp/tools/project/analysis.py +9 -6
  31. hanzo_mcp/tools/project/base.py +66 -0
  32. hanzo_mcp/tools/project/project_analyze.py +173 -0
  33. hanzo_mcp/tools/shell/__init__.py +58 -1
  34. hanzo_mcp/tools/shell/base.py +148 -0
  35. hanzo_mcp/tools/shell/command_executor.py +203 -322
  36. hanzo_mcp/tools/shell/run_command.py +204 -0
  37. hanzo_mcp/tools/shell/run_script.py +215 -0
  38. hanzo_mcp/tools/shell/script_tool.py +244 -0
  39. {hanzo_mcp-0.1.25.dist-info → hanzo_mcp-0.1.30.dist-info}/METADATA +72 -77
  40. hanzo_mcp-0.1.30.dist-info/RECORD +45 -0
  41. {hanzo_mcp-0.1.25.dist-info → hanzo_mcp-0.1.30.dist-info}/licenses/LICENSE +2 -2
  42. hanzo_mcp/tools/common/thinking.py +0 -65
  43. hanzo_mcp/tools/filesystem/file_operations.py +0 -1050
  44. hanzo_mcp-0.1.25.dist-info/RECORD +0 -24
  45. hanzo_mcp-0.1.25.dist-info/zip-safe +0 -1
  46. {hanzo_mcp-0.1.25.dist-info → hanzo_mcp-0.1.30.dist-info}/WHEEL +0 -0
  47. {hanzo_mcp-0.1.25.dist-info → hanzo_mcp-0.1.30.dist-info}/entry_points.txt +0 -0
  48. {hanzo_mcp-0.1.25.dist-info → hanzo_mcp-0.1.30.dist-info}/top_level.txt +0 -0
@@ -1,24 +0,0 @@
1
- hanzo_mcp/__init__.py,sha256=MVDDvQWI8u1vdS9ynXjVvUoex3vbcRufg-NmZVPO1og,99
2
- hanzo_mcp/cli.py,sha256=4hj3qRecA6tafsCeKSVDhT1TP4YNfZxWxeMQ8z8P4m0,4743
3
- hanzo_mcp/server.py,sha256=Dk3IdFGAeu2qKZLeOlgE1rHjeCzRjiCkccDLsxXAXAg,4035
4
- hanzo_mcp/tools/__init__.py,sha256=IsjWWWAIQW4e490k3RI2YLQ46ZvDfcttqZ0SCcC6aps,2507
5
- hanzo_mcp/tools/common/__init__.py,sha256=p14VhL-SwjJxWKmAWB7Sze5ovJlNKVK_NAUplbuECTY,44
6
- hanzo_mcp/tools/common/context.py,sha256=pv_oJ5aJM6YyOiKjAKU0LHZCQZQEvKRvh_9zOiQMSIw,12941
7
- hanzo_mcp/tools/common/permissions.py,sha256=WL-cj2RTmjrwPlcwaQtOV5W-nZeKg2P8sboJHQ6b5fM,11710
8
- hanzo_mcp/tools/common/thinking.py,sha256=0PRBTm8i8u0KBKfNaDasNSCn_R9kmFrAS3retEj_0J4,2630
9
- hanzo_mcp/tools/common/validation.py,sha256=gB3uM_cbPZsH4Ez0hnTgIcdP-AUlHZU02aRmZEpk_6I,3648
10
- hanzo_mcp/tools/filesystem/__init__.py,sha256=_J-n7elOW4zgVpnIm8nMV4AupmYudTF9gdkn1S40RAI,299
11
- hanzo_mcp/tools/filesystem/file_operations.py,sha256=9SY8A5GzcH8u_yMCzDvWFoWSRRBlJj-i3HfcPuk5md8,46174
12
- hanzo_mcp/tools/jupyter/__init__.py,sha256=H8t37ams4utRgVl-7RFi1lQFSdTJP6DdpkCVo3qVifI,245
13
- hanzo_mcp/tools/jupyter/notebook_operations.py,sha256=Vzu4anFoGKHcdGuIk20mtiZVTyKx9HIhe3HKYocq0w8,23335
14
- hanzo_mcp/tools/project/__init__.py,sha256=4V60vR_ZP1eEuMtH-JR1ADi5sIKHbeh93fPu5ANPhQ4,59
15
- hanzo_mcp/tools/project/analysis.py,sha256=P0plRYwY6trb6ZGkJEA1bPOpdEayRd1hEKwU2EBBuOI,30361
16
- hanzo_mcp/tools/shell/__init__.py,sha256=m9dH7LhiDpYU1AD6lwKPGD0E_a7MId2rAb9sGoJNeLM,55
17
- hanzo_mcp/tools/shell/command_executor.py,sha256=4iBf3FmSljG6QEOXUjrO_4isUv9aWCTQKfE08PbQLlk,37401
18
- hanzo_mcp-0.1.25.dist-info/licenses/LICENSE,sha256=dvWmlLGUAkNE8EJVn-UQ-F08hxW5jtjUWNe51OaH7IE,1077
19
- hanzo_mcp-0.1.25.dist-info/METADATA,sha256=IRoZBImDFuOQh9pHq_gYlrupLTnu9s55TiDTcI4QfSk,7090
20
- hanzo_mcp-0.1.25.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
21
- hanzo_mcp-0.1.25.dist-info/entry_points.txt,sha256=aRKOKXtuQr-idSr-yH4efnRl2v8te94AcgN3ysqqSYs,49
22
- hanzo_mcp-0.1.25.dist-info/top_level.txt,sha256=eGFANatA0MHWiVlpS56fTYRIShtibrSom1uXI6XU0GU,10
23
- hanzo_mcp-0.1.25.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
24
- hanzo_mcp-0.1.25.dist-info/RECORD,,
@@ -1 +0,0 @@
1
-