@mastra/mcp-docs-server 1.2.8-alpha.23 → 1.2.8-alpha.25

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.
@@ -88,6 +88,8 @@ Start Mastra's development server:
88
88
  npx mastra dev
89
89
  ```
90
90
 
91
+ For Agent Builder development, you can also use `mastra factory dev`, which uses the same dev runtime and flags as `mastra dev` and writes to the same `.mastra/output` directory. Both commands share a dev lock and can't run simultaneously in the same project. See the [CLI reference](https://mastra.ai/reference/cli/mastra) for details.
92
+
91
93
  The Agent Builder is mounted at `http://localhost:4111/agent-builder`.
92
94
 
93
95
  ## Disabling the Builder
@@ -101,6 +101,18 @@ mastra dev
101
101
 
102
102
  These are forwarded to the Mastra model router and will work with any `"openai/..."` or `"anthropic/..."` model selections.
103
103
 
104
+ ## `mastra factory dev`
105
+
106
+ Starts a development server for [Agent Builder](https://mastra.ai/docs/agent-builder/overview) development. It uses the same dev runtime and flags as [`mastra dev`](#mastra-dev) and writes to the same `.mastra/output` directory.
107
+
108
+ ```bash
109
+ npx mastra factory dev
110
+ ```
111
+
112
+ Both commands share the same dev lock, so `mastra dev` and `mastra factory dev` can't run simultaneously in the same project. If one is already running, the other exits with a duplicate development server error.
113
+
114
+ Use `mastra factory dev` when developing Agent Builder features. It accepts the same flags as [`mastra dev`](#mastra-dev), including `--https`, `--inspect`, `--inspect-brk`, `--custom-args`, and `--request-context-presets`.
115
+
104
116
  ## `mastra build`
105
117
 
106
118
  The `mastra build` command bundles your Mastra project into a production-ready Hono server. [Hono](https://hono.dev/) is a lightweight, type-safe web framework that makes it straightforward to deploy Mastra agents as HTTP endpoints with middleware support.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.2.8-alpha.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`d7385ad`](https://github.com/mastra-ai/mastra/commit/d7385ad9e88f9e4f33d15c0ec0bfebedde0cbc2e), [`3d6e539`](https://github.com/mastra-ai/mastra/commit/3d6e539272eb2ea0407034605ee1906b3be06b39), [`35865a5`](https://github.com/mastra-ai/mastra/commit/35865a53e194aa9634d6a70a97010e7a6b9d58b1), [`70687f7`](https://github.com/mastra-ai/mastra/commit/70687f7e495a322a02070b4a67cb0c77a5ca91ec), [`3d6e539`](https://github.com/mastra-ai/mastra/commit/3d6e539272eb2ea0407034605ee1906b3be06b39)]:
8
+ - @mastra/core@1.52.0-alpha.12
9
+
3
10
  ## 1.2.8-alpha.23
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mcp-docs-server",
3
- "version": "1.2.8-alpha.23",
3
+ "version": "1.2.8-alpha.25",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,8 +28,8 @@
28
28
  "jsdom": "^26.1.0",
29
29
  "local-pkg": "^1.1.2",
30
30
  "zod": "^4.4.3",
31
- "@mastra/core": "1.52.0-alpha.11",
32
- "@mastra/mcp": "^1.15.0-alpha.0"
31
+ "@mastra/mcp": "^1.15.0-alpha.0",
32
+ "@mastra/core": "1.52.0-alpha.12"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@hono/node-server": "^1.19.14",
@@ -47,7 +47,7 @@
47
47
  "vitest": "4.1.10",
48
48
  "@internal/lint": "0.0.114",
49
49
  "@internal/types-builder": "0.0.89",
50
- "@mastra/core": "1.52.0-alpha.11"
50
+ "@mastra/core": "1.52.0-alpha.12"
51
51
  },
52
52
  "homepage": "https://mastra.ai",
53
53
  "repository": {