meshagent-mcp 0.17.0__tar.gz → 0.18.0__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.
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/CHANGELOG.md +14 -0
- {meshagent_mcp-0.17.0/meshagent_mcp.egg-info → meshagent_mcp-0.18.0}/PKG-INFO +2 -2
- meshagent_mcp-0.18.0/meshagent/mcp/version.py +1 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0/meshagent_mcp.egg-info}/PKG-INFO +2 -2
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent_mcp.egg-info/requires.txt +1 -1
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/pyproject.toml +1 -1
- meshagent_mcp-0.17.0/meshagent/mcp/version.py +0 -1
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/LICENSE +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/MANIFEST.in +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/README.md +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent/mcp/__init__.py +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent/mcp/cleanup.py +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent/mcp/toolkit.py +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent_mcp.egg-info/SOURCES.txt +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent_mcp.egg-info/dependency_links.txt +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/meshagent_mcp.egg-info/top_level.txt +0 -0
- {meshagent_mcp-0.17.0 → meshagent_mcp-0.18.0}/setup.cfg +0 -0
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [0.18.0]
|
|
2
|
+
- Added local TCP port-forwarding helper that bridges to the remote tunnel WebSocket
|
|
3
|
+
- Added a CLI `port forward` command to expose container ports locally
|
|
4
|
+
- Added `writable_root_fs` support when running containers
|
|
5
|
+
- Added `host_port` support for service port specs
|
|
6
|
+
- Added `ApiScope.tunnels` support in participant tokens (including `agent_default(tunnels=...)`)
|
|
7
|
+
- Added container-based Playwright “computer use” and enabled computer-use toolkits for chatbot/worker/mailbot flows
|
|
8
|
+
- Removed `scrapybara` from the computers package dependencies
|
|
9
|
+
- OpenAI proxy client can now optionally log requests/responses with redacted authorization headers
|
|
10
|
+
|
|
11
|
+
## [0.17.1]
|
|
12
|
+
- Prevented worker toolkit lifecycle collisions when running alongside other toolkits by isolating the worker’s remote toolkit handling.
|
|
13
|
+
- Improved the error message when attempting to start a single-room agent more than once.
|
|
14
|
+
|
|
1
15
|
## [0.17.0]
|
|
2
16
|
- Added scheduled tasks support to the Python accounts client (create/update/list/delete scheduled tasks) with typed models
|
|
3
17
|
- Added mailbox CRUD helpers to the Python accounts client and improved error handling with typed HTTP exceptions (404/403/409/400/5xx)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.18.0
|
|
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.
|
|
15
|
+
Requires-Dist: meshagent-tools~=0.18.0
|
|
16
16
|
Dynamic: license-file
|
|
17
17
|
|
|
18
18
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.18.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.18.0
|
|
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.
|
|
15
|
+
Requires-Dist: meshagent-tools~=0.18.0
|
|
16
16
|
Dynamic: license-file
|
|
17
17
|
|
|
18
18
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.17.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|