meshagent-mcp 0.24.6__tar.gz → 0.25.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,5 +1,19 @@
1
- ## [0.24.6]
2
- - Stability
1
+ ## [0.25.1]
2
+ - Added Anthropic web search and web fetch toolkits, including beta header injection and request middleware support.
3
+ - Added a container-based shell tool to run commands in persistent containers with configurable image, mounts, and environment.
4
+ - Expanded the web fetch tool to return text, JSON, or file responses with HTML-to-Markdown conversion and content-type handling.
5
+ - Breaking: CLI commands now reject OpenAI-only tool flags when using Claude models (image generation, local shell, apply patch, computer use).
6
+ - CLI MCP bridge adds streamable HTTP connections plus custom headers and secret-backed headers; OAuth2 secret set now accepts text/base64 input and identity-scoped secrets.
7
+ - Dependency updates: mcp to ~1.26.0; html-to-markdown to ~2.24.3.
8
+
9
+ ## [0.25.0]
10
+ - Added SQL column-schema parsing and CLI support for SQL-like `--columns` when creating tables or adding columns.
11
+ - Breaking: SQL query requests now use a single `params` map for typed bindings instead of `parameters`/`param_values`.
12
+ - Added `published`/`public` port fields in service specs for externally routed services.
13
+ - Secrets set now supports `for_identity` to set secrets on behalf of another identity.
14
+ - Added a Slack events HTTP bot package with dependencies including `pyjwt` 2.10.
15
+ - Breaking: the CLI `exec` command was removed.
16
+ - ThreadAdapter message writing now uses `write_text_message` and accepts participant name strings.
3
17
 
4
18
  ## [0.24.5]
5
19
  - Stability
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-mcp
3
- Version: 0.24.6
3
+ Version: 0.25.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
@@ -11,8 +11,8 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
- Requires-Dist: mcp~=1.9
15
- Requires-Dist: meshagent-tools~=0.24.6
14
+ Requires-Dist: mcp~=1.26.0
15
+ Requires-Dist: meshagent-tools~=0.25.1
16
16
  Dynamic: license-file
17
17
 
18
18
  # [Meshagent](https://www.meshagent.com)
@@ -0,0 +1 @@
1
+ __version__ = "0.25.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-mcp
3
- Version: 0.24.6
3
+ Version: 0.25.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
@@ -11,8 +11,8 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
- Requires-Dist: mcp~=1.9
15
- Requires-Dist: meshagent-tools~=0.24.6
14
+ Requires-Dist: mcp~=1.26.0
15
+ Requires-Dist: meshagent-tools~=0.25.1
16
16
  Dynamic: license-file
17
17
 
18
18
  # [Meshagent](https://www.meshagent.com)
@@ -0,0 +1,4 @@
1
+ pytest~=8.4
2
+ pytest-asyncio~=0.26
3
+ mcp~=1.26.0
4
+ meshagent-tools~=0.25.1
@@ -11,8 +11,8 @@ keywords = []
11
11
  dependencies = [
12
12
  "pytest~=8.4",
13
13
  "pytest-asyncio~=0.26",
14
- "mcp~=1.9",
15
- "meshagent-tools~=0.24.6"
14
+ "mcp~=1.26.0",
15
+ "meshagent-tools~=0.25.1"
16
16
  ]
17
17
  dynamic = ["version", "readme"]
18
18
 
@@ -1 +0,0 @@
1
- __version__ = "0.24.6"
@@ -1,4 +0,0 @@
1
- pytest~=8.4
2
- pytest-asyncio~=0.26
3
- mcp~=1.9
4
- meshagent-tools~=0.24.6
File without changes
File without changes
File without changes