@mastra/mcp-docs-server 1.1.35-alpha.27 → 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.
- package/.docs/reference/cli/mastra.md +33 -1
- package/CHANGELOG.md +14 -0
- package/package.json +4 -4
|
@@ -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
|
|
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,19 @@
|
|
|
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
|
+
|
|
10
|
+
## 1.1.35-alpha.28
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`105e454`](https://github.com/mastra-ai/mastra/commit/105e454c95af06a7c741c15969d8f9b0f02463a7)]:
|
|
15
|
+
- @mastra/core@1.33.0-alpha.15
|
|
16
|
+
|
|
3
17
|
## 1.1.35-alpha.27
|
|
4
18
|
|
|
5
19
|
### 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.
|
|
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,7 +29,7 @@
|
|
|
29
29
|
"jsdom": "^26.1.0",
|
|
30
30
|
"local-pkg": "^1.1.2",
|
|
31
31
|
"zod": "^4.3.6",
|
|
32
|
-
"@mastra/core": "1.33.0-alpha.
|
|
32
|
+
"@mastra/core": "1.33.0-alpha.16",
|
|
33
33
|
"@mastra/mcp": "^1.7.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"tsx": "^4.21.0",
|
|
47
47
|
"typescript": "^6.0.3",
|
|
48
48
|
"vitest": "4.1.5",
|
|
49
|
+
"@internal/lint": "0.0.92",
|
|
49
50
|
"@internal/types-builder": "0.0.67",
|
|
50
|
-
"@mastra/core": "1.33.0-alpha.
|
|
51
|
-
"@internal/lint": "0.0.92"
|
|
51
|
+
"@mastra/core": "1.33.0-alpha.16"
|
|
52
52
|
},
|
|
53
53
|
"homepage": "https://mastra.ai",
|
|
54
54
|
"repository": {
|