@mastra/mcp 0.10.10-alpha.1 → 0.10.10

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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @mastra/mcp
2
2
 
3
+ ## 0.10.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 9e792ef: Expose authProvider option for HTTP-based MCP servers to enable OAuth authentication with automatic token refresh. The authProvider is automatically passed to both Streamable HTTP and SSE transports.
8
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
9
+ - Updated dependencies [cb36de0]
10
+ - Updated dependencies [d0496e6]
11
+ - Updated dependencies [a82b851]
12
+ - Updated dependencies [ea0c5f2]
13
+ - Updated dependencies [41a0a0e]
14
+ - Updated dependencies [2871020]
15
+ - Updated dependencies [94f4812]
16
+ - Updated dependencies [e202b82]
17
+ - Updated dependencies [e00f6a0]
18
+ - Updated dependencies [4a406ec]
19
+ - Updated dependencies [b0e43c1]
20
+ - Updated dependencies [5d377e5]
21
+ - Updated dependencies [1fb812e]
22
+ - Updated dependencies [35c5798]
23
+ - @mastra/core@0.13.0
24
+
3
25
  ## 0.10.10-alpha.1
4
26
 
5
27
  ### 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.10-alpha.1",
3
+ "version": "0.10.10",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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
- "@internal/types-builder": "0.0.1",
55
- "@internal/lint": "0.0.26",
56
- "@mastra/core": "0.13.0-alpha.3"
54
+ "@internal/types-builder": "0.0.2",
55
+ "@mastra/core": "0.13.0",
56
+ "@internal/lint": "0.0.27"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "tsup --silent --config tsup.config.ts",