meshagent-mcp 0.20.5__tar.gz → 0.23.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.20.5 → meshagent_mcp-0.23.0}/CHANGELOG.md +33 -0
- {meshagent_mcp-0.20.5/meshagent_mcp.egg-info → meshagent_mcp-0.23.0}/PKG-INFO +2 -2
- meshagent_mcp-0.23.0/meshagent/mcp/version.py +1 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0/meshagent_mcp.egg-info}/PKG-INFO +2 -2
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent_mcp.egg-info/requires.txt +1 -1
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/pyproject.toml +1 -1
- meshagent_mcp-0.20.5/meshagent/mcp/version.py +0 -1
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/LICENSE +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/MANIFEST.in +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/README.md +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent/mcp/__init__.py +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent/mcp/cleanup.py +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent/mcp/toolkit.py +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent_mcp.egg-info/SOURCES.txt +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent_mcp.egg-info/dependency_links.txt +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/meshagent_mcp.egg-info/top_level.txt +0 -0
- {meshagent_mcp-0.20.5 → meshagent_mcp-0.23.0}/setup.cfg +0 -0
|
@@ -1,3 +1,36 @@
|
|
|
1
|
+
## [0.23.0]
|
|
2
|
+
- Breaking: service template APIs now expect YAML template strings and ServiceTemplateSpec.to_service_spec() no longer accepts values; use ServiceTemplateSpec.from_yaml(..., values) for Jinja rendering
|
|
3
|
+
- Added Jinja/YAML template parsing and ServiceSpec.from_yaml for loading service specs from YAML
|
|
4
|
+
- Added file storage mounts and token role fields in service/container specs
|
|
5
|
+
- Added render_template client method plus new User/UserRoomGrant models and a none project role
|
|
6
|
+
|
|
7
|
+
## [0.22.2]
|
|
8
|
+
- Stability
|
|
9
|
+
|
|
10
|
+
## [0.22.1]
|
|
11
|
+
- Stability
|
|
12
|
+
|
|
13
|
+
## [0.22.0]
|
|
14
|
+
- Added meshagent-anthropic with Anthropic Messages adapter, MCP connector toolkit support, and an OpenAI-Responses-compatible stream adapter (depends on anthropic>=0.25,<1.0).
|
|
15
|
+
- Breaking: agent naming now derives from participant name (Agent.name deprecated; TaskRunner/LLMRunner/Worker/VoiceBot constructors no longer require name; Voicebot alias removed; MailWorker renamed to MailBot with queue default).
|
|
16
|
+
- Breaking: SecretsClient methods renamed to list_secrets/delete_secret and expanded with request_secret/provide_secret/get_secret/set_secret/delete_requested_secret flows.
|
|
17
|
+
- Breaking: Meshagent client create_service/update_service now return ServiceSpec objects; service-template create/update helpers added for project and room services.
|
|
18
|
+
- OpenAI Responses adapter adds context window tracking, compaction via responses.compact, input-token counting, usage storage, max_output_tokens control, and shell tool env injection.
|
|
19
|
+
- RoomClient can auto-initialize from MESHAGENT_ROOM/MESHAGENT_TOKEN; websocket URL helper added.
|
|
20
|
+
- Schema documents add grep/tag queries and ChatBotClient; chat reply routing now targets the requesting participant reliably.
|
|
21
|
+
- Database toolkit now expects update values as a list of column updates and defaults to advanced search/delete tools.
|
|
22
|
+
- Dependency addition: prompt-toolkit~=3.0.52 added to CLI 'all' extras.
|
|
23
|
+
|
|
24
|
+
## [0.21.0]
|
|
25
|
+
- Breaking: the Image model no longer exposes manifest/template metadata in image listings.
|
|
26
|
+
- Add token-backed environment variables in service specs so Python clients can inject participant tokens instead of static values.
|
|
27
|
+
- Add `on_demand` and `writable_root_fs` flags on container specs to control per-request services and filesystem mutability.
|
|
28
|
+
- Breaking: the agent schedule annotation key is corrected to `meshagent.agent.schedule`; update any existing annotations using the old spelling.
|
|
29
|
+
- Add a Shell agent type and a shell command annotation for service metadata.
|
|
30
|
+
|
|
31
|
+
## [0.20.6]
|
|
32
|
+
- Stability
|
|
33
|
+
|
|
1
34
|
## [0.20.5]
|
|
2
35
|
- Stability
|
|
3
36
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.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.23.0
|
|
16
16
|
Dynamic: license-file
|
|
17
17
|
|
|
18
18
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.23.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.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.23.0
|
|
16
16
|
Dynamic: license-file
|
|
17
17
|
|
|
18
18
|
# [Meshagent](https://www.meshagent.com)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.20.5"
|
|
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
|