meshagent-mcp 0.17.1__tar.gz → 0.18.1__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.
@@ -1,3 +1,19 @@
1
+ ## [0.18.1]
2
+ - Updated OpenAI Python SDK dependency to `openai~=2.14.0` (from `~2.6.0`).
3
+ - Breaking: OpenAI Responses adapter no longer sends tool definitions with requests, disabling tool/function calling via the Responses API.
4
+ - CLI deploy commands now report “Deployed service” on successful deploys.
5
+ - Shell toolkit/tool builders now pass the configured shell image via the `image` field.
6
+
7
+ ## [0.18.0]
8
+ - Added local TCP port-forwarding helper that bridges to the remote tunnel WebSocket
9
+ - Added a CLI `port forward` command to expose container ports locally
10
+ - Added `writable_root_fs` support when running containers
11
+ - Added `host_port` support for service port specs
12
+ - Added `ApiScope.tunnels` support in participant tokens (including `agent_default(tunnels=...)`)
13
+ - Added container-based Playwright “computer use” and enabled computer-use toolkits for chatbot/worker/mailbot flows
14
+ - Removed `scrapybara` from the computers package dependencies
15
+ - OpenAI proxy client can now optionally log requests/responses with redacted authorization headers
16
+
1
17
  ## [0.17.1]
2
18
  - Prevented worker toolkit lifecycle collisions when running alongside other toolkits by isolating the worker’s remote toolkit handling.
3
19
  - Improved the error message when attempting to start a single-room agent more than once.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-mcp
3
- Version: 0.17.1
3
+ Version: 0.18.1
4
4
  Summary: Computer Building Blocks for MCP
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -12,7 +12,7 @@ License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
14
  Requires-Dist: mcp~=1.9
15
- Requires-Dist: meshagent-tools~=0.17.1
15
+ Requires-Dist: meshagent-tools~=0.18.1
16
16
  Dynamic: license-file
17
17
 
18
18
  # [Meshagent](https://www.meshagent.com)
@@ -0,0 +1 @@
1
+ __version__ = "0.18.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-mcp
3
- Version: 0.17.1
3
+ Version: 0.18.1
4
4
  Summary: Computer Building Blocks for MCP
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -12,7 +12,7 @@ License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
14
  Requires-Dist: mcp~=1.9
15
- Requires-Dist: meshagent-tools~=0.17.1
15
+ Requires-Dist: meshagent-tools~=0.18.1
16
16
  Dynamic: license-file
17
17
 
18
18
  # [Meshagent](https://www.meshagent.com)
@@ -1,4 +1,4 @@
1
1
  pytest~=8.4
2
2
  pytest-asyncio~=0.26
3
3
  mcp~=1.9
4
- meshagent-tools~=0.17.1
4
+ meshagent-tools~=0.18.1
@@ -12,7 +12,7 @@ dependencies = [
12
12
  "pytest~=8.4",
13
13
  "pytest-asyncio~=0.26",
14
14
  "mcp~=1.9",
15
- "meshagent-tools~=0.17.1"
15
+ "meshagent-tools~=0.18.1"
16
16
  ]
17
17
  dynamic = ["version", "readme"]
18
18
 
@@ -1 +0,0 @@
1
- __version__ = "0.17.1"
File without changes
File without changes
File without changes