@mastra/mcp-docs-server 1.2.7-alpha.16 → 1.2.7-alpha.18
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/models/index.md +1 -1
- package/.docs/models/providers/ambient.md +7 -5
- package/.docs/models/providers/crossmodel.md +1 -1
- package/.docs/models/providers/databricks.md +4 -1
- package/.docs/models/providers/deepseek.md +2 -2
- package/.docs/models/providers/empiriolabs.md +3 -1
- package/.docs/models/providers/google.md +4 -0
- package/.docs/models/providers/llmgateway.md +1 -5
- package/.docs/models/providers/openai.md +10 -2
- package/.docs/models/providers/snowflake-cortex.md +4 -1
- package/.docs/models/providers/xai.md +1 -1
- package/CHANGELOG.md +7 -0
- package/package.json +6 -6
package/.docs/models/index.md
CHANGED
|
@@ -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
|
|
5
|
+
Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 4874 models from 155 providers through a single API.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Ambient
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 6 Ambient models through Mastra's model router. Authentication is handled automatically using the `AMBIENT_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Ambient documentation](https://ambient.xyz).
|
|
8
8
|
|
|
@@ -17,7 +17,7 @@ const agent = new Agent({
|
|
|
17
17
|
id: "my-agent",
|
|
18
18
|
name: "My Agent",
|
|
19
19
|
instructions: "You are a helpful assistant",
|
|
20
|
-
model: "ambient/
|
|
20
|
+
model: "ambient/ambient/large"
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
// Generate a response
|
|
@@ -36,8 +36,10 @@ for await (const chunk of stream) {
|
|
|
36
36
|
|
|
37
37
|
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
38
|
| ----------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
|
+
| `ambient/ambient/large` | 101K | | | | | | $1 | $4 |
|
|
39
40
|
| `ambient/moonshotai/kimi-k2.6` | 262K | | | | | | $0.95 | $4 |
|
|
40
|
-
| `ambient/moonshotai/kimi-k2.7-code` | 262K | | | | | | $0.
|
|
41
|
+
| `ambient/moonshotai/kimi-k2.7-code` | 262K | | | | | | $0.72 | $3 |
|
|
42
|
+
| `ambient/z-ai/glm-5.2` | 101K | | | | | | $1 | $4 |
|
|
41
43
|
| `ambient/zai-org/GLM-5.1-FP8` | 203K | | | | | | $1 | $4 |
|
|
42
44
|
| `ambient/zai-org/GLM-5.2-FP8` | 203K | | | | | | $1 | $4 |
|
|
43
45
|
|
|
@@ -51,7 +53,7 @@ const agent = new Agent({
|
|
|
51
53
|
name: "custom-agent",
|
|
52
54
|
model: {
|
|
53
55
|
url: "https://api.ambient.xyz/v1",
|
|
54
|
-
id: "ambient/
|
|
56
|
+
id: "ambient/ambient/large",
|
|
55
57
|
apiKey: process.env.AMBIENT_API_KEY,
|
|
56
58
|
headers: {
|
|
57
59
|
"X-Custom-Header": "value"
|
|
@@ -70,7 +72,7 @@ const agent = new Agent({
|
|
|
70
72
|
const useAdvanced = requestContext.task === "complex";
|
|
71
73
|
return useAdvanced
|
|
72
74
|
? "ambient/zai-org/GLM-5.2-FP8"
|
|
73
|
-
: "ambient/
|
|
75
|
+
: "ambient/ambient/large";
|
|
74
76
|
}
|
|
75
77
|
});
|
|
76
78
|
```
|
|
@@ -68,7 +68,7 @@ for await (const chunk of stream) {
|
|
|
68
68
|
| `crossmodel/qwen/qwen3.6-plus` | 1.0M | | | | | | $0.32 | $2 |
|
|
69
69
|
| `crossmodel/qwen/qwen3.7-max` | 1.0M | | | | | | $2 | $6 |
|
|
70
70
|
| `crossmodel/qwen/qwen3.7-plus` | 1.0M | | | | | | $0.32 | $1 |
|
|
71
|
-
| `crossmodel/tencent/hy3-preview` |
|
|
71
|
+
| `crossmodel/tencent/hy3-preview` | 262K | | | | | | $0.19 | $0.63 |
|
|
72
72
|
| `crossmodel/xiaomi/mimo-v2.5` | 1.0M | | | | | | $0.16 | $0.32 |
|
|
73
73
|
| `crossmodel/xiaomi/mimo-v2.5-pro` | 1.0M | | | | | | $0.47 | $0.94 |
|
|
74
74
|
| `crossmodel/z-ai/glm-4.7` | 200K | | | | | | $0.47 | $2 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Databricks
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 30 Databricks models through Mastra's model router. Authentication is handled automatically using the `DATABRICKS_TOKEN` environment variable. Configure `DATABRICKS_HOST` as well.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Databricks documentation](https://docs.databricks.com/aws/en/machine-learning/foundation-models/).
|
|
8
8
|
|
|
@@ -59,6 +59,9 @@ for await (const chunk of stream) {
|
|
|
59
59
|
| `databricks/databricks-gpt-5-4-mini` | 400K | | | | | | $0.75 | $5 |
|
|
60
60
|
| `databricks/databricks-gpt-5-4-nano` | 400K | | | | | | $0.20 | $1 |
|
|
61
61
|
| `databricks/databricks-gpt-5-5` | 1.1M | | | | | | $5 | $30 |
|
|
62
|
+
| `databricks/databricks-gpt-5-6-luna` | 400K | | | | | | $1 | $6 |
|
|
63
|
+
| `databricks/databricks-gpt-5-6-sol` | 1.1M | | | | | | $5 | $30 |
|
|
64
|
+
| `databricks/databricks-gpt-5-6-terra` | 1.1M | | | | | | $3 | $15 |
|
|
62
65
|
| `databricks/databricks-gpt-5-mini` | 400K | | | | | | $0.25 | $2 |
|
|
63
66
|
| `databricks/databricks-gpt-5-nano` | 400K | | | | | | $0.05 | $0.40 |
|
|
64
67
|
| `databricks/databricks-gpt-oss-120b` | 131K | | | | | | $0.07 | $0.28 |
|
|
@@ -89,6 +89,6 @@ const response = await agent.generate("Hello!", {
|
|
|
89
89
|
|
|
90
90
|
### Available Options
|
|
91
91
|
|
|
92
|
-
**thinking** (`{ type?: "enabled" | "disabled" | undefined; } | undefined`)
|
|
92
|
+
**thinking** (`{ type?: "adaptive" | "enabled" | "disabled" | undefined; } | undefined`)
|
|
93
93
|
|
|
94
|
-
**reasoningEffort** (`"high" | "max" | undefined`)
|
|
94
|
+
**reasoningEffort** (`"low" | "medium" | "high" | "xhigh" | "max" | undefined`)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# EmpirioLabs AI
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 36 EmpirioLabs AI models through Mastra's model router. Authentication is handled automatically using the `EMPIRIOLABS_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [EmpirioLabs AI documentation](https://docs.empiriolabs.ai).
|
|
8
8
|
|
|
@@ -52,6 +52,8 @@ for await (const chunk of stream) {
|
|
|
52
52
|
| `empiriolabs/minimax-m2-7` | 200K | | | | | | $0.15 | $0.60 |
|
|
53
53
|
| `empiriolabs/minimax-m2-7-highspeed` | 200K | | | | | | $0.30 | $1 |
|
|
54
54
|
| `empiriolabs/minimax-m3` | 1.0M | | | | | | $0.23 | $0.90 |
|
|
55
|
+
| `empiriolabs/mistral-medium-3` | 130K | | | | | | — | — |
|
|
56
|
+
| `empiriolabs/mistral-small-4` | 256K | | | | | | $0.15 | $0.60 |
|
|
55
57
|
| `empiriolabs/muse-spark-1-1` | 1.0M | | | | | | $1 | $4 |
|
|
56
58
|
| `empiriolabs/qwen3-5-122b-a10b` | 256K | | | | | | $0.12 | $0.92 |
|
|
57
59
|
| `empiriolabs/qwen3-5-27b` | 256K | | | | | | $0.09 | $0.69 |
|
|
@@ -130,6 +130,10 @@ const response = await agent.generate("Hello!", {
|
|
|
130
130
|
|
|
131
131
|
**serviceTier** (`"standard" | "flex" | "priority" | undefined`)
|
|
132
132
|
|
|
133
|
+
**sharedRequestType** (`"standard" | "flex" | "priority" | undefined`)
|
|
134
|
+
|
|
135
|
+
**requestType** (`"shared" | undefined`)
|
|
136
|
+
|
|
133
137
|
## Direct provider installation
|
|
134
138
|
|
|
135
139
|
This provider can also be installed directly as a standalone package, which can be used instead of the Mastra model router string. View the [package documentation](https://www.npmjs.com/package/@ai-sdk/google) for more details.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# LLM Gateway
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 176 LLM Gateway models through Mastra's model router. Authentication is handled automatically using the `LLMGATEWAY_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [LLM Gateway documentation](https://llmgateway.io/docs).
|
|
8
8
|
|
|
@@ -174,9 +174,6 @@ for await (const chunk of stream) {
|
|
|
174
174
|
| `llmgateway/qwen-omni-turbo` | 33K | | | | | | $0.20 | $0.80 |
|
|
175
175
|
| `llmgateway/qwen-plus` | 131K | | | | | | $0.40 | $1 |
|
|
176
176
|
| `llmgateway/qwen-plus-latest` | 1.0M | | | | | | $0.40 | $1 |
|
|
177
|
-
| `llmgateway/qwen-turbo` | 1.0M | | | | | | $0.05 | $0.20 |
|
|
178
|
-
| `llmgateway/qwen-vl-max` | 131K | | | | | | $0.80 | $3 |
|
|
179
|
-
| `llmgateway/qwen-vl-plus` | 131K | | | | | | $0.21 | $0.64 |
|
|
180
177
|
| `llmgateway/qwen2-5-vl-32b-instruct` | 131K | | | | | | $1 | $4 |
|
|
181
178
|
| `llmgateway/qwen2-5-vl-72b-instruct` | 33K | | | | | | $0.13 | $0.40 |
|
|
182
179
|
| `llmgateway/qwen3-235b-a22b-fp8` | 41K | | | | | | $0.20 | $0.80 |
|
|
@@ -208,7 +205,6 @@ for await (const chunk of stream) {
|
|
|
208
205
|
| `llmgateway/qwen3.7-max` | 1.0M | | | | | | $1 | $4 |
|
|
209
206
|
| `llmgateway/qwen3.7-plus` | 1.0M | | | | | | $0.40 | $2 |
|
|
210
207
|
| `llmgateway/qwen35-397b-a17b` | 262K | | | | | | $0.60 | $4 |
|
|
211
|
-
| `llmgateway/qwq-plus` | 131K | | | | | | $0.80 | $2 |
|
|
212
208
|
| `llmgateway/seed-1-6-250615` | 256K | | | | | | $0.25 | $2 |
|
|
213
209
|
| `llmgateway/seed-1-6-250915` | 256K | | | | | | $0.25 | $2 |
|
|
214
210
|
| `llmgateway/seed-1-6-flash-250715` | 256K | | | | | | $0.07 | $0.30 |
|
|
@@ -142,7 +142,7 @@ const response = await agent.generate("Hello!", {
|
|
|
142
142
|
|
|
143
143
|
**conversation** (`string | null | undefined`)
|
|
144
144
|
|
|
145
|
-
**include** (`("file_search_call.results" | "message.output_text.logprobs" | "reasoning.encrypted_content")[] | null | undefined`)
|
|
145
|
+
**include** (`("web_search_call.results" | "file_search_call.results" | "message.output_text.logprobs" | "reasoning.encrypted_content")[] | null | undefined`)
|
|
146
146
|
|
|
147
147
|
**instructions** (`string | null | undefined`)
|
|
148
148
|
|
|
@@ -158,18 +158,26 @@ const response = await agent.generate("Hello!", {
|
|
|
158
158
|
|
|
159
159
|
**promptCacheKey** (`string | null | undefined`)
|
|
160
160
|
|
|
161
|
+
**promptCacheOptions** (`{ mode?: "explicit" | "implicit" | undefined; ttl?: "30m" | undefined; } | undefined`)
|
|
162
|
+
|
|
161
163
|
**promptCacheRetention** (`"in_memory" | "24h" | null | undefined`)
|
|
162
164
|
|
|
163
165
|
**reasoningEffort** (`string | null | undefined`)
|
|
164
166
|
|
|
167
|
+
**reasoningMode** (`"standard" | "pro" | undefined`)
|
|
168
|
+
|
|
169
|
+
**reasoningContext** (`"auto" | "current_turn" | "all_turns" | undefined`)
|
|
170
|
+
|
|
165
171
|
**reasoningSummary** (`string | null | undefined`)
|
|
166
172
|
|
|
167
173
|
**safetyIdentifier** (`string | null | undefined`)
|
|
168
174
|
|
|
169
|
-
**serviceTier** (`"
|
|
175
|
+
**serviceTier** (`"auto" | "default" | "flex" | "priority" | null | undefined`)
|
|
170
176
|
|
|
171
177
|
**store** (`boolean | null | undefined`): Controls whether OpenAI stores your API requests for model training. Required to be "false" if your organization has zero data retention enabled. See: https\://platform.openai.com/docs/guides/your-data#zero-data-retention
|
|
172
178
|
|
|
179
|
+
**passThroughUnsupportedFiles** (`boolean | undefined`)
|
|
180
|
+
|
|
173
181
|
**strictJsonSchema** (`boolean | null | undefined`)
|
|
174
182
|
|
|
175
183
|
**textVerbosity** (`"low" | "medium" | "high" | null | undefined`)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Snowflake Cortex
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 21 Snowflake Cortex models through Mastra's model router. Authentication is handled automatically using the `SNOWFLAKE_CORTEX_PAT` environment variable. Configure `SNOWFLAKE_ACCOUNT` as well.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Snowflake Cortex documentation](https://docs.snowflake.com/en/user-guide/snowflake-cortex/cortex-rest-api).
|
|
8
8
|
|
|
@@ -54,6 +54,9 @@ for await (const chunk of stream) {
|
|
|
54
54
|
| `snowflake-cortex/openai-gpt-5.2` | 400K | | | | | | — | — |
|
|
55
55
|
| `snowflake-cortex/openai-gpt-5.4` | 1.1M | | | | | | — | — |
|
|
56
56
|
| `snowflake-cortex/openai-gpt-5.5` | 1.1M | | | | | | — | — |
|
|
57
|
+
| `snowflake-cortex/openai-gpt-5.6-luna` | 1.1M | | | | | | — | — |
|
|
58
|
+
| `snowflake-cortex/openai-gpt-5.6-sol` | 1.1M | | | | | | — | — |
|
|
59
|
+
| `snowflake-cortex/openai-gpt-5.6-terra` | 1.1M | | | | | | — | — |
|
|
57
60
|
| `snowflake-cortex/snowflake-llama3.3-70b` | 128K | | | | | | — | — |
|
|
58
61
|
|
|
59
62
|
## Advanced configuration
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @mastra/mcp-docs-server
|
|
2
2
|
|
|
3
|
+
## 1.2.7-alpha.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`bd6d240`](https://github.com/mastra-ai/mastra/commit/bd6d2402db93dddaef0721667e7e8a030e7c6e16), [`0111486`](https://github.com/mastra-ai/mastra/commit/01114867612593eef5cfa2fda6a1194dfedda841), [`96a3749`](https://github.com/mastra-ai/mastra/commit/96a37492235f5b8076b3e3177d83ed5a5e44a640), [`3e26c87`](https://github.com/mastra-ai/mastra/commit/3e26c87de0c5bc2583b795ce6ca5889b6b161acb), [`a5008f2`](https://github.com/mastra-ai/mastra/commit/a5008f22ae710ad9402ea9f2547d8c02f74d384b)]:
|
|
8
|
+
- @mastra/core@1.51.0-alpha.8
|
|
9
|
+
|
|
3
10
|
## 1.2.7-alpha.15
|
|
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.7-alpha.
|
|
3
|
+
"version": "1.2.7-alpha.18",
|
|
4
4
|
"description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"jsdom": "^26.1.0",
|
|
29
29
|
"local-pkg": "^1.1.2",
|
|
30
30
|
"zod": "^4.4.3",
|
|
31
|
-
"@mastra/core": "1.51.0-alpha.
|
|
31
|
+
"@mastra/core": "1.51.0-alpha.8",
|
|
32
32
|
"@mastra/mcp": "^1.14.0-alpha.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@hono/node-server": "^1.19.11",
|
|
36
36
|
"@types/jsdom": "^21.1.7",
|
|
37
37
|
"@types/node": "22.19.21",
|
|
38
|
-
"@vitest/coverage-v8": "4.1.
|
|
39
|
-
"@vitest/ui": "4.1.
|
|
38
|
+
"@vitest/coverage-v8": "4.1.10",
|
|
39
|
+
"@vitest/ui": "4.1.10",
|
|
40
40
|
"@wong2/mcp-cli": "^2.0.0",
|
|
41
41
|
"cross-env": "^10.1.0",
|
|
42
42
|
"eslint": "^10.4.1",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"tsup": "^8.5.1",
|
|
45
45
|
"tsx": "^4.22.4",
|
|
46
46
|
"typescript": "^6.0.3",
|
|
47
|
-
"vitest": "4.1.
|
|
47
|
+
"vitest": "4.1.10",
|
|
48
48
|
"@internal/types-builder": "0.0.88",
|
|
49
|
-
"@mastra/core": "1.51.0-alpha.
|
|
49
|
+
"@mastra/core": "1.51.0-alpha.8",
|
|
50
50
|
"@internal/lint": "0.0.113"
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://mastra.ai",
|