@mastra/playground-ui 26.0.0-alpha.3 → 26.0.0-alpha.4
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.
- package/CHANGELOG.md +27 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
+
## 26.0.0-alpha.4
|
|
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/client-js@1.17.0-alpha.4
|
|
27
|
+
- @mastra/core@1.32.0-alpha.4
|
|
28
|
+
- @mastra/react@0.2.34-alpha.4
|
|
29
|
+
|
|
3
30
|
## 26.0.0-alpha.3
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/playground-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "26.0.0-alpha.
|
|
4
|
+
"version": "26.0.0-alpha.4",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -98,8 +98,8 @@
|
|
|
98
98
|
"lucide-react": "^0.474.0",
|
|
99
99
|
"react": ">=19.0.0",
|
|
100
100
|
"tailwindcss": "^4.0.0",
|
|
101
|
-
"@mastra/client-js": "^1.17.0-alpha.
|
|
102
|
-
"@mastra/react": "0.2.34-alpha.
|
|
101
|
+
"@mastra/client-js": "^1.17.0-alpha.4",
|
|
102
|
+
"@mastra/react": "0.2.34-alpha.4"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@storybook/addon-a11y": "^10.3.6",
|
|
@@ -134,9 +134,9 @@
|
|
|
134
134
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
135
135
|
"vitest": "4.1.5",
|
|
136
136
|
"@internal/lint": "0.0.90",
|
|
137
|
-
"@mastra/client-js": "^1.17.0-alpha.
|
|
138
|
-
"@mastra/
|
|
139
|
-
"@mastra/
|
|
137
|
+
"@mastra/client-js": "^1.17.0-alpha.4",
|
|
138
|
+
"@mastra/core": "1.32.0-alpha.4",
|
|
139
|
+
"@mastra/react": "0.2.34-alpha.4"
|
|
140
140
|
},
|
|
141
141
|
"homepage": "https://mastra.ai",
|
|
142
142
|
"repository": {
|