@mastra/mcp-docs-server 0.13.12-alpha.3 → 0.13.12-alpha.5

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.
Files changed (27) hide show
  1. package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +24 -24
  2. package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +31 -31
  3. package/.docs/organized/changelogs/%40mastra%2Fcore.md +23 -23
  4. package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +41 -41
  5. package/.docs/organized/changelogs/%40mastra%2Ffirecrawl.md +23 -23
  6. package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +30 -30
  7. package/.docs/organized/changelogs/%40mastra%2Fmcp.md +24 -24
  8. package/.docs/organized/changelogs/%40mastra%2Fmemory.md +27 -27
  9. package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +27 -27
  10. package/.docs/organized/changelogs/%40mastra%2Frag.md +23 -23
  11. package/.docs/organized/changelogs/%40mastra%2Fserver.md +32 -32
  12. package/.docs/organized/changelogs/%40mastra%2Fvoice-google.md +24 -24
  13. package/.docs/organized/changelogs/create-mastra.md +3 -3
  14. package/.docs/organized/changelogs/mastra.md +30 -30
  15. package/.docs/organized/code-examples/agent.md +63 -2
  16. package/.docs/raw/deployment/server-deployment.mdx +57 -27
  17. package/.docs/raw/deployment/serverless-platforms/cloudflare-deployer.mdx +4 -7
  18. package/.docs/raw/frameworks/servers/express.mdx +135 -143
  19. package/.docs/raw/reference/agents/agent.mdx +1 -1
  20. package/.docs/raw/reference/agents/getDefaultVNextStreamOptions.mdx +1 -1
  21. package/.docs/raw/reference/agents/streamVNext.mdx +1 -1
  22. package/.docs/raw/reference/deployer/cloudflare.mdx +20 -131
  23. package/.docs/raw/reference/memory/Memory.mdx +1 -1
  24. package/.docs/raw/reference/voice/google-gemini-live.mdx +629 -0
  25. package/.docs/raw/voice/overview.mdx +21 -33
  26. package/.docs/raw/workflows/suspend-and-resume.mdx +2 -2
  27. package/package.json +4 -4
@@ -26,7 +26,7 @@ When running a workflow, its `status` can be one of the following:
26
26
 
27
27
  ## Suspending a workflow with `suspend()`
28
28
 
29
- When the state is `suspended`, you can identify any and all steps that have been suspended by looking at the `suspended` array of the workflow result output.
29
+ To pause execution at a specific step until user input is received, use the `⁠suspend` function to temporarily halt the workflow, allowing it to resume only when the necessary data is provided.
30
30
 
31
31
  ![Suspending a workflow with suspend()](/image/workflows/workflows-suspend-resume-suspend.jpg)
32
32
 
@@ -61,7 +61,7 @@ export const testWorkflow = createWorkflow({})
61
61
  .commit();
62
62
  ```
63
63
 
64
- > See [Define Suspendable workflow](/examples/workflows/human-in-the-loop#define-suspendable-workflow) for more information.
64
+ > For more details, check out the [Suspend workflow example](/examples/workflows/human-in-the-loop#suspend-workflow).
65
65
 
66
66
  ### Identifying suspended steps
67
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mcp-docs-server",
3
- "version": "0.13.12-alpha.3",
3
+ "version": "0.13.12-alpha.5",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -32,8 +32,8 @@
32
32
  "uuid": "^11.1.0",
33
33
  "zod": "^3.25.67",
34
34
  "zod-to-json-schema": "^3.24.5",
35
- "@mastra/core": "0.14.0-alpha.3",
36
- "@mastra/mcp": "^0.10.12-alpha.0"
35
+ "@mastra/core": "0.14.0-alpha.5",
36
+ "@mastra/mcp": "^0.10.12-alpha.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@hono/node-server": "^1.17.1",
@@ -49,7 +49,7 @@
49
49
  "typescript": "^5.8.3",
50
50
  "vitest": "^3.2.4",
51
51
  "@internal/lint": "0.0.29",
52
- "@mastra/core": "0.14.0-alpha.3"
52
+ "@mastra/core": "0.14.0-alpha.5"
53
53
  },
54
54
  "scripts": {
55
55
  "prepare-docs": "cross-env PREPARE=true node dist/prepare-docs/prepare.js",