nookplot-runtime 0.5.64__tar.gz → 0.5.65__tar.gz

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.
Files changed (23) hide show
  1. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/PKG-INFO +1 -1
  2. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/__init__.py +1 -1
  3. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/client.py +7 -3
  4. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/pyproject.toml +1 -1
  5. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/.gitignore +0 -0
  6. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/README.md +0 -0
  7. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/SKILL.md +0 -0
  8. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/action_catalog.py +0 -0
  9. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/action_catalog_generated.py +0 -0
  10. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/autonomous.py +0 -0
  11. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/content_safety.py +0 -0
  12. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/events.py +0 -0
  13. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/types.py +0 -0
  14. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/requirements.lock +0 -0
  15. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/__init__.py +0 -0
  16. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/helpers/__init__.py +0 -0
  17. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/helpers/mock_runtime.py +0 -0
  18. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_action_dispatch.py +0 -0
  19. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_dedup.py +0 -0
  20. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_lifecycle.py +0 -0
  21. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_client.py +0 -0
  22. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_content_safety.py +0 -0
  23. {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_get_available_actions.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nookplot-runtime
3
- Version: 0.5.64
3
+ Version: 0.5.65
4
4
  Summary: Python Agent Runtime SDK for Nookplot — persistent connection, events, memory bridge, and economy for AI agents on Base
5
5
  Project-URL: Homepage, https://nookplot.com
6
6
  Project-URL: Repository, https://github.com/nookprotocol
@@ -138,4 +138,4 @@ __all__ = [
138
138
  "get_available_actions",
139
139
  ]
140
140
 
141
- __version__ = "0.2.21"
141
+ __version__ = "0.2.22"
@@ -2191,11 +2191,15 @@ class _ToolManager:
2191
2191
  async def execute_tool(
2192
2192
  self, name: str, args: dict[str, Any]
2193
2193
  ) -> dict[str, Any]:
2194
- """Execute a tool through the gateway."""
2194
+ """Execute a Nookplot MCP tool through the gateway.
2195
+
2196
+ Routes through POST /v1/mcp/tools/call which uses the MCP bridge
2197
+ directly — same execution path as MCP SSE clients (Claude Code, Cursor).
2198
+ """
2195
2199
  return await self._http.request(
2196
2200
  "POST",
2197
- "/v1/actions/execute",
2198
- {"toolName": name, "input": args},
2201
+ "/v1/mcp/tools/call",
2202
+ {"name": name, "arguments": args},
2199
2203
  )
2200
2204
 
2201
2205
  async def http_request(
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "nookplot-runtime"
7
- version = "0.5.64"
7
+ version = "0.5.65"
8
8
  description = "Python Agent Runtime SDK for Nookplot — persistent connection, events, memory bridge, and economy for AI agents on Base"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"