@mastra/mcp 0.12.0 → 0.13.0-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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @mastra/mcp
2
2
 
3
+ ## 0.13.0-alpha.1
4
+
5
+ ### Minor Changes
6
+
7
+ - Fully deprecated createRun (now throws an error) in favour of createRunAsync ([#7897](https://github.com/mastra-ai/mastra/pull/7897))
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b)]:
12
+ - @mastra/core@0.17.0-alpha.4
13
+
14
+ ## 0.12.1-alpha.0
15
+
16
+ ### Patch Changes
17
+
18
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
19
+
20
+ - Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
21
+ - @mastra/core@0.17.0-alpha.3
22
+
3
23
  ## 0.12.0
4
24
 
5
25
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -1084,7 +1084,7 @@ var MCPConfiguration = class extends MCPClient {
1084
1084
  }
1085
1085
  };
1086
1086
 
1087
- // ../../node_modules/.pnpm/hono@4.9.6/node_modules/hono/dist/utils/stream.js
1087
+ // ../../node_modules/.pnpm/hono@4.9.7/node_modules/hono/dist/utils/stream.js
1088
1088
  var StreamingApi = class {
1089
1089
  writer;
1090
1090
  encoder;
@@ -1151,7 +1151,7 @@ var StreamingApi = class {
1151
1151
  }
1152
1152
  };
1153
1153
 
1154
- // ../../node_modules/.pnpm/hono@4.9.6/node_modules/hono/dist/helper/streaming/utils.js
1154
+ // ../../node_modules/.pnpm/hono@4.9.7/node_modules/hono/dist/helper/streaming/utils.js
1155
1155
  var isOldBunVersion = () => {
1156
1156
  const version = typeof Bun !== "undefined" ? Bun.version : void 0;
1157
1157
  if (version === void 0) {
@@ -1162,7 +1162,7 @@ var isOldBunVersion = () => {
1162
1162
  return result;
1163
1163
  };
1164
1164
 
1165
- // ../../node_modules/.pnpm/hono@4.9.6/node_modules/hono/dist/utils/html.js
1165
+ // ../../node_modules/.pnpm/hono@4.9.7/node_modules/hono/dist/utils/html.js
1166
1166
  var HtmlEscapedCallbackPhase = {
1167
1167
  Stringify: 1};
1168
1168
  var resolveCallback = async (str, phase, preserveCallbacks, context, buffer) => {
@@ -1193,7 +1193,7 @@ var resolveCallback = async (str, phase, preserveCallbacks, context, buffer) =>
1193
1193
  }
1194
1194
  };
1195
1195
 
1196
- // ../../node_modules/.pnpm/hono@4.9.6/node_modules/hono/dist/helper/streaming/sse.js
1196
+ // ../../node_modules/.pnpm/hono@4.9.7/node_modules/hono/dist/helper/streaming/sse.js
1197
1197
  var SSEStreamingApi = class extends StreamingApi {
1198
1198
  constructor(writable, readable) {
1199
1199
  super(writable, readable);
@@ -1988,7 +1988,7 @@ Provided arguments: ${JSON.stringify(request.params.arguments, null, 2)}`
1988
1988
  context
1989
1989
  );
1990
1990
  try {
1991
- const run2 = workflow.createRun({ runId: runtimeContext?.get("runId") });
1991
+ const run2 = await workflow.createRunAsync({ runId: runtimeContext?.get("runId") });
1992
1992
  const response = await run2.start({ inputData: context, runtimeContext, tracingContext });
1993
1993
  return response;
1994
1994
  } catch (error) {