@mastra/mcp 0.12.1-alpha.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,16 @@
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
+
3
14
  ## 0.12.1-alpha.0
4
15
 
5
16
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -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) {