@mastra/mcp 0.10.12-alpha.1 → 0.10.12
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/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @mastra/mcp
|
|
2
2
|
|
|
3
|
+
## 0.10.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 895d3b2: Update the MCP SDK version and update elicitation to match new spec (reject becomes decline)
|
|
8
|
+
- e1aed55: Fixed an issue where keep-alive messages were interfering with endpoint messages on initial SSE connection
|
|
9
|
+
- 03997ae: Update peerdeps
|
|
10
|
+
- Updated dependencies [227c7e6]
|
|
11
|
+
- Updated dependencies [12cae67]
|
|
12
|
+
- Updated dependencies [fd3a3eb]
|
|
13
|
+
- Updated dependencies [6faaee5]
|
|
14
|
+
- Updated dependencies [4232b14]
|
|
15
|
+
- Updated dependencies [a89de7e]
|
|
16
|
+
- Updated dependencies [5a37d0c]
|
|
17
|
+
- Updated dependencies [4bde0cb]
|
|
18
|
+
- Updated dependencies [cf4f357]
|
|
19
|
+
- Updated dependencies [ad888a2]
|
|
20
|
+
- Updated dependencies [481751d]
|
|
21
|
+
- Updated dependencies [2454423]
|
|
22
|
+
- Updated dependencies [194e395]
|
|
23
|
+
- Updated dependencies [a722c0b]
|
|
24
|
+
- Updated dependencies [c30bca8]
|
|
25
|
+
- Updated dependencies [3b5fec7]
|
|
26
|
+
- Updated dependencies [a8f129d]
|
|
27
|
+
- @mastra/core@0.14.0
|
|
28
|
+
|
|
29
|
+
## 0.10.12-alpha.2
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 03997ae: Update peerdeps
|
|
34
|
+
- @mastra/core@0.14.0-alpha.7
|
|
35
|
+
|
|
3
36
|
## 0.10.12-alpha.1
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*|*MINGW*|*MSYS*)
|
|
6
|
+
if command -v cygpath > /dev/null 2>&1; then
|
|
7
|
+
basedir=`cygpath -w "$basedir"`
|
|
8
|
+
fi
|
|
9
|
+
;;
|
|
10
|
+
esac
|
|
11
|
+
|
|
12
|
+
if [ -z "$NODE_PATH" ]; then
|
|
13
|
+
export NODE_PATH="/home/runner/work/mastra/mastra/packages/cli/dist/node_modules:/home/runner/work/mastra/mastra/packages/cli/node_modules:/home/runner/work/mastra/mastra/packages/node_modules:/home/runner/work/mastra/mastra/node_modules:/home/runner/work/mastra/node_modules:/home/runner/work/node_modules:/home/runner/node_modules:/home/node_modules:/node_modules:/home/runner/work/mastra/mastra/node_modules/.pnpm/node_modules"
|
|
14
|
+
else
|
|
15
|
+
export NODE_PATH="/home/runner/work/mastra/mastra/packages/cli/dist/node_modules:/home/runner/work/mastra/mastra/packages/cli/node_modules:/home/runner/work/mastra/mastra/packages/node_modules:/home/runner/work/mastra/mastra/node_modules:/home/runner/work/mastra/node_modules:/home/runner/work/node_modules:/home/runner/node_modules:/home/node_modules:/node_modules:/home/runner/work/mastra/mastra/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
|
+
fi
|
|
17
|
+
if [ -x "$basedir/node" ]; then
|
|
18
|
+
exec "$basedir/node" "$basedir/../mastra/dist/index.js" "$@"
|
|
19
|
+
else
|
|
20
|
+
exec node "$basedir/../mastra/dist/index.js" "$@"
|
|
21
|
+
fi
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/mcp",
|
|
3
|
-
"version": "0.10.12
|
|
3
|
+
"version": "0.10.12",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"zod-from-json-schema": "^0.0.5"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@mastra/core": ">=0.10.2-0 <0.
|
|
34
|
+
"@mastra/core": ">=0.10.2-0 <0.15.0-0",
|
|
35
35
|
"zod": "^3.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"vitest": "^3.2.4",
|
|
52
52
|
"zod": "^3.25.67",
|
|
53
53
|
"zod-to-json-schema": "^3.24.5",
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"@internal/types-builder": "0.0.
|
|
54
|
+
"@internal/lint": "0.0.30",
|
|
55
|
+
"@mastra/core": "0.14.0",
|
|
56
|
+
"@internal/types-builder": "0.0.5"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "tsup --silent --config tsup.config.ts",
|