@mastra/mcp-docs-server 1.2.15-alpha.10 → 1.2.15-alpha.11

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.
@@ -289,6 +289,10 @@ const agent = new Agent({
289
289
 
290
290
  ```typescript
291
291
  // In a types.d.ts file in your project
292
+ // The import is required: it makes this file a module, so the block below
293
+ // merges into the existing types instead of replacing the module.
294
+ import '@mastra/core/llm';
295
+
292
296
  declare module '@mastra/core/llm' {
293
297
  interface ProviderModelsMap {
294
298
  'my-provider': readonly ['model-1', 'model-2', 'model-3'];
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![Vercel logo](https://models.dev/logos/vercel.svg)Vercel
4
4
 
5
- Vercel aggregates models from multiple providers with enhanced features like rate limiting and failover. Access 322 models through Mastra's model router.
5
+ Vercel aggregates models from multiple providers with enhanced features like rate limiting and failover. Access 323 models through Mastra's model router.
6
6
 
7
7
  Learn more in the [Vercel documentation](https://ai-sdk.dev/providers/ai-sdk-providers).
8
8
 
@@ -334,6 +334,7 @@ ANTHROPIC_API_KEY=ant-...
334
334
  | `xai/grok-4.5` |
335
335
  | `xai/grok-build-0.1` |
336
336
  | `xai/grok-imagine-image` |
337
+ | `xai/grok-imagine-image-2.0-preview` |
337
338
  | `xai/grok-imagine-video` |
338
339
  | `xai/grok-imagine-video-1.5` |
339
340
  | `xai/grok-imagine-video-1.5-preview` |
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Model Providers
4
4
 
5
- Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 5457 models from 168 providers through a single API.
5
+ Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 5458 models from 168 providers through a single API.
6
6
 
7
7
  ## Features
8
8
 
@@ -51,7 +51,7 @@ for await (const chunk of stream) {
51
51
  | `baseten/zai-org/GLM-5` | 203K | | | | | | $0.95 | $3 |
52
52
  | `baseten/zai-org/GLM-5.1` | 203K | | | | | | $1 | $4 |
53
53
  | `baseten/zai-org/GLM-5.2` | 1.0M | | | | | | $1 | $4 |
54
- | `baseten/zai-org/GLM-5.2-Fast` | 524K | | | | | | $2 | $7 |
54
+ | `baseten/zai-org/GLM-5.2-Fast` | 1.0M | | | | | | $2 | $7 |
55
55
 
56
56
  ## Advanced configuration
57
57
 
@@ -326,7 +326,7 @@ for await (const chunk of stream) {
326
326
  | `kilo/qwen/qwen3.5-plus-02-15` | 1.0M | | | | | | $0.26 | $2 |
327
327
  | `kilo/qwen/qwen3.5-plus-20260420` | 1.0M | | | | | | $0.30 | $2 |
328
328
  | `kilo/qwen/qwen3.6-27b` | 262K | | | | | | $0.45 | $3 |
329
- | `kilo/qwen/qwen3.6-35b-a3b` | 262K | | | | | | $0.14 | $1 |
329
+ | `kilo/qwen/qwen3.6-35b-a3b` | 262K | | | | | | $0.15 | $1 |
330
330
  | `kilo/qwen/qwen3.6-flash` | 1.0M | | | | | | $0.19 | $1 |
331
331
  | `kilo/qwen/qwen3.6-max-preview` | 262K | | | | | | $1 | $6 |
332
332
  | `kilo/qwen/qwen3.6-plus` | 1.0M | | | | | | $0.33 | $2 |
@@ -64,7 +64,7 @@ Configuration options for native OS sandboxing (used with `isolation: 'seatbelt'
64
64
 
65
65
  **readWritePaths** (`string[]`): Additional paths to allow read-write access beyond the workspace directory.
66
66
 
67
- **seatbeltProfilePath** (`string`): Path to a custom seatbelt profile file (macOS only). If the file exists, it's used; if not, a default profile is generated and written to this path.
67
+ **seatbeltProfilePath** (`string`): Path to a custom seatbelt profile file (macOS only). If you wrote the file, it's used exactly as written: Mastra doesn't add mounted paths to it, so the profile must already allow every path you mount. If the file doesn't exist, a default profile is generated and written to this path, and that generated profile allows mounted paths. Mastra marks the profiles it generates, so a later run regenerates them instead of reading them back as your own. To edit a generated profile and keep your edits, delete its marker comment: the file then counts as yours, and mounted paths are no longer added to it.
68
68
 
69
69
  **bwrapArgs** (`string[]`): Additional arguments to pass to bwrap (Linux only).
70
70
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.2.15-alpha.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`7fb580a`](https://github.com/mastra-ai/mastra/commit/7fb580ac73fbcacf2ff00872a3395f73ae1b9fa5), [`333785c`](https://github.com/mastra-ai/mastra/commit/333785c93cbb01e42c60167e995457c28897ddbf), [`2eabc09`](https://github.com/mastra-ai/mastra/commit/2eabc097d86d52fbd0123da36a7c874154cc384f), [`83fa004`](https://github.com/mastra-ai/mastra/commit/83fa0044bfda8b703a83883dbd8bef204844d13f)]:
8
+ - @mastra/core@1.58.0-alpha.7
9
+
3
10
  ## 1.2.15-alpha.10
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.15-alpha.10",
3
+ "version": "1.2.15-alpha.11",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,7 +28,7 @@
28
28
  "jsdom": "^26.1.0",
29
29
  "local-pkg": "^1.1.2",
30
30
  "zod": "^4.4.3",
31
- "@mastra/core": "1.58.0-alpha.6",
31
+ "@mastra/core": "1.58.0-alpha.7",
32
32
  "@mastra/mcp": "^1.16.0-alpha.1"
33
33
  },
34
34
  "devDependencies": {
@@ -47,7 +47,7 @@
47
47
  "vitest": "4.1.10",
48
48
  "@internal/lint": "0.0.121",
49
49
  "@internal/types-builder": "0.0.96",
50
- "@mastra/core": "1.58.0-alpha.6"
50
+ "@mastra/core": "1.58.0-alpha.7"
51
51
  },
52
52
  "homepage": "https://mastra.ai",
53
53
  "repository": {