@mastra/mcp-docs-server 0.13.12-alpha.2 → 0.13.12-alpha.4
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/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +24 -24
- package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +34 -34
- package/.docs/organized/changelogs/%40mastra%2Fcore.md +29 -29
- package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +44 -44
- package/.docs/organized/changelogs/%40mastra%2Ffirecrawl.md +23 -23
- package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +33 -33
- package/.docs/organized/changelogs/%40mastra%2Fmcp.md +24 -24
- package/.docs/organized/changelogs/%40mastra%2Fmemory.md +27 -27
- package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +38 -38
- package/.docs/organized/changelogs/%40mastra%2Frag.md +23 -23
- package/.docs/organized/changelogs/%40mastra%2Fserver.md +34 -34
- package/.docs/organized/changelogs/%40mastra%2Fvoice-google.md +24 -24
- package/.docs/organized/changelogs/create-mastra.md +9 -9
- package/.docs/organized/changelogs/mastra.md +42 -42
- package/.docs/organized/code-examples/agent.md +75 -11
- package/.docs/raw/deployment/server-deployment.mdx +57 -27
- package/.docs/raw/deployment/serverless-platforms/cloudflare-deployer.mdx +4 -7
- package/.docs/raw/frameworks/servers/express.mdx +135 -143
- package/.docs/raw/reference/agents/agent.mdx +1 -1
- package/.docs/raw/reference/agents/getDefaultVNextStreamOptions.mdx +1 -1
- package/.docs/raw/reference/agents/streamVNext.mdx +1 -1
- package/.docs/raw/reference/deployer/cloudflare.mdx +20 -131
- package/.docs/raw/reference/memory/Memory.mdx +1 -1
- package/.docs/raw/reference/voice/google-gemini-live.mdx +629 -0
- package/.docs/raw/voice/overview.mdx +21 -33
- package/.docs/raw/workflows/suspend-and-resume.mdx +2 -2
- 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
|
-
|
|
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
|

|
|
32
32
|
|
|
@@ -61,7 +61,7 @@ export const testWorkflow = createWorkflow({})
|
|
|
61
61
|
.commit();
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
>
|
|
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
|
+
"version": "0.13.12-alpha.4",
|
|
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.
|
|
36
|
-
"@mastra/mcp": "^0.10.12-alpha.
|
|
35
|
+
"@mastra/core": "0.14.0-alpha.4",
|
|
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.
|
|
52
|
+
"@mastra/core": "0.14.0-alpha.4"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"prepare-docs": "cross-env PREPARE=true node dist/prepare-docs/prepare.js",
|