@mastra/mcp-docs-server 1.2.23 → 1.2.24-alpha.3
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/docs/deployment/workers.md +3 -0
- package/.docs/docs/harness/durable-agents.md +2 -0
- package/.docs/docs/server/server-adapters.md +106 -2
- package/.docs/docs/storage.md +1 -0
- package/.docs/docs/workflows/control-flow.md +16 -0
- package/.docs/docs/workflows/overview.md +2 -0
- package/.docs/integrations/databases/mysql.md +147 -0
- package/.docs/integrations/deploy/kubernetes-helm.md +148 -1
- package/.docs/integrations/frameworks/astro.md +3 -3
- package/.docs/integrations/frameworks/electron.md +3 -3
- package/.docs/integrations/frameworks/express.md +3 -3
- package/.docs/integrations/frameworks/hono.md +3 -3
- package/.docs/integrations/frameworks/nestjs.md +3 -3
- package/.docs/integrations/frameworks/next-js.md +89 -10
- package/.docs/integrations/frameworks/nuxt.md +3 -3
- package/.docs/integrations/frameworks/sveltekit.md +3 -3
- package/.docs/integrations/frameworks/tanstack-start.md +167 -0
- package/.docs/integrations/frameworks/vite-react.md +3 -3
- package/.docs/integrations/voice/gladia.md +126 -0
- package/.docs/integrations/voice/modelslab.md +138 -0
- package/.docs/integrations.md +4 -0
- package/.docs/models/gateways/netlify.md +1 -2
- package/.docs/models/providers/empiriolabs.md +2 -1
- package/.docs/models/providers/kilo.md +7 -7
- package/.docs/reference/datasets/updateExperiment.md +48 -0
- package/.docs/reference/index.md +3 -0
- package/.docs/reference/observability/tracing/interfaces.md +31 -1
- package/.docs/reference/processors/processor-interface.md +52 -0
- package/.docs/reference/server/next-adapter.md +93 -0
- package/.docs/reference/server/routes.md +1 -0
- package/.docs/reference/server/tanstack-start-adapter.md +105 -0
- package/.docs/reference/voice/overview.md +25 -0
- package/.docs/reference/workflows/dynamic-workflow-definition.md +25 -0
- package/.docs/reference/workflows/workflow-methods/branch.md +2 -0
- package/.docs/reference/workflows/workflow-methods/dountil.md +2 -0
- package/.docs/reference/workflows/workflow-methods/dowhile.md +2 -0
- package/.docs/reference/workflows/workflow-methods/foreach.md +1 -1
- package/.docs/reference/workflows/workflow-methods/map.md +2 -0
- package/.docs/reference/workflows/workflow-methods/parallel.md +2 -0
- package/.docs/reference/workflows/workflow-methods/sleep.md +2 -0
- package/.docs/reference/workflows/workflow-methods/sleepUntil.md +2 -0
- package/.docs/reference/workflows/workflow.md +2 -0
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/mcp-docs-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.24-alpha.3",
|
|
4
4
|
"description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"jsdom": "^26.1.0",
|
|
28
28
|
"local-pkg": "^1.1.2",
|
|
29
29
|
"zod": "^4.4.3",
|
|
30
|
-
"@mastra/core": "1.
|
|
30
|
+
"@mastra/core": "1.65.0-alpha.1",
|
|
31
31
|
"@mastra/mcp": "^1.17.3"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"tsx": "^4.23.1",
|
|
45
45
|
"typescript": "^7.0.2",
|
|
46
46
|
"vitest": "4.1.10",
|
|
47
|
-
"@
|
|
47
|
+
"@internal/lint": "0.0.130",
|
|
48
48
|
"@internal/types-builder": "0.0.105",
|
|
49
|
-
"@
|
|
49
|
+
"@mastra/core": "1.65.0-alpha.1"
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://mastra.ai",
|
|
52
52
|
"repository": {
|