@mastra/mcp 0.13.5 → 0.14.0
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 +26 -0
- package/dist/client/client.d.ts +90 -6
- package/dist/client/client.d.ts.map +1 -1
- package/dist/client/configuration.d.ts +17 -6
- package/dist/client/configuration.d.ts.map +1 -1
- package/dist/index.cjs +21 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +21 -11
- package/dist/index.js.map +1 -1
- package/dist/server/server.d.ts +1 -1
- package/package.json +7 -9
package/dist/server/server.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ export declare class MCPServer extends MCPServerBase {
|
|
|
157
157
|
* name: 'Helper',
|
|
158
158
|
* description: 'A helpful assistant',
|
|
159
159
|
* instructions: 'You are helpful.',
|
|
160
|
-
* model: openai
|
|
160
|
+
* model: 'openai/gpt-4o-mini',
|
|
161
161
|
* });
|
|
162
162
|
*
|
|
163
163
|
* const server = new MCPServer({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,18 +36,16 @@
|
|
|
36
36
|
"zod-from-json-schema-v3": "npm:zod-from-json-schema@^0.0.5"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@mastra/core": ">=0.20.1-0 <0.
|
|
39
|
+
"@mastra/core": ">=0.20.1-0 <0.23.0-0",
|
|
40
40
|
"zod": "^3.25.0 || ^4.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@ai-sdk/anthropic": "^1.2.12",
|
|
44
|
-
"@ai-sdk/openai": "^1.3.24",
|
|
45
43
|
"@hono/node-server": "^1.19.5",
|
|
46
44
|
"@mendable/firecrawl-js": "^1.29.3",
|
|
47
45
|
"@microsoft/api-extractor": "^7.52.8",
|
|
48
46
|
"@types/node": "^20.19.0",
|
|
49
|
-
"ai": "
|
|
50
|
-
"eslint": "^9.
|
|
47
|
+
"ai": "^5.0.60",
|
|
48
|
+
"eslint": "^9.37.0",
|
|
51
49
|
"hono-mcp-server-sse-transport": "0.0.7",
|
|
52
50
|
"hono": "^4.9.7",
|
|
53
51
|
"tsup": "^8.5.0",
|
|
@@ -56,9 +54,9 @@
|
|
|
56
54
|
"vitest": "^3.2.4",
|
|
57
55
|
"zod": "^3.25.76",
|
|
58
56
|
"zod-to-json-schema": "^3.24.6",
|
|
59
|
-
"@internal/lint": "0.0.
|
|
60
|
-
"@internal/types-builder": "0.0.
|
|
61
|
-
"@mastra/core": "0.
|
|
57
|
+
"@internal/lint": "0.0.51",
|
|
58
|
+
"@internal/types-builder": "0.0.26",
|
|
59
|
+
"@mastra/core": "0.22.0"
|
|
62
60
|
},
|
|
63
61
|
"homepage": "https://mastra.ai",
|
|
64
62
|
"repository": {
|