@mastra/mcp-docs-server 1.1.27-alpha.2 → 1.1.27

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.
@@ -1,6 +1,6 @@
1
1
  # Model Providers
2
2
 
3
- Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 3706 models from 104 providers through a single API.
3
+ Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 3707 models from 104 providers through a single API.
4
4
 
5
5
  ## Features
6
6
 
@@ -1,6 +1,6 @@
1
1
  # ![Baseten logo](https://models.dev/logos/baseten.svg)Baseten
2
2
 
3
- Access 9 Baseten models through Mastra's model router. Authentication is handled automatically using the `BASETEN_API_KEY` environment variable.
3
+ Access 10 Baseten models through Mastra's model router. Authentication is handled automatically using the `BASETEN_API_KEY` environment variable.
4
4
 
5
5
  Learn more in the [Baseten documentation](https://docs.baseten.co/development/model-apis/overview).
6
6
 
@@ -38,6 +38,7 @@ for await (const chunk of stream) {
38
38
  | `baseten/deepseek-ai/DeepSeek-V3.1` | 164K | | | | | | $0.50 | $2 |
39
39
  | `baseten/MiniMaxAI/MiniMax-M2.5` | 204K | | | | | | $0.30 | $1 |
40
40
  | `baseten/moonshotai/Kimi-K2.5` | 262K | | | | | | $0.60 | $3 |
41
+ | `baseten/moonshotai/Kimi-K2.6` | 262K | | | | | | $0.95 | $4 |
41
42
  | `baseten/nvidia/Nemotron-120B-A12B` | 262K | | | | | | $0.30 | $0.75 |
42
43
  | `baseten/openai/gpt-oss-120b` | 128K | | | | | | $0.10 | $0.50 |
43
44
  | `baseten/zai-org/GLM-4.6` | 200K | | | | | | $0.60 | $2 |
@@ -266,7 +266,7 @@ const response = await agent.generate('Help me organize my day', {
266
266
 
267
267
  **options.clientTools** (`ToolsInput`): Client-side tools available during execution.
268
268
 
269
- **options.savePerStep** (`boolean`): Save messages incrementally after each generation step completes (default: false).
269
+ **options.savePerStep** (`boolean`): Save messages incrementally after each generation step completes (default: false). Disabled internally when observational memory is enabled.
270
270
 
271
271
  **options.providerOptions** (`Record<string, Record<string, JSONValue>>`): Provider-specific options passed to the language model.
272
272
 
@@ -84,7 +84,7 @@ await agent.generateLegacy('message for agent')
84
84
 
85
85
  **options.clientTools** (`ToolsInput`): Tools that are executed on the 'client' side of the request. These tools do not have execute functions in the definition.
86
86
 
87
- **options.savePerStep** (`boolean`): Save messages incrementally after each stream step completes (default: false).
87
+ **options.savePerStep** (`boolean`): Save messages incrementally after each generation step completes (default: false). Disabled internally when observational memory is enabled.
88
88
 
89
89
  **options.providerOptions** (`Record<string, Record<string, JSONValue>>`): Additional provider-specific options that are passed through to the underlying LLM provider. The structure is \`{ providerName: { optionKey: value } }\`. Since Mastra extends AI SDK, see the \[AI SDK documentation]\(https\://sdk.vercel.ai/docs/providers/ai-sdk-providers) for complete provider options.
90
90
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.1.27
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f112db1`](https://github.com/mastra-ai/mastra/commit/f112db179557ae9b5a0f1d25dc47f928d7d61cd9), [`21d9706`](https://github.com/mastra-ai/mastra/commit/21d970604d89eee970cbf8013d26d7551aff6ea5), [`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c)]:
8
+ - @mastra/core@1.27.0
9
+
10
+ ## 1.1.27-alpha.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6)]:
15
+ - @mastra/core@1.27.0-alpha.2
16
+
3
17
  ## 1.1.27-alpha.2
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.27-alpha.2",
3
+ "version": "1.1.27",
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.27.0-alpha.1",
32
+ "@mastra/core": "1.27.0",
33
33
  "@mastra/mcp": "^1.5.1"
34
34
  },
35
35
  "devDependencies": {
@@ -46,9 +46,9 @@
46
46
  "tsx": "^4.21.0",
47
47
  "typescript": "^5.9.3",
48
48
  "vitest": "4.1.4",
49
- "@internal/types-builder": "0.0.59",
50
- "@internal/lint": "0.0.84",
51
- "@mastra/core": "1.27.0-alpha.1"
49
+ "@internal/types-builder": "0.0.60",
50
+ "@internal/lint": "0.0.85",
51
+ "@mastra/core": "1.27.0"
52
52
  },
53
53
  "homepage": "https://mastra.ai",
54
54
  "repository": {