@mastra/editor 0.7.22 → 0.7.23-alpha.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @mastra/editor
2
2
 
3
+ ## 0.7.23-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Added MCP Apps extension support (SEP-1865). MCPServer now accepts an `appResources` config to register interactive `ui://` HTML resources. MCPClient preserves full tool `_meta` (including `ui.resourceUri`) when converting MCP tools to Mastra tools. Both advertise the `io.modelcontextprotocol/ui` extension capability. ([#16004](https://github.com/mastra-ai/mastra/pull/16004))
8
+
9
+ **Example — MCPServer with app resources:**
10
+
11
+ ```typescript
12
+ const server = new MCPServer({
13
+ name: 'my-server',
14
+ tools: { myTool },
15
+ appResources: {
16
+ dashboard: {
17
+ name: 'Dashboard',
18
+ description: 'Interactive dashboard UI',
19
+ html: '<html>...</html>',
20
+ },
21
+ },
22
+ });
23
+ ```
24
+
25
+ - Updated dependencies [[`7679a63`](https://github.com/mastra-ai/mastra/commit/7679a634eae8e8ca459fd87538fdf72b4389b07f), [`7679a63`](https://github.com/mastra-ai/mastra/commit/7679a634eae8e8ca459fd87538fdf72b4389b07f), [`1d64a76`](https://github.com/mastra-ai/mastra/commit/1d64a765861a0772ea187bab76e5ed37bf82d042), [`7679a63`](https://github.com/mastra-ai/mastra/commit/7679a634eae8e8ca459fd87538fdf72b4389b07f), [`a0d9b6d`](https://github.com/mastra-ai/mastra/commit/a0d9b6d6b810aeaa9e177a0dcc99a4402e609634)]:
26
+ - @mastra/core@1.32.0-alpha.4
27
+ - @mastra/mcp@1.7.0-alpha.2
28
+ - @mastra/memory@1.17.5-alpha.1
29
+
30
+ ## 0.7.23-alpha.0
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [[`c05c9a1`](https://github.com/mastra-ai/mastra/commit/c05c9a13230988cef6d438a62f37760f31927bc7), [`e24aacb`](https://github.com/mastra-ai/mastra/commit/e24aacba07bd66f5d95b636dc24016fca26b52cf), [`c721164`](https://github.com/mastra-ai/mastra/commit/c7211643f7ac861f83b19a3757cc921487fc9d75), [`1b55954`](https://github.com/mastra-ai/mastra/commit/1b559541c1e08a10e49d01ffc51a634dfc37a286), [`319a94c`](https://github.com/mastra-ai/mastra/commit/319a94c6bf1f8f4ac8249a40b0c99b9c1e0d4598), [`5adc55e`](https://github.com/mastra-ai/mastra/commit/5adc55e63407be8ee977914957d68bcc2a075ceb), [`70017d7`](https://github.com/mastra-ai/mastra/commit/70017d72ab741b5d7040e2a15c251a317782e39e), [`e4942bc`](https://github.com/mastra-ai/mastra/commit/e4942bc7fdc903572f7d84f26d5e15f9d39c763d)]:
35
+ - @mastra/core@1.32.0-alpha.1
36
+ - @mastra/memory@1.17.5-alpha.0
37
+
3
38
  ## 0.7.22
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/editor",
3
- "version": "0.7.22",
3
+ "version": "0.7.23-alpha.1",
4
4
  "description": "Mastra Editor for agent management and instantiation",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -65,7 +65,7 @@
65
65
  "@arcadeai/arcadejs": "^2.3.0",
66
66
  "@composio/core": "^0.6.5",
67
67
  "@composio/mastra": "^0.6.5",
68
- "@mastra/memory": "1.17.4",
68
+ "@mastra/memory": "1.17.5-alpha.1",
69
69
  "@mastra/schema-compat": "1.2.9"
70
70
  },
71
71
  "devDependencies": {
@@ -75,13 +75,13 @@
75
75
  "typescript": "^6.0.3",
76
76
  "vitest": "4.1.5",
77
77
  "zod": "^3.25.76",
78
- "@internal/ai-sdk-v4": "0.0.36",
79
- "@internal/ai-sdk-v5": "0.0.36",
80
- "@internal/ai-v6": "0.0.36",
81
- "@mastra/libsql": "1.9.0",
82
- "@mastra/core": "1.30.0",
83
- "@mastra/hono": "1.4.10",
84
- "@mastra/mcp": "1.6.0"
78
+ "@internal/ai-v6": "0.0.37",
79
+ "@mastra/core": "1.32.0-alpha.4",
80
+ "@internal/ai-sdk-v4": "0.0.37",
81
+ "@mastra/hono": "1.4.12-alpha.4",
82
+ "@mastra/libsql": "1.10.0-alpha.1",
83
+ "@internal/ai-sdk-v5": "0.0.37",
84
+ "@mastra/mcp": "1.7.0-alpha.2"
85
85
  },
86
86
  "peerDependencies": {
87
87
  "@mastra/core": ">=1.7.1-0 <2.0.0-0",