@mastra/mcp-docs-server 1.1.35-alpha.28 → 1.1.35-alpha.29

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.
@@ -464,10 +464,42 @@ mastra auth tokens revoke <token-id>
464
464
 
465
465
  ## `mastra lint`
466
466
 
467
- The `mastra lint` command validates the structure and code of your Mastra project to ensure it follows best practices and is error-free.
467
+ The `mastra lint` command validates the structure and code of your Mastra project.
468
+
469
+ By default, `mastra lint` runs project checks against your source files and configuration. Use `--preflight` to also run bundle checks against `.mastra/output` before deployment.
470
+
471
+ ```bash
472
+ mastra lint --preflight
473
+ ```
468
474
 
469
475
  It accepts [common flags](#common-flags).
470
476
 
477
+ ### Flags
478
+
479
+ #### `--preflight`
480
+
481
+ Runs deployment preflight checks against the built Mastra output. This builds the project before checking it unless you also pass `--skip-build`.
482
+
483
+ #### `--skip-build`
484
+
485
+ Skips the build step and reuses the existing `.mastra/output` directory. This flag only applies when `--preflight` is set.
486
+
487
+ #### `--env-file <file>`
488
+
489
+ Uses the specified environment file for preflight validation. This flag only applies when `--preflight` is set.
490
+
491
+ #### `--strict`
492
+
493
+ Treats warnings as errors.
494
+
495
+ #### `--json`
496
+
497
+ Emits machine-readable JSON output.
498
+
499
+ #### `--debug`
500
+
501
+ Enables debug logs.
502
+
471
503
  ## `mastra scorers`
472
504
 
473
505
  The `mastra scorers` command provides management capabilities for evaluation scorers that measure the quality, accuracy, and performance of AI-generated outputs.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.1.35-alpha.29
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`cc189cc`](https://github.com/mastra-ai/mastra/commit/cc189cc0128eb7af233476b5e421ec6888bffde7)]:
8
+ - @mastra/core@1.33.0-alpha.16
9
+
3
10
  ## 1.1.35-alpha.28
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.1.35-alpha.28",
3
+ "version": "1.1.35-alpha.29",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,8 +29,8 @@
29
29
  "jsdom": "^26.1.0",
30
30
  "local-pkg": "^1.1.2",
31
31
  "zod": "^4.3.6",
32
- "@mastra/mcp": "^1.7.0",
33
- "@mastra/core": "1.33.0-alpha.15"
32
+ "@mastra/core": "1.33.0-alpha.16",
33
+ "@mastra/mcp": "^1.7.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@hono/node-server": "^1.19.11",
@@ -47,8 +47,8 @@
47
47
  "typescript": "^6.0.3",
48
48
  "vitest": "4.1.5",
49
49
  "@internal/lint": "0.0.92",
50
- "@mastra/core": "1.33.0-alpha.15",
51
- "@internal/types-builder": "0.0.67"
50
+ "@internal/types-builder": "0.0.67",
51
+ "@mastra/core": "1.33.0-alpha.16"
52
52
  },
53
53
  "homepage": "https://mastra.ai",
54
54
  "repository": {