meshagent-mcp 0.6.11__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.
@@ -0,0 +1,181 @@
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
+
34
+ ## [0.20.5]
35
+ - Stability
36
+
37
+ ## [0.20.4]
38
+ - Stability
39
+
40
+ ## [0.20.3]
41
+ - Stability
42
+
43
+ ## [0.20.2]
44
+ - Stability
45
+
46
+ ## [0.20.1]
47
+ - Stability
48
+
49
+ ## [0.20.0]
50
+ - Breaking: mailbox create/update requests must now include a `public` flag (SDK defaults to `False` when omitted in method calls)
51
+ - Mailbox response models include a `public` field
52
+ - Breaking: service specs now require either `external` or `container` to be set
53
+ - External service specs allow omitting the base URL
54
+ - Service template variables include optional `annotations` metadata
55
+ - CLI mailbox commands support `--public` and include the `public` value in listings
56
+ - Mailbot whitelist parsing accepts comma-separated values
57
+ - Fixed JSON schema generation for database delete/search tools
58
+
59
+ ## [0.19.5]
60
+ - Stability
61
+
62
+ ## [0.19.4]
63
+ - Stability
64
+
65
+ ## [0.19.3]
66
+ - Stability
67
+
68
+ ## [0.19.2]
69
+ - Add boolean data type support plus `nullable`/`metadata` on schema types and generated JSON Schema.
70
+ - BREAKING: OpenAI proxy client creation now takes an optional `http_client` (request logging is configured via a separate logging client helper).
71
+ - Shell tool now reuses a long-lived container with a writable root filesystem, runs commands via `bash -lc`, and defaults to the `python:3.13` image.
72
+ - Add `log_llm_requests` support to enable OpenAI request/response logging.
73
+
74
+ ## [0.19.1]
75
+ - Add optional metadata to agent chat contexts and propagate it through message-stream LLM delegation, including recording thread participant lists
76
+ - Add an option for the mailbot CLI to delegate LLM interactions to a remote participant instead of using the local LLM adapter
77
+
78
+ ## [0.19.0]
79
+ - Add a reusable transcript logger/transcriber agent that writes conversation segments to transcript documents from live conversation events or user-turn completion
80
+ - Add optional voicebot transcription via a provided transcript path, wrapping the voice agent to persist user/assistant speech to a transcript document
81
+ - Refactor meeting transcription to use the shared transcript logger with per-participant sessions and improved session lifecycle cleanup
82
+ - Breaking change: starting a new email thread no longer accepts attachments; attachments are now handled by a dedicated “new thread with attachments” tool that downloads files from room storage before sending
83
+ - Simplify CLI agent room-rules loading and ensure worker message toolkits include inherited toolkits
84
+
85
+ ## [0.18.2]
86
+ - Stability
87
+
88
+ ## [0.18.1]
89
+ - Updated OpenAI Python SDK dependency to `openai~=2.14.0` (from `~2.6.0`).
90
+ - Breaking: OpenAI Responses adapter no longer sends tool definitions with requests, disabling tool/function calling via the Responses API.
91
+ - CLI deploy commands now report “Deployed service” on successful deploys.
92
+ - Shell toolkit/tool builders now pass the configured shell image via the `image` field.
93
+
94
+ ## [0.18.0]
95
+ - Added local TCP port-forwarding helper that bridges to the remote tunnel WebSocket
96
+ - Added a CLI `port forward` command to expose container ports locally
97
+ - Added `writable_root_fs` support when running containers
98
+ - Added `host_port` support for service port specs
99
+ - Added `ApiScope.tunnels` support in participant tokens (including `agent_default(tunnels=...)`)
100
+ - Added container-based Playwright “computer use” and enabled computer-use toolkits for chatbot/worker/mailbot flows
101
+ - Removed `scrapybara` from the computers package dependencies
102
+ - OpenAI proxy client can now optionally log requests/responses with redacted authorization headers
103
+
104
+ ## [0.17.1]
105
+ - Prevented worker toolkit lifecycle collisions when running alongside other toolkits by isolating the worker’s remote toolkit handling.
106
+ - Improved the error message when attempting to start a single-room agent more than once.
107
+
108
+ ## [0.17.0]
109
+ - Added scheduled tasks support to the Python accounts client (create/update/list/delete scheduled tasks) with typed models
110
+ - Added mailbox CRUD helpers to the Python accounts client and improved error handling with typed HTTP exceptions (404/403/409/400/5xx)
111
+ - Added `RequiredTable` requirement type plus helper to create required tables, indexes, and optimize them automatically
112
+ - Added database namespace support for database toolkit operations (inspect/search/insert/update/delete in a namespace)
113
+ - Enhanced worker and mail agents (per-message tool selection, optional remote toolkit exposure for queue task submission, reply-all/cc support)
114
+ - Updated Python dependency: `supabase-auth` from `~2.12.3` to `~2.22.3`
115
+
116
+ ## [0.16.0]
117
+ - Add optional `namespace` support across database client operations (list/inspect/create/drop/index/etc.) to target namespaced tables
118
+ - Update dependencies `livekit-api` to `~1.1` (from `>=1.0`) and `livekit-agents`/`livekit-plugins-openai`/`livekit-plugins-silero`/`livekit-plugins-turn-detector` to `~1.3` (from `~1.2`)
119
+
120
+ ## [0.15.0]
121
+ - Added new UI schema widgets for `tabs`/`tab` (including initial tab selection and active background styling) plus a `visible` boolean widget property for conditional rendering.
122
+ - Updated Python LiveKit integration dependencies to include `livekit==1.0.20`.
123
+
124
+ ## [0.14.0]
125
+ - Breaking change: toolkit extension hooks were simplified to a synchronous `get_toolkit_builders()` API and tool selection now uses per-toolkit configuration objects (not just tool names)
126
+ - `LLMTaskRunner` now supports per-client and per-room rules, plus dynamically injected required toolkits at call time
127
+ - `TaskRunner.ask` now supports optional binary attachments; `LLMTaskRunner` can unpack tar attachments and pass images/files into the LLM conversation context
128
+ - `AgentsClient.ask` now returns `TextResponse` when the agent responds with plain text (instead of always treating answers as JSON)
129
+ - Added a CLI `task-runner` command to run/join LLM task runners with configurable rules, schemas, toolkits, and optional remote LLM delegation
130
+
131
+ ## [0.13.0]
132
+ - Added `initial_json` and explicit schema support when opening MeshDocuments, enabling schema-first document initialization
133
+ - Added binary attachment support when invoking agent tools so tool calls can include raw payload data
134
+ - Breaking change: toolkit construction is now async and receives the active room client, enabling toolkits that introspect room state during build
135
+ - Added database schema inspection and JSON Schema mappings for data types to support tool input validation and generation
136
+ - Introduced database toolkits (list/inspect/search/insert/update/delete) and integrated optional per-table enablement into the chatbot/mailbot/helpers CLI flows
137
+
138
+ ## [0.12.0]
139
+ - Reduce worker-queue logging verbosity to avoid logging full message payloads
140
+
141
+ ## [0.11.0]
142
+ - Stability
143
+
144
+ ## [0.10.1]
145
+ - Stability
146
+
147
+ ## [0.10.0]
148
+ - Stability
149
+
150
+ ## [0.9.3]
151
+ - Stability
152
+
153
+ ## [0.9.2]
154
+ - Stability
155
+
156
+ ## [0.9.1]
157
+ - Stability
158
+
159
+ ## [0.9.0]
160
+ - Stability
161
+
162
+ ## [0.8.4]
163
+ - Stability
164
+
165
+ ## [0.8.3]
166
+ - Stability
167
+
168
+ ## [0.8.2]
169
+ - Stability
170
+
171
+ ## [0.8.1]
172
+ - Stability
173
+
174
+ ## [0.8.0]
175
+ - Stability
176
+
177
+ ## [0.7.2]
178
+ - Stability
179
+
180
+ ## [0.7.1]
181
+ - Stability
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-mcp
3
- Version: 0.6.11
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.6.11
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.6.11
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.6.11
15
+ Requires-Dist: meshagent-tools~=0.23.0
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.6.11
4
+ meshagent-tools~=0.23.0
@@ -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.6.11"
15
+ "meshagent-tools~=0.23.0"
16
16
  ]
17
17
  dynamic = ["version", "readme"]
18
18
 
@@ -1,217 +0,0 @@
1
- ## [0.6.11]
2
- - Stability
3
-
4
- ## [0.6.10]
5
- - Stability
6
-
7
- ## [0.6.9]
8
- - Stability
9
-
10
- ## [0.6.8]
11
- - Stability
12
-
13
- ## [0.6.7]
14
- - Stability
15
-
16
- ## [0.6.6]
17
- - Stability
18
-
19
- ## [0.6.5]
20
- - Stability
21
-
22
- ## [0.6.4]
23
- - Stability
24
-
25
- ## [0.6.3]
26
- - Stability
27
-
28
- ## [0.6.2]
29
- - Stability
30
-
31
- ## [0.6.1]
32
- - Stability
33
-
34
- ## [0.6.0]
35
- - Stability
36
-
37
- ## [0.5.19]
38
- - Stability
39
-
40
- ## [0.5.18]
41
- - Stability
42
-
43
- ## [0.5.17]
44
- - Stability
45
-
46
- ## [0.5.16]
47
- - Stability
48
-
49
- ## [0.5.15]
50
- - Stability
51
-
52
- ## [0.5.14]
53
- - Stability
54
-
55
- ## [0.5.13]
56
- - Stability
57
-
58
- ## [0.5.12]
59
- - Stability
60
-
61
- ## [0.5.8]
62
- - Stability
63
-
64
- ## [0.5.7]
65
- - Stability
66
-
67
- ## [0.5.6]
68
- - Stability
69
-
70
- ## [0.5.5]
71
- - Stability
72
-
73
- ## [0.5.4]
74
- - Stability
75
-
76
- ## [0.5.3]
77
- - Stability
78
-
79
- ## [0.5.2]
80
- - Stability
81
-
82
- ## [0.5.1]
83
- - Stability
84
-
85
- ## [0.5.0]
86
- - Stability
87
-
88
- ## [0.4.3]
89
- - Stability
90
-
91
- ## [0.4.2]
92
- - Stability
93
-
94
- ## [0.4.1]
95
- - Stability
96
-
97
- ## [0.4.0]
98
- - Stability
99
-
100
- ## [0.3.1]
101
- - Stability
102
-
103
- ## [0.3.0]
104
- - Stability
105
-
106
- ## [0.2.1]
107
- - Stability
108
-
109
- ## [0.2.0]
110
- - Stability
111
-
112
- ## [0.1.0]
113
- - Stability
114
-
115
- ## [0.0.39]
116
- - Stability
117
-
118
- ## [0.0.38]
119
- - Stability
120
-
121
- ## [0.0.37]
122
- - Stability
123
-
124
- ## [0.0.36]
125
- - Stability
126
-
127
- ## [0.0.35]
128
- - Stability
129
-
130
- ## [0.0.34]
131
- - Stability
132
-
133
- ## [0.0.33]
134
- - Stability
135
-
136
- ## [0.0.32]
137
- - Stability
138
-
139
- ## [0.0.31]
140
- - Stability
141
-
142
- ## [0.0.31]
143
- - Stability
144
-
145
- ## [0.0.29]
146
- - Stability
147
-
148
- ## [0.0.28]
149
- - Stability
150
-
151
- ## [0.0.27]
152
- - Stability
153
-
154
- ## [0.0.26]
155
- - Stability
156
-
157
- ## [0.0.25]
158
- - Stability
159
-
160
- ## [0.0.24]
161
- - Stability
162
-
163
- ## [0.0.23]
164
- - Stability
165
-
166
- ## [0.0.22]
167
- - Stability
168
-
169
- ## [0.0.21]
170
- - Stability
171
-
172
- ## [0.0.20]
173
- - Stability
174
-
175
- ## [0.0.19]
176
- - Stability
177
-
178
- ## [0.0.18]
179
- - Stability
180
-
181
- ## [0.0.17]
182
- - Stability
183
- - Meshagent cli
184
-
185
- ## [0.0.16]
186
- - Stability
187
-
188
- ## [0.0.15]
189
- - Stability
190
-
191
- ## [0.0.14]
192
- - Stability
193
-
194
- ## [0.0.11]
195
- - Stability
196
-
197
- ## [0.0.10]
198
- - Stability
199
-
200
- ## [0.0.9]
201
- - Stability
202
-
203
- ## [0.0.8]
204
- - Stability
205
-
206
- ## [0.0.7]
207
- - Added code editor agent
208
- - Fixes
209
-
210
- ## [0.0.6]
211
- - Fixes
212
-
213
- ## [0.0.5]
214
- - Fix chatbox initialization
215
-
216
- ## [0.0.4]
217
- - Streaming support
@@ -1 +0,0 @@
1
- __version__ = "0.6.11"
File without changes
File without changes
File without changes