@mastra/mcp-docs-server 1.2.16-alpha.1 → 1.2.16-alpha.3

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.
@@ -87,6 +87,7 @@ const workspace = new Workspace({
87
87
  lsp: {
88
88
  diagnosticTimeout: 4000,
89
89
  initTimeout: 8000,
90
+ maxOpenClients: 4,
90
91
  disableServers: ['eslint'],
91
92
  binaryOverrides: {
92
93
  typescript: '/custom/path/to/typescript-language-server --stdio',
@@ -99,10 +100,36 @@ const workspace = new Workspace({
99
100
  Use custom configuration when you need to:
100
101
 
101
102
  - Increase timeouts for large repositories
103
+ - Limit retained language server processes
102
104
  - Disable specific language servers
103
105
  - Point Mastra at custom language server binaries
104
106
  - Add extra binary search paths in constrained environments
105
107
 
108
+ ### Limit retained clients
109
+
110
+ Set `maxOpenClients` to a positive integer to limit the language server clients retained by a workspace. When the limit is reached, the workspace closes the least recently used client that has no active query lease. If every retained client is active, the next acquisition waits up to five seconds for a lease to be released. If no lease becomes available, `prepareQuery()` and `getDiagnostics()` return `null`, while `getDiagnosticsMulti()` omits the unavailable server.
111
+
112
+ Workspaces retain an unlimited number of clients when `maxOpenClients` is omitted. Mastra Code sets `maxOpenClients` to `4` by default.
113
+
114
+ ### Release prepared queries
115
+
116
+ When you call `prepareQuery()` directly, close the file before releasing the client lease. Use a `finally` block so the client can be evicted even if the query fails:
117
+
118
+ ```typescript
119
+ const query = await workspace.lsp?.prepareQuery(filePath)
120
+
121
+ if (query) {
122
+ try {
123
+ const hover = await query.client.queryHover(query.uri, position)
124
+ } finally {
125
+ query.client.notifyClose(filePath)
126
+ query.release()
127
+ }
128
+ }
129
+ ```
130
+
131
+ During workspace teardown, Mastra waits up to five seconds for active leases to be released before it forces language server shutdown.
132
+
106
133
  ## Custom language servers
107
134
 
108
135
  By default, Mastra includes built-in support for TypeScript, JavaScript, Python, Go, and Rust. To use LSP inspection with other languages (e.g. PHP, Ruby, Java, Kotlin, Swift, Elixir), register a custom language server via the `servers` field:
@@ -47,6 +47,7 @@ List of required environment variables for each model provider and gateway suppo
47
47
  | [DigitalOcean](https://mastra.ai/models/providers/digitalocean) | `digitalocean/*` | `DIGITALOCEAN_ACCESS_TOKEN` |
48
48
  | [DInference](https://mastra.ai/models/providers/dinference) | `dinference/*` | `DINFERENCE_API_KEY` |
49
49
  | [EBCloud](https://mastra.ai/models/providers/ebcloud) | `ebcloud/*` | `EBCLOUD_API_KEY` |
50
+ | [Eden AI](https://mastra.ai/models/providers/edenai) | `edenai/*` | `EDENAI_API_KEY` |
50
51
  | [EmpirioLabs AI](https://mastra.ai/models/providers/empiriolabs) | `empiriolabs/*` | `EMPIRIOLABS_API_KEY` |
51
52
  | [evroc](https://mastra.ai/models/providers/evroc) | `evroc/*` | `EVROC_API_KEY` |
52
53
  | [FastRouter](https://mastra.ai/models/providers/fastrouter) | `fastrouter/*` | `FASTROUTER_API_KEY` |
@@ -84,6 +85,7 @@ List of required environment variables for each model provider and gateway suppo
84
85
  | [LucidQuery](https://mastra.ai/models/providers/lucidquery) | `lucidquery/*` | `LUCIDQUERY_API_KEY` |
85
86
  | [Lynkr](https://mastra.ai/models/providers/lynkr) | `lynkr/*` | `LYNKR_API_KEY` |
86
87
  | [Meganova](https://mastra.ai/models/providers/meganova) | `meganova/*` | `MEGANOVA_API_KEY` |
88
+ | [Merge Gateway](https://mastra.ai/models/providers/merge-gateway) | `merge-gateway/*` | `MERGE_GATEWAY_API_KEY` |
87
89
  | [Meta](https://mastra.ai/models/providers/meta) | `meta/*` | `META_MODEL_API_KEY` |
88
90
  | [MiniMax (minimax.io)](https://mastra.ai/models/providers/minimax) | `minimax/*` | `MINIMAX_API_KEY` |
89
91
  | [MiniMax (minimaxi.com)](https://mastra.ai/models/providers/minimax-cn) | `minimax-cn/*` | `MINIMAX_API_KEY` |
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![OpenRouter logo](https://models.dev/logos/openrouter.svg)OpenRouter
4
4
 
5
- OpenRouter aggregates models from multiple providers with enhanced features like rate limiting and failover. Access 345 models through Mastra's model router.
5
+ OpenRouter aggregates models from multiple providers with enhanced features like rate limiting and failover. Access 349 models through Mastra's model router.
6
6
 
7
7
  Learn more in the [OpenRouter documentation](https://openrouter.ai/models).
8
8
 
@@ -81,6 +81,7 @@ ANTHROPIC_API_KEY=ant-...
81
81
  | `baidu/ernie-4.5-vl-424b-a47b` |
82
82
  | `bytedance-seed/seed-1.6` |
83
83
  | `bytedance-seed/seed-1.6-flash` |
84
+ | `bytedance-seed/seed-2-1-turbo` |
84
85
  | `bytedance-seed/seed-2.0-code` |
85
86
  | `bytedance-seed/seed-2.0-lite` |
86
87
  | `bytedance-seed/seed-2.0-mini` |
@@ -104,6 +105,7 @@ ANTHROPIC_API_KEY=ant-...
104
105
  | `deepseek/deepseek-v4-flash` |
105
106
  | `deepseek/deepseek-v4-flash-0731` |
106
107
  | `deepseek/deepseek-v4-pro` |
108
+ | `deepseek/deepseek-v4-pro-0813` |
107
109
  | `google/gemini-2.5-flash` |
108
110
  | `google/gemini-2.5-flash-image` |
109
111
  | `google/gemini-2.5-flash-lite` |
@@ -337,6 +339,7 @@ ANTHROPIC_API_KEY=ant-...
337
339
  | `qwen/qwen3.7-flash` |
338
340
  | `qwen/qwen3.7-max` |
339
341
  | `qwen/qwen3.7-plus` |
342
+ | `qwen/qwen3.8-2.4t-a95b` |
340
343
  | `qwen/qwen3.8-max` |
341
344
  | `rekaai/reka-edge` |
342
345
  | `rekaai/reka-flash-3` |
@@ -366,6 +369,7 @@ ANTHROPIC_API_KEY=ant-...
366
369
  | `x-ai/grok-4.20-multi-agent` |
367
370
  | `x-ai/grok-4.3` |
368
371
  | `x-ai/grok-4.5` |
372
+ | `x-ai/grok-4.6` |
369
373
  | `x-ai/grok-build-0.1` |
370
374
  | `xiaomi/mimo-v2.5` |
371
375
  | `xiaomi/mimo-v2.5-pro` |
@@ -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 324 models through Mastra's model router.
5
+ Vercel aggregates models from multiple providers with enhanced features like rate limiting and failover. Access 326 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
 
@@ -132,6 +132,7 @@ ANTHROPIC_API_KEY=ant-...
132
132
  | `deepseek/deepseek-v4-flash` |
133
133
  | `deepseek/deepseek-v4-flash-0731` |
134
134
  | `deepseek/deepseek-v4-pro` |
135
+ | `deepseek/deepseek-v4-pro-0813` |
135
136
  | `fish-audio/s1` |
136
137
  | `fish-audio/s2-pro` |
137
138
  | `fish-audio/s2.1-pro` |
@@ -333,6 +334,7 @@ ANTHROPIC_API_KEY=ant-...
333
334
  | `xai/grok-4.20-reasoning-beta` |
334
335
  | `xai/grok-4.3` |
335
336
  | `xai/grok-4.5` |
337
+ | `xai/grok-4.6` |
336
338
  | `xai/grok-build-0.1` |
337
339
  | `xai/grok-imagine-image` |
338
340
  | `xai/grok-imagine-image-2.0` |
@@ -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 5484 models from 169 providers through a single API.
5
+ Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 5658 models from 171 providers through a single API.
6
6
 
7
7
  ## Features
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![ai&](https://models.dev/logos/aiand.svg)ai&
4
4
 
5
- Access 8 ai& models through Mastra's model router. Authentication is handled automatically using the `AIAND_API_KEY` environment variable.
5
+ Access 9 ai& models through Mastra's model router. Authentication is handled automatically using the `AIAND_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [ai& documentation](https://docs.aiand.com/).
8
8
 
@@ -41,8 +41,9 @@ for await (const chunk of stream) {
41
41
  | `aiand/google/gemma-4-31b-it` | 262K | | | | | | $0.20 | $0.50 |
42
42
  | `aiand/moonshotai/kimi-k2.7-code` | 262K | | | | | | $0.75 | $4 |
43
43
  | `aiand/moonshotai/kimi-k3` | 1.0M | | | | | | $3 | $13 |
44
+ | `aiand/motif-technologies/motif-3` | 262K | | | | | | $0.50 | $2 |
44
45
  | `aiand/openai/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
45
- | `aiand/qwen/qwen3.6-27b` | 262K | | | | | | | |
46
+ | `aiand/qwen/qwen3.6-27b` | 262K | | | | | | $0.32 | $3 |
46
47
  | `aiand/zai-org/glm-5.2` | 1.0M | | | | | | $1 | $4 |
47
48
 
48
49
  ## Advanced configuration
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![DigitalOcean logo](https://models.dev/logos/digitalocean.svg)DigitalOcean
4
4
 
5
- Access 90 DigitalOcean models through Mastra's model router. Authentication is handled automatically using the `DIGITALOCEAN_ACCESS_TOKEN` environment variable.
5
+ Access 91 DigitalOcean models through Mastra's model router. Authentication is handled automatically using the `DIGITALOCEAN_ACCESS_TOKEN` environment variable.
6
6
 
7
7
  Learn more in the [DigitalOcean documentation](https://docs.digitalocean.com/products/gradient-ai-platform/details/models/).
8
8
 
@@ -119,6 +119,7 @@ for await (const chunk of stream) {
119
119
  | `digitalocean/qwen3-embedding-0.6b` | 8K | | | | | | $0.04 | — |
120
120
  | `digitalocean/qwen3-tts-voicedesign` | 33K | | | | | | — | — |
121
121
  | `digitalocean/qwen3.5-397b-a17b` | 131K | | | | | | $0.30 | $2 |
122
+ | `digitalocean/qwen3.8-max` | 262K | | | | | | $2 | $6 |
122
123
  | `digitalocean/stable-diffusion-3.5-large` | 256 | | | | | | $0.08 | — |
123
124
  | `digitalocean/wan2-2-t2v-a14b` | 100 | | | | | | $0.60 | — |
124
125
 
@@ -0,0 +1,88 @@
1
+ > Discover all available pages from the documentation index: https://mastra.ai/llms.txt
2
+
3
+ # ![Eden AI logo](https://models.dev/logos/edenai.svg)Eden AI
4
+
5
+ Access 16 Eden AI models through Mastra's model router. Authentication is handled automatically using the `EDENAI_API_KEY` environment variable.
6
+
7
+ Learn more in the [Eden AI documentation](https://docs.edenai.co).
8
+
9
+ ```bash
10
+ EDENAI_API_KEY=your-api-key
11
+ ```
12
+
13
+ ```typescript
14
+ import { Agent } from "@mastra/core/agent";
15
+
16
+ const agent = new Agent({
17
+ id: "my-agent",
18
+ name: "My Agent",
19
+ instructions: "You are a helpful assistant",
20
+ model: "edenai/anthropic/claude-opus-5"
21
+ });
22
+
23
+ // Generate a response
24
+ const response = await agent.generate("Hello!");
25
+
26
+ // Stream a response
27
+ const stream = await agent.stream("Tell me a story");
28
+ for await (const chunk of stream) {
29
+ console.log(chunk);
30
+ }
31
+ ```
32
+
33
+ > **Note:** Mastra uses the OpenAI-compatible `/chat/completions` endpoint. Some provider-specific features may not be available. Check the [Eden AI documentation](https://docs.edenai.co) for details.
34
+
35
+ ## Models
36
+
37
+ | Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
38
+ | --------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
39
+ | `edenai/anthropic/claude-opus-5` | 1.0M | | | | | | $5 | $25 |
40
+ | `edenai/anthropic/claude-sonnet-5` | 1.0M | | | | | | $2 | $10 |
41
+ | `edenai/anthropic/claude-sonnet-latest` | 1.0M | | | | | | $2 | $10 |
42
+ | `edenai/deepinfra/openai/gpt-oss-120b` | 131K | | | | | | $0.04 | $0.17 |
43
+ | `edenai/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $0.43 | $0.87 |
44
+ | `edenai/google/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
45
+ | `edenai/mistral/mistral-large-2512` | 262K | | | | | | $0.50 | $2 |
46
+ | `edenai/moonshot/kimi-k3` | 1.0M | | | | | | $3 | $15 |
47
+ | `edenai/openai/gpt-4o-mini` | 128K | | | | | | $0.15 | $0.60 |
48
+ | `edenai/openai/gpt-5.6-luna` | 1.1M | | | | | | $0.20 | $1 |
49
+ | `edenai/openai/gpt-5.6-sol` | 1.1M | | | | | | $5 | $30 |
50
+ | `edenai/openai/gpt-5.6-terra` | 1.1M | | | | | | $2 | $12 |
51
+ | `edenai/vertex/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
52
+ | `edenai/vertex/gemini-3.6-flash@eu` | 1.0M | | | | | | $2 | $8 |
53
+ | `edenai/xai/grok-4.5` | 500K | | | | | | $2 | $6 |
54
+ | `edenai/zai/glm-5.2` | 1.0M | | | | | | $1 | $4 |
55
+
56
+ ## Advanced configuration
57
+
58
+ ### Custom headers
59
+
60
+ ```typescript
61
+ const agent = new Agent({
62
+ id: "custom-agent",
63
+ name: "custom-agent",
64
+ model: {
65
+ url: "https://api.edenai.run/v3",
66
+ id: "edenai/anthropic/claude-opus-5",
67
+ apiKey: process.env.EDENAI_API_KEY,
68
+ headers: {
69
+ "X-Custom-Header": "value"
70
+ }
71
+ }
72
+ });
73
+ ```
74
+
75
+ ### Dynamic model selection
76
+
77
+ ```typescript
78
+ const agent = new Agent({
79
+ id: "dynamic-agent",
80
+ name: "Dynamic Agent",
81
+ model: ({ requestContext }) => {
82
+ const useAdvanced = requestContext.task === "complex";
83
+ return useAdvanced
84
+ ? "edenai/zai/glm-5.2"
85
+ : "edenai/anthropic/claude-opus-5";
86
+ }
87
+ });
88
+ ```
@@ -39,17 +39,17 @@ for await (const chunk of stream) {
39
39
  | `hyper/deepseek-v4-flash` | 1.0M | | | | | | $0.20 | $0.40 |
40
40
  | `hyper/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.15 | $0.30 |
41
41
  | `hyper/deepseek-v4-pro` | 1.0M | | | | | | $2 | $5 |
42
- | `hyper/gemma-4-26b-a4b-it` | 256K | | | | | | $0.12 | $0.43 |
42
+ | `hyper/gemma-4-26b-a4b-it` | 256K | | | | | | $0.12 | $0.41 |
43
43
  | `hyper/glm-5.1` | 203K | | | | | | $2 | $5 |
44
44
  | `hyper/glm-5.2` | 1.0M | | | | | | $1 | $4 |
45
45
  | `hyper/gpt-oss-120b` | 131K | | | | | | $0.19 | $0.73 |
46
- | `hyper/kimi-k2.5` | 262K | | | | | | $0.51 | $3 |
46
+ | `hyper/kimi-k2.5` | 262K | | | | | | $0.56 | $3 |
47
47
  | `hyper/kimi-k2.6` | 262K | | | | | | $0.95 | $4 |
48
48
  | `hyper/kimi-k2.7-code` | 256K | | | | | | $0.95 | $4 |
49
49
  | `hyper/kimi-k3` | 1.0M | | | | | | $3 | $16 |
50
50
  | `hyper/llama-3.3-70b-instruct` | 128K | | | | | | $0.60 | $0.74 |
51
51
  | `hyper/llama-4-maverick-17b-128e-instruct-fp8` | 430K | | | | | | $0.27 | $0.90 |
52
- | `hyper/minimax-m2.7` | 262K | | | | | | $0.47 | $2 |
52
+ | `hyper/minimax-m2.7` | 262K | | | | | | $0.44 | $2 |
53
53
  | `hyper/minimax-m3` | 512K | | | | | | $0.33 | $1 |
54
54
  | `hyper/qwen3-coder-480b-a35b-instruct-int4-mixed-ar` | 106K | | | | | | $0.45 | $2 |
55
55
  | `hyper/qwen3-next-80b-a3b-instruct` | 262K | | | | | | $0.12 | $1 |
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![Inceptron logo](https://models.dev/logos/inceptron.svg)Inceptron
4
4
 
5
- Access 6 Inceptron models through Mastra's model router. Authentication is handled automatically using the `INCEPTRON_API_KEY` environment variable.
5
+ Access 5 Inceptron models through Mastra's model router. Authentication is handled automatically using the `INCEPTRON_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [Inceptron documentation](https://docs.inceptron.io).
8
8
 
@@ -34,14 +34,13 @@ for await (const chunk of stream) {
34
34
 
35
35
  ## Models
36
36
 
37
- | Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
38
- | ------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
39
- | `inceptron/MiniMaxAI/MiniMax-M2.5` | 197K | | | | | | $0.15 | $0.90 |
40
- | `inceptron/moonshotai/Kimi-K2.6` | 262K | | | | | | $0.66 | $4 |
41
- | `inceptron/moonshotai/Kimi-K2.6-Fast` | 262K | | | | | | $1 | $7 |
42
- | `inceptron/moonshotai/Kimi-K2.7-Code` | 262K | | | | | | $0.75 | $4 |
43
- | `inceptron/zai-org/GLM-5.1-FP8` | 203K | | | | | | $1 | $4 |
44
- | `inceptron/zai-org/GLM-5.2` | 1.0M | | | | | | $1 | $4 |
37
+ | Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
38
+ | ---------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
39
+ | `inceptron/deepseek-ai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.13 | $0.28 |
40
+ | `inceptron/MiniMaxAI/MiniMax-M2.5` | 197K | | | | | | $0.22 | $0.90 |
41
+ | `inceptron/moonshotai/Kimi-K2.6` | 262K | | | | | | $0.60 | $3 |
42
+ | `inceptron/moonshotai/Kimi-K2.7-Code` | 262K | | | | | | $0.67 | $3 |
43
+ | `inceptron/zai-org/GLM-5.2` | 1.0M | | | | | | $0.75 | $3 |
45
44
 
46
45
  ## Advanced configuration
47
46
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![Kilo Gateway logo](https://models.dev/logos/kilo.svg)Kilo Gateway
4
4
 
5
- Access 353 Kilo Gateway models through Mastra's model router. Authentication is handled automatically using the `KILO_API_KEY` environment variable.
5
+ Access 357 Kilo Gateway models through Mastra's model router. Authentication is handled automatically using the `KILO_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [Kilo Gateway documentation](https://kilo.ai).
8
8
 
@@ -81,6 +81,7 @@ for await (const chunk of stream) {
81
81
  | `kilo/baidu/ernie-4.5-vl-424b-a47b` | 123K | | | | | | $0.42 | $1 |
82
82
  | `kilo/bytedance-seed/seed-1.6` | 262K | | | | | | $0.25 | $2 |
83
83
  | `kilo/bytedance-seed/seed-1.6-flash` | 262K | | | | | | $0.07 | $0.30 |
84
+ | `kilo/bytedance-seed/seed-2-1-turbo` | 262K | | | | | | $0.50 | $3 |
84
85
  | `kilo/bytedance-seed/seed-2.0-code` | 262K | | | | | | $0.50 | $3 |
85
86
  | `kilo/bytedance-seed/seed-2.0-lite` | 262K | | | | | | $0.25 | $2 |
86
87
  | `kilo/bytedance-seed/seed-2.0-mini` | 262K | | | | | | $0.10 | $0.40 |
@@ -105,6 +106,7 @@ for await (const chunk of stream) {
105
106
  | `kilo/deepseek/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
106
107
  | `kilo/deepseek/deepseek-v4-flash:discounted` | 1.0M | | | | | | $0.14 | $0.28 |
107
108
  | `kilo/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $2 | $3 |
109
+ | `kilo/deepseek/deepseek-v4-pro-0813` | 1.0M | | | | | | $0.43 | $0.87 |
108
110
  | `kilo/deepseek/deepseek-v4-pro:discounted` | 1.0M | | | | | | $0.43 | $0.87 |
109
111
  | `kilo/google/gemini-2.5-flash` | 1.0M | | | | | | $0.30 | $3 |
110
112
  | `kilo/google/gemini-2.5-flash-image` | 33K | | | | | | $0.30 | $3 |
@@ -337,6 +339,7 @@ for await (const chunk of stream) {
337
339
  | `kilo/qwen/qwen3.7-flash` | 1.0M | | | | | | $0.03 | $0.13 |
338
340
  | `kilo/qwen/qwen3.7-max` | 1.0M | | | | | | $1 | $4 |
339
341
  | `kilo/qwen/qwen3.7-plus` | 1.0M | | | | | | $0.32 | $1 |
342
+ | `kilo/qwen/qwen3.8-2.4t-a95b` | 262K | | | | | | $2 | $6 |
340
343
  | `kilo/qwen/qwen3.8-max` | 1.0M | | | | | | $2 | $6 |
341
344
  | `kilo/rekaai/reka-edge` | 16K | | | | | | $0.10 | $0.10 |
342
345
  | `kilo/rekaai/reka-flash-3` | 66K | | | | | | $0.10 | $0.20 |
@@ -374,6 +377,7 @@ for await (const chunk of stream) {
374
377
  | `kilo/x-ai/grok-4.20-multi-agent` | 2.0M | | | | | | $1 | $3 |
375
378
  | `kilo/x-ai/grok-4.3` | 1.0M | | | | | | $1 | $3 |
376
379
  | `kilo/x-ai/grok-4.5` | 500K | | | | | | $2 | $6 |
380
+ | `kilo/x-ai/grok-4.6` | 500K | | | | | | $2 | $6 |
377
381
  | `kilo/x-ai/grok-build-0.1` | 256K | | | | | | $1 | $2 |
378
382
  | `kilo/xiaomi/mimo-v2.5` | 1.0M | | | | | | $0.14 | $0.28 |
379
383
  | `kilo/xiaomi/mimo-v2.5-pro` | 1.0M | | | | | | $0.40 | $2 |
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![LLM Gateway logo](https://models.dev/logos/llmgateway.svg)LLM Gateway
4
4
 
5
- Access 184 LLM Gateway models through Mastra's model router. Authentication is handled automatically using the `LLMGATEWAY_API_KEY` environment variable.
5
+ Access 186 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
 
@@ -129,6 +129,7 @@ for await (const chunk of stream) {
129
129
  | `llmgateway/grok-4-20-reasoning` | 2.0M | | | | | | $1 | $3 |
130
130
  | `llmgateway/grok-4-3` | 1.0M | | | | | | $1 | $3 |
131
131
  | `llmgateway/grok-4-5` | 500K | | | | | | $2 | $6 |
132
+ | `llmgateway/grok-4-6` | 500K | | | | | | $2 | $6 |
132
133
  | `llmgateway/grok-build-0-1` | 256K | | | | | | $1 | $2 |
133
134
  | `llmgateway/hermes-4-405b` | 131K | | | | | | $1 | $3 |
134
135
  | `llmgateway/hermes-4-70b` | 131K | | | | | | $0.13 | $0.40 |
@@ -141,6 +142,7 @@ for await (const chunk of stream) {
141
142
  | `llmgateway/kimi-k2.7-code-highspeed` | 262K | | | | | | $2 | $8 |
142
143
  | `llmgateway/kimi-k3` | 1.0M | | | | | | $3 | $15 |
143
144
  | `llmgateway/kimi-k3-fast` | 1.0M | | | | | | $5 | $23 |
145
+ | `llmgateway/ling-3.0-flash` | 262K | | | | | | $0.06 | $0.18 |
144
146
  | `llmgateway/llama-3-70b-instruct` | 8K | | | | | | $0.51 | $0.74 |
145
147
  | `llmgateway/llama-3.1-70b-instruct` | 128K | | | | | | $0.72 | $0.72 |
146
148
  | `llmgateway/llama-3.1-nemotron-ultra-253b` | 128K | | | | | | $0.60 | $2 |
@@ -0,0 +1,262 @@
1
+ > Discover all available pages from the documentation index: https://mastra.ai/llms.txt
2
+
3
+ # ![Merge Gateway logo](https://models.dev/logos/merge-gateway.svg)Merge Gateway
4
+
5
+ Access 166 Merge Gateway models through Mastra's model router. Authentication is handled automatically using the `MERGE_GATEWAY_API_KEY` environment variable.
6
+
7
+ Learn more in the [Merge Gateway documentation](https://docs.merge.dev/merge-gateway).
8
+
9
+ ```bash
10
+ MERGE_GATEWAY_API_KEY=your-api-key
11
+ ```
12
+
13
+ ```typescript
14
+ import { Agent } from "@mastra/core/agent";
15
+
16
+ const agent = new Agent({
17
+ id: "my-agent",
18
+ name: "My Agent",
19
+ instructions: "You are a helpful assistant",
20
+ model: "merge-gateway/anthropic/claude-3-7-sonnet-20250219"
21
+ });
22
+
23
+ // Generate a response
24
+ const response = await agent.generate("Hello!");
25
+
26
+ // Stream a response
27
+ const stream = await agent.stream("Tell me a story");
28
+ for await (const chunk of stream) {
29
+ console.log(chunk);
30
+ }
31
+ ```
32
+
33
+ > **Note:** Mastra uses the OpenAI-compatible `/chat/completions` endpoint. Some provider-specific features may not be available. Check the [Merge Gateway documentation](https://docs.merge.dev/merge-gateway) for details.
34
+
35
+ ## Models
36
+
37
+ | Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
38
+ | -------------------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
39
+ | `merge-gateway/anthropic/claude-3-7-sonnet-20250219` | 200K | | | | | | $3 | $15 |
40
+ | `merge-gateway/anthropic/claude-fable-5` | 1.0M | | | | | | $10 | $50 |
41
+ | `merge-gateway/anthropic/claude-haiku-4-5-20251001` | 200K | | | | | | $1 | $5 |
42
+ | `merge-gateway/anthropic/claude-opus-4-1-20250805` | 200K | | | | | | $15 | $75 |
43
+ | `merge-gateway/anthropic/claude-opus-4-20250514` | 200K | | | | | | $15 | $75 |
44
+ | `merge-gateway/anthropic/claude-opus-4-5-20251101` | 200K | | | | | | $5 | $25 |
45
+ | `merge-gateway/anthropic/claude-opus-4-6` | 1.0M | | | | | | $5 | $25 |
46
+ | `merge-gateway/anthropic/claude-opus-4-7` | 1.0M | | | | | | $5 | $25 |
47
+ | `merge-gateway/anthropic/claude-opus-4-8` | 1.0M | | | | | | $5 | $25 |
48
+ | `merge-gateway/anthropic/claude-opus-5` | 1.0M | | | | | | $5 | $25 |
49
+ | `merge-gateway/anthropic/claude-sonnet-4-20250514` | 200K | | | | | | $3 | $15 |
50
+ | `merge-gateway/anthropic/claude-sonnet-4-5-20250929` | 200K | | | | | | $3 | $15 |
51
+ | `merge-gateway/anthropic/claude-sonnet-4-6` | 1.0M | | | | | | $3 | $15 |
52
+ | `merge-gateway/anthropic/claude-sonnet-5` | 1.0M | | | | | | $2 | $10 |
53
+ | `merge-gateway/bytedance/dola-seed-2.0-code` | 256K | | | | | | $0.40 | $2 |
54
+ | `merge-gateway/bytedance/dola-seed-2.0-code-preview` | 131K | | | | | | $0.50 | $3 |
55
+ | `merge-gateway/bytedance/dola-seed-2.0-lite` | 131K | | | | | | $0.25 | $2 |
56
+ | `merge-gateway/bytedance/dola-seed-2.0-mini` | 131K | | | | | | $0.10 | $0.40 |
57
+ | `merge-gateway/bytedance/dola-seed-2.0-pro` | 131K | | | | | | $0.50 | $3 |
58
+ | `merge-gateway/cohere/command-a-03-2025` | 256K | | | | | | $3 | $10 |
59
+ | `merge-gateway/cohere/command-r-08-2024` | 128K | | | | | | $0.15 | $0.60 |
60
+ | `merge-gateway/cohere/command-r-plus-08-2024` | 128K | | | | | | $3 | $10 |
61
+ | `merge-gateway/cohere/command-r7b-12-2024` | 128K | | | | | | $0.04 | $0.15 |
62
+ | `merge-gateway/deepseek/deepseek-r1` | 164K | | | | | | $1 | $5 |
63
+ | `merge-gateway/deepseek/deepseek-v3` | 164K | | | | | | $0.58 | $2 |
64
+ | `merge-gateway/deepseek/deepseek-v3.1` | 164K | | | | | | $0.50 | $2 |
65
+ | `merge-gateway/deepseek/deepseek-v3.2` | 164K | | | | | | $0.28 | $0.45 |
66
+ | `merge-gateway/deepseek/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
67
+ | `merge-gateway/deepseek/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
68
+ | `merge-gateway/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $0.43 | $0.87 |
69
+ | `merge-gateway/deepseek/deepseek-v4-pro-0813` | 1.0M | | | | | | $0.43 | $0.87 |
70
+ | `merge-gateway/google/gemini-2.5-computer-use-preview-10-2025` | 128K | | | | | | $1 | $10 |
71
+ | `merge-gateway/google/gemini-2.5-flash` | 1.0M | | | | | | $0.30 | $3 |
72
+ | `merge-gateway/google/gemini-2.5-flash-image` | 33K | | | | | | $0.30 | $3 |
73
+ | `merge-gateway/google/gemini-2.5-flash-lite` | 1.0M | | | | | | $0.10 | $0.40 |
74
+ | `merge-gateway/google/gemini-2.5-pro` | 1.0M | | | | | | $1 | $10 |
75
+ | `merge-gateway/google/gemini-3-flash-preview` | 1.0M | | | | | | $0.50 | $3 |
76
+ | `merge-gateway/google/gemini-3-pro-image` | 66K | | | | | | $2 | $12 |
77
+ | `merge-gateway/google/gemini-3-pro-preview` | 1.0M | | | | | | $2 | $12 |
78
+ | `merge-gateway/google/gemini-3.1-flash-image` | 33K | | | | | | $0.50 | $3 |
79
+ | `merge-gateway/google/gemini-3.1-flash-lite` | 1.0M | | | | | | $0.25 | $2 |
80
+ | `merge-gateway/google/gemini-3.1-flash-lite-preview` | 1.0M | | | | | | $0.25 | $2 |
81
+ | `merge-gateway/google/gemini-3.1-pro-preview` | 1.0M | | | | | | $2 | $12 |
82
+ | `merge-gateway/google/gemini-3.1-pro-preview-customtools` | 1.0M | | | | | | $2 | $12 |
83
+ | `merge-gateway/google/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
84
+ | `merge-gateway/google/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
85
+ | `merge-gateway/google/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
86
+ | `merge-gateway/google/gemini-embedding-001` | 2K | | | | | | $0.15 | — |
87
+ | `merge-gateway/google/gemini-flash-latest` | 1.0M | | | | | | $2 | $9 |
88
+ | `merge-gateway/google/gemini-flash-lite-latest` | 1.0M | | | | | | $0.25 | $2 |
89
+ | `merge-gateway/google/gemma-4-26b-a4b-it` | 262K | | | | | | $0.13 | $0.40 |
90
+ | `merge-gateway/google/gemma-4-31b-it` | 262K | | | | | | $0.14 | $0.40 |
91
+ | `merge-gateway/meta/llama-3.3-70b-instruct` | 131K | | | | | | $0.22 | $0.50 |
92
+ | `merge-gateway/meta/muse-spark-1.1` | 1.0M | | | | | | $1 | $4 |
93
+ | `merge-gateway/meta/muse-spark-1.2` | 1.0M | | | | | | $1 | $4 |
94
+ | `merge-gateway/minimax/minimax-m2` | 205K | | | | | | $0.30 | $1 |
95
+ | `merge-gateway/minimax/minimax-m2.1` | 205K | | | | | | $0.30 | $1 |
96
+ | `merge-gateway/minimax/minimax-m2.5` | 205K | | | | | | $0.30 | $1 |
97
+ | `merge-gateway/minimax/minimax-m2.5-highspeed` | 205K | | | | | | $0.60 | $2 |
98
+ | `merge-gateway/minimax/minimax-m2.7` | 205K | | | | | | $0.30 | $1 |
99
+ | `merge-gateway/minimax/minimax-m2.7-highspeed` | 205K | | | | | | $0.60 | $2 |
100
+ | `merge-gateway/minimax/minimax-m3` | 1.0M | | | | | | $0.30 | $1 |
101
+ | `merge-gateway/mistral/codestral-latest` | 256K | | | | | | $0.30 | $0.90 |
102
+ | `merge-gateway/mistral/devstral-2512` | 256K | | | | | | $0.40 | $2 |
103
+ | `merge-gateway/mistral/magistral-medium-latest` | 128K | | | | | | $2 | $5 |
104
+ | `merge-gateway/mistral/mistral-large-2411` | 131K | | | | | | $2 | $6 |
105
+ | `merge-gateway/mistral/mistral-large-2512` | 256K | | | | | | $0.50 | $2 |
106
+ | `merge-gateway/mistral/mistral-large-latest` | 262K | | | | | | $0.50 | $2 |
107
+ | `merge-gateway/mistral/mistral-medium-2505` | 128K | | | | | | $0.40 | $2 |
108
+ | `merge-gateway/mistral/mistral-medium-latest` | 262K | | | | | | $0.40 | $2 |
109
+ | `merge-gateway/mistral/mistral-small-latest` | 256K | | | | | | $0.15 | $0.60 |
110
+ | `merge-gateway/mistral/pixtral-large-latest` | 128K | | | | | | $2 | $6 |
111
+ | `merge-gateway/moonshot/kimi-k2.5` | 262K | | | | | | $0.60 | $3 |
112
+ | `merge-gateway/moonshot/kimi-k2.6` | 262K | | | | | | $0.95 | $4 |
113
+ | `merge-gateway/moonshot/kimi-k2.7-code` | 262K | | | | | | $0.95 | $4 |
114
+ | `merge-gateway/moonshot/kimi-k2.7-code-highspeed` | 262K | | | | | | $2 | $8 |
115
+ | `merge-gateway/moonshot/kimi-k3` | 1.0M | | | | | | $3 | $15 |
116
+ | `merge-gateway/nvidia/nemotron-3.5-lightning-30b-a3b` | 1.0M | | | | | | — | — |
117
+ | `merge-gateway/nvidia/nemotron-nano-9b-v2` | 128K | | | | | | $0.06 | $0.23 |
118
+ | `merge-gateway/openai/gpt-3.5-turbo` | 16K | | | | | | $0.50 | $2 |
119
+ | `merge-gateway/openai/gpt-4` | 8K | | | | | | $30 | $60 |
120
+ | `merge-gateway/openai/gpt-4-turbo` | 128K | | | | | | $10 | $30 |
121
+ | `merge-gateway/openai/gpt-4.1` | 1.0M | | | | | | $2 | $8 |
122
+ | `merge-gateway/openai/gpt-4.1-mini` | 1.0M | | | | | | $0.40 | $2 |
123
+ | `merge-gateway/openai/gpt-4.1-nano` | 1.0M | | | | | | $0.10 | $0.40 |
124
+ | `merge-gateway/openai/gpt-4o` | 128K | | | | | | $3 | $10 |
125
+ | `merge-gateway/openai/gpt-4o-2024-05-13` | 128K | | | | | | $5 | $15 |
126
+ | `merge-gateway/openai/gpt-4o-2024-08-06` | 128K | | | | | | $3 | $10 |
127
+ | `merge-gateway/openai/gpt-4o-2024-11-20` | 128K | | | | | | $3 | $10 |
128
+ | `merge-gateway/openai/gpt-4o-mini` | 128K | | | | | | $0.15 | $0.60 |
129
+ | `merge-gateway/openai/gpt-5` | 400K | | | | | | $1 | $10 |
130
+ | `merge-gateway/openai/gpt-5-chat-latest` | 128K | | | | | | $1 | $10 |
131
+ | `merge-gateway/openai/gpt-5-mini` | 400K | | | | | | $0.25 | $2 |
132
+ | `merge-gateway/openai/gpt-5-nano` | 400K | | | | | | $0.05 | $0.40 |
133
+ | `merge-gateway/openai/gpt-5.1` | 400K | | | | | | $1 | $10 |
134
+ | `merge-gateway/openai/gpt-5.1-chat-latest` | 128K | | | | | | $1 | $10 |
135
+ | `merge-gateway/openai/gpt-5.2` | 400K | | | | | | $2 | $14 |
136
+ | `merge-gateway/openai/gpt-5.2-chat-latest` | 128K | | | | | | $2 | $14 |
137
+ | `merge-gateway/openai/gpt-5.3-chat-latest` | 128K | | | | | | $2 | $14 |
138
+ | `merge-gateway/openai/gpt-5.4` | 1.1M | | | | | | $3 | $15 |
139
+ | `merge-gateway/openai/gpt-5.4-mini` | 400K | | | | | | $0.75 | $5 |
140
+ | `merge-gateway/openai/gpt-5.4-nano` | 400K | | | | | | $0.20 | $1 |
141
+ | `merge-gateway/openai/gpt-5.5` | 1.1M | | | | | | $5 | $30 |
142
+ | `merge-gateway/openai/gpt-5.6-luna` | 1.1M | | | | | | $0.20 | $1 |
143
+ | `merge-gateway/openai/gpt-5.6-sol` | 1.1M | | | | | | $5 | $30 |
144
+ | `merge-gateway/openai/gpt-5.6-terra` | 1.1M | | | | | | $2 | $12 |
145
+ | `merge-gateway/openai/gpt-oss-120b` | 131K | | | | | | $0.09 | $0.36 |
146
+ | `merge-gateway/openai/gpt-oss-20b` | 131K | | | | | | $0.04 | $0.20 |
147
+ | `merge-gateway/openai/gpt-oss-safeguard-120b` | 4K | | | | | | $0.15 | $0.60 |
148
+ | `merge-gateway/openai/o1` | 200K | | | | | | $15 | $60 |
149
+ | `merge-gateway/openai/o3` | 200K | | | | | | $2 | $8 |
150
+ | `merge-gateway/openai/o3-mini` | 200K | | | | | | $1 | $4 |
151
+ | `merge-gateway/openai/o4-mini` | 200K | | | | | | $1 | $4 |
152
+ | `merge-gateway/qwen/qwen-flash` | 1.0M | | | | | | $0.02 | $0.22 |
153
+ | `merge-gateway/qwen/qwen-plus` | 1.0M | | | | | | $0.12 | $0.29 |
154
+ | `merge-gateway/qwen/qwen3-235b-a22b` | 131K | | | | | | $0.29 | $1 |
155
+ | `merge-gateway/qwen/qwen3-235b-a22b-instruct-2507` | 131K | | | | | | $0.10 | $0.60 |
156
+ | `merge-gateway/qwen/qwen3-32b` | 131K | | | | | | $0.15 | $0.60 |
157
+ | `merge-gateway/qwen/qwen3-coder-480b-a35b-instruct` | 131K | | | | | | $0.22 | $2 |
158
+ | `merge-gateway/qwen/qwen3-coder-flash` | 1.0M | | | | | | $0.14 | $0.57 |
159
+ | `merge-gateway/qwen/qwen3-coder-next` | 262K | | | | | | $0.15 | $0.80 |
160
+ | `merge-gateway/qwen/qwen3-coder-plus` | 1.0M | | | | | | $0.57 | $2 |
161
+ | `merge-gateway/qwen/qwen3-max` | 262K | | | | | | $0.36 | $1 |
162
+ | `merge-gateway/qwen/qwen3-next-80b-a3b-instruct` | 131K | | | | | | $0.14 | $0.57 |
163
+ | `merge-gateway/qwen/qwen3-next-80b-a3b-thinking` | 131K | | | | | | $0.15 | $1 |
164
+ | `merge-gateway/qwen/qwen3-vl-plus` | 262K | | | | | | $0.14 | $1 |
165
+ | `merge-gateway/qwen/qwen3.5-122b-a10b` | 256K | | | | | | $0.12 | $0.92 |
166
+ | `merge-gateway/qwen/qwen3.5-27b` | 256K | | | | | | $0.09 | $0.69 |
167
+ | `merge-gateway/qwen/qwen3.5-35b-a3b` | 256K | | | | | | $0.06 | $0.46 |
168
+ | `merge-gateway/qwen/qwen3.5-397b-a17b` | 256K | | | | | | $0.17 | $1 |
169
+ | `merge-gateway/qwen/qwen3.5-9b` | 262K | | | | | | $0.09 | $0.13 |
170
+ | `merge-gateway/qwen/qwen3.5-flash` | 1.0M | | | | | | $0.03 | $0.29 |
171
+ | `merge-gateway/qwen/qwen3.5-plus` | 1.0M | | | | | | $0.12 | $0.69 |
172
+ | `merge-gateway/qwen/qwen3.6-27b` | 131K | | | | | | $0.29 | $2 |
173
+ | `merge-gateway/qwen/qwen3.6-35b-a3b` | 262K | | | | | | $0.25 | $1 |
174
+ | `merge-gateway/qwen/qwen3.6-flash` | 1.0M | | | | | | $0.17 | $0.99 |
175
+ | `merge-gateway/qwen/qwen3.6-max-preview` | 256K | | | | | | $1 | $8 |
176
+ | `merge-gateway/qwen/qwen3.6-plus` | 1.0M | | | | | | $0.28 | $2 |
177
+ | `merge-gateway/qwen/qwen3.7-max` | 1.0M | | | | | | $0.82 | $2 |
178
+ | `merge-gateway/qwen/qwen3.7-plus` | 1.0M | | | | | | $0.40 | $2 |
179
+ | `merge-gateway/qwen/qwen3.8-max` | 1.0M | | | | | | $2 | $6 |
180
+ | `merge-gateway/sakana/fugu-ultra` | 1.0M | | | | | | $5 | $30 |
181
+ | `merge-gateway/thinkingmachines/inkling` | 1.0M | | | | | | $1 | $4 |
182
+ | `merge-gateway/writer/palmyra-x4` | 128K | | | | | | $3 | $10 |
183
+ | `merge-gateway/writer/palmyra-x5` | 1.0M | | | | | | $0.60 | $6 |
184
+ | `merge-gateway/xai/grok-4.20-0309-non-reasoning` | 1.0M | | | | | | $1 | $3 |
185
+ | `merge-gateway/xai/grok-4.20-0309-reasoning` | 1.0M | | | | | | $1 | $3 |
186
+ | `merge-gateway/xai/grok-4.3` | 1.0M | | | | | | $1 | $3 |
187
+ | `merge-gateway/xai/grok-4.5` | 500K | | | | | | $2 | $6 |
188
+ | `merge-gateway/xai/grok-4.6` | 500K | | | | | | $2 | $5 |
189
+ | `merge-gateway/xai/grok-build-0.1` | 256K | | | | | | $1 | $2 |
190
+ | `merge-gateway/zai/glm-4.5` | 128K | | | | | | $0.60 | $2 |
191
+ | `merge-gateway/zai/glm-4.5-air` | 128K | | | | | | $0.20 | $1 |
192
+ | `merge-gateway/zai/glm-4.5v` | 128K | | | | | | $0.60 | $2 |
193
+ | `merge-gateway/zai/glm-4.6` | 200K | | | | | | $0.60 | $2 |
194
+ | `merge-gateway/zai/glm-4.7` | 200K | | | | | | $0.60 | $2 |
195
+ | `merge-gateway/zai/glm-4.7-flash` | 200K | | | | | | $0.07 | $0.40 |
196
+ | `merge-gateway/zai/glm-4.7-flashx` | 200K | | | | | | $0.07 | $0.40 |
197
+ | `merge-gateway/zai/glm-5` | 200K | | | | | | $1 | $3 |
198
+ | `merge-gateway/zai/glm-5-turbo` | 200K | | | | | | $1 | $4 |
199
+ | `merge-gateway/zai/glm-5.1` | 200K | | | | | | $1 | $4 |
200
+ | `merge-gateway/zai/glm-5.2` | 1.0M | | | | | | $1 | $3 |
201
+
202
+ ## Advanced configuration
203
+
204
+ ### Custom headers
205
+
206
+ ```typescript
207
+ const agent = new Agent({
208
+ id: "custom-agent",
209
+ name: "custom-agent",
210
+ model: {
211
+ url: "https://api-gateway.merge.dev/v1/ai-sdk",
212
+ id: "merge-gateway/anthropic/claude-3-7-sonnet-20250219",
213
+ apiKey: process.env.MERGE_GATEWAY_API_KEY,
214
+ headers: {
215
+ "X-Custom-Header": "value"
216
+ }
217
+ }
218
+ });
219
+ ```
220
+
221
+ ### Dynamic model selection
222
+
223
+ ```typescript
224
+ const agent = new Agent({
225
+ id: "dynamic-agent",
226
+ name: "Dynamic Agent",
227
+ model: ({ requestContext }) => {
228
+ const useAdvanced = requestContext.task === "complex";
229
+ return useAdvanced
230
+ ? "merge-gateway/zai/glm-5.2"
231
+ : "merge-gateway/anthropic/claude-3-7-sonnet-20250219";
232
+ }
233
+ });
234
+ ```
235
+
236
+ ## Direct provider installation
237
+
238
+ 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/merge-gateway-ai-sdk-provider) for more details.
239
+
240
+ **npm**:
241
+
242
+ ```bash
243
+ npm install merge-gateway-ai-sdk-provider
244
+ ```
245
+
246
+ **pnpm**:
247
+
248
+ ```bash
249
+ pnpm add merge-gateway-ai-sdk-provider
250
+ ```
251
+
252
+ **Yarn**:
253
+
254
+ ```bash
255
+ yarn add merge-gateway-ai-sdk-provider
256
+ ```
257
+
258
+ **Bun**:
259
+
260
+ ```bash
261
+ bun add merge-gateway-ai-sdk-provider
262
+ ```
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![NanoGPT logo](https://models.dev/logos/nano-gpt.svg)NanoGPT
4
4
 
5
- Access 622 NanoGPT models through Mastra's model router. Authentication is handled automatically using the `NANO_GPT_API_KEY` environment variable.
5
+ Access 598 NanoGPT models through Mastra's model router. Authentication is handled automatically using the `NANO_GPT_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [NanoGPT documentation](https://docs.nano-gpt.com).
8
8
 
@@ -88,6 +88,8 @@ for await (const chunk of stream) {
88
88
  | `nano-gpt/brave` | 8K | | | | | | $5 | $5 |
89
89
  | `nano-gpt/brave-pro` | 8K | | | | | | $5 | $5 |
90
90
  | `nano-gpt/brave-research` | 16K | | | | | | $5 | $5 |
91
+ | `nano-gpt/bytedance-seed/seed-2-1-turbo` | 262K | | | | | | $0.50 | $3 |
92
+ | `nano-gpt/bytedance-seed/seed-2.0-code` | 262K | | | | | | $0.50 | $3 |
91
93
  | `nano-gpt/bytedance-seed/seed-2.0-lite` | 262K | | | | | | $0.25 | $2 |
92
94
  | `nano-gpt/bytedance/doubao-seed-2.1-pro` | 256K | | | | | | $1 | $5 |
93
95
  | `nano-gpt/bytedance/doubao-seed-2.1-turbo` | 256K | | | | | | $0.50 | $3 |
@@ -143,7 +145,7 @@ for await (const chunk of stream) {
143
145
  | `nano-gpt/deepseek-reasoner` | 64K | | | | | | $0.40 | $2 |
144
146
  | `nano-gpt/deepseek-reasoner-cheaper` | 128K | | | | | | $0.40 | $2 |
145
147
  | `nano-gpt/deepseek-v3-0324` | 128K | | | | | | $0.20 | $0.77 |
146
- | `nano-gpt/deepseek/deepseek-latest` | 1.0M | | | | | | $1 | $2 |
148
+ | `nano-gpt/deepseek/deepseek-latest` | 1.0M | | | | | | $0.43 | $0.87 |
147
149
  | `nano-gpt/deepseek/deepseek-prover-v2-671b` | 160K | | | | | | $1 | $3 |
148
150
  | `nano-gpt/deepseek/deepseek-v3.2` | 163K | | | | | | $0.28 | $0.42 |
149
151
  | `nano-gpt/deepseek/deepseek-v3.2:thinking` | 163K | | | | | | $0.28 | $0.42 |
@@ -155,6 +157,8 @@ for await (const chunk of stream) {
155
157
  | `nano-gpt/deepseek/deepseek-v4-flash-latest` | 1.0M | | | | | | $0.14 | $0.28 |
156
158
  | `nano-gpt/deepseek/deepseek-v4-flash:thinking` | 1.0M | | | | | | $0.07 | $0.14 |
157
159
  | `nano-gpt/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $1 | $2 |
160
+ | `nano-gpt/deepseek/deepseek-v4-pro-0813` | 1.0M | | | | | | $0.43 | $0.87 |
161
+ | `nano-gpt/deepseek/deepseek-v4-pro-0813:thinking` | 1.0M | | | | | | $0.43 | $0.87 |
158
162
  | `nano-gpt/deepseek/deepseek-v4-pro-cheaper` | 1.0M | | | | | | $0.43 | $0.87 |
159
163
  | `nano-gpt/deepseek/deepseek-v4-pro-cheaper:thinking` | 1.0M | | | | | | $0.43 | $0.87 |
160
164
  | `nano-gpt/deepseek/deepseek-v4-pro:thinking` | 1.0M | | | | | | $1 | $2 |
@@ -211,8 +215,6 @@ for await (const chunk of stream) {
211
215
  | `nano-gpt/Gemma-4-31B-Cognitive-Unshackled` | 262K | | | | | | $0.31 | $0.31 |
212
216
  | `nano-gpt/Gemma-4-31B-DarkIdol` | 262K | | | | | | $0.31 | $0.31 |
213
217
  | `nano-gpt/Gemma-4-31B-GarnetV2` | 262K | | | | | | $0.31 | $0.31 |
214
- | `nano-gpt/Gemma-4-31B-Gemopus` | 262K | | | | | | $0.31 | $0.31 |
215
- | `nano-gpt/Gemma-4-31B-Musica-v1` | 262K | | | | | | $0.31 | $0.31 |
216
218
  | `nano-gpt/Gemma-4-31B-Queen` | 262K | | | | | | $0.31 | $0.31 |
217
219
  | `nano-gpt/gemma-4-e2b-it` | 131K | | | | | | $0.02 | $0.10 |
218
220
  | `nano-gpt/gemma-4-e4b-it` | 131K | | | | | | $0.04 | $0.20 |
@@ -282,6 +284,7 @@ for await (const chunk of stream) {
282
284
  | `nano-gpt/kwaipilot/kat-coder-pro-v2.5` | 256K | | | | | | $0.74 | $3 |
283
285
  | `nano-gpt/LatitudeGames/Wayfarer-Large-70B-Llama-3.3` | 16K | | | | | | $0.70 | $0.70 |
284
286
  | `nano-gpt/learnlm-1.5-pro-experimental` | 33K | | | | | | $4 | $11 |
287
+ | `nano-gpt/liquid/lfm-2.5-2.6b` | 128K | | | | | | $0.10 | $0.20 |
285
288
  | `nano-gpt/LLM360/K2-Think` | 128K | | | | | | $0.17 | $0.68 |
286
289
  | `nano-gpt/longcat-2.0` | 1.0M | | | | | | $0.75 | $3 |
287
290
  | `nano-gpt/longcat-2.0:thinking` | 1.0M | | | | | | $0.75 | $3 |
@@ -373,6 +376,8 @@ for await (const chunk of stream) {
373
376
  | `nano-gpt/nvidia/nemotron-3-super-120b-a12b:thinking` | 262K | | | | | | $0.05 | $0.25 |
374
377
  | `nano-gpt/nvidia/nemotron-3-ultra-550b-a55b` | 1.0M | | | | | | $0.50 | $3 |
375
378
  | `nano-gpt/nvidia/nemotron-3-ultra-550b-a55b:thinking` | 1.0M | | | | | | $0.50 | $3 |
379
+ | `nano-gpt/nvidia/nemotron-3.5-lightning` | 1.0M | | | | | | $0.05 | $0.20 |
380
+ | `nano-gpt/nvidia/nemotron-3.5-lightning:thinking` | 1.0M | | | | | | $0.05 | $0.20 |
376
381
  | `nano-gpt/openai/gpt-3.5-turbo` | 16K | | | | | | $0.50 | $2 |
377
382
  | `nano-gpt/openai/gpt-4-turbo` | 128K | | | | | | $10 | $30 |
378
383
  | `nano-gpt/openai/gpt-4-turbo-preview` | 128K | | | | | | $10 | $30 |
@@ -474,36 +479,8 @@ for await (const chunk of stream) {
474
479
  | `nano-gpt/qwen3.5-122b-a10b` | 131K | | | | | | $0.44 | $3 |
475
480
  | `nano-gpt/qwen3.5-122b-a10b:thinking` | 131K | | | | | | $0.44 | $3 |
476
481
  | `nano-gpt/qwen3.5-27b` | 260K | | | | | | $0.27 | $2 |
477
- | `nano-gpt/Qwen3.5-27B-Anko` | 262K | | | | | | $0.31 | $0.31 |
478
- | `nano-gpt/Qwen3.5-27B-BlueStar-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
479
- | `nano-gpt/Qwen3.5-27B-BlueStar-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
480
- | `nano-gpt/Qwen3.5-27B-BlueStar-v2-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
481
- | `nano-gpt/Qwen3.5-27B-BlueStar-v2-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
482
482
  | `nano-gpt/Qwen3.5-27B-BlueStar-v3-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
483
- | `nano-gpt/Qwen3.5-27B-BlueStar-v3-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
484
- | `nano-gpt/Qwen3.5-27B-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
485
- | `nano-gpt/Qwen3.5-27B-earica-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
486
- | `nano-gpt/Qwen3.5-27B-earica-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
487
- | `nano-gpt/Qwen3.5-27B-Infracelestial` | 262K | | | | | | $0.31 | $0.31 |
488
- | `nano-gpt/Qwen3.5-27B-Marvin-DPO-V2-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
489
- | `nano-gpt/Qwen3.5-27B-Marvin-DPO-V2-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
490
- | `nano-gpt/Qwen3.5-27B-Marvin-V2-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
491
- | `nano-gpt/Qwen3.5-27B-Marvin-V2-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
492
- | `nano-gpt/Qwen3.5-27B-Musica-v1` | 262K | | | | | | $0.31 | $0.31 |
493
- | `nano-gpt/Qwen3.5-27B-NaNovel-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
494
- | `nano-gpt/Qwen3.5-27B-NaNovel-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
495
- | `nano-gpt/Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
496
- | `nano-gpt/Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
497
- | `nano-gpt/Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
498
- | `nano-gpt/Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
499
483
  | `nano-gpt/Qwen3.5-27B-Queen-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
500
- | `nano-gpt/Qwen3.5-27B-Queen-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
501
- | `nano-gpt/Qwen3.5-27B-RpRMax-v1` | 262K | | | | | | $0.31 | $0.31 |
502
- | `nano-gpt/Qwen3.5-27B-Vivid-Durian` | 262K | | | | | | $0.31 | $0.31 |
503
- | `nano-gpt/Qwen3.5-27B-Writer-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
504
- | `nano-gpt/Qwen3.5-27B-Writer-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
505
- | `nano-gpt/Qwen3.5-27B-Writer-V2-Derestricted` | 262K | | | | | | $0.31 | $0.31 |
506
- | `nano-gpt/Qwen3.5-27B-Writer-V2-Derestricted-Lite` | 262K | | | | | | $0.31 | $0.31 |
507
484
  | `nano-gpt/qwen3.5-27b:thinking` | 260K | | | | | | $0.27 | $2 |
508
485
  | `nano-gpt/qwen3.5-35b-a3b` | 260K | | | | | | $0.23 | $2 |
509
486
  | `nano-gpt/qwen3.5-35b-a3b:thinking` | 260K | | | | | | $0.23 | $2 |
@@ -519,12 +496,10 @@ for await (const chunk of stream) {
519
496
  | `nano-gpt/qwen3.7-plus` | 992K | | | | | | $0.40 | $2 |
520
497
  | `nano-gpt/qwen3.7-plus:thinking` | 984K | | | | | | $0.40 | $2 |
521
498
  | `nano-gpt/qwen3.8-max` | 991K | | | | | | $2 | $6 |
522
- | `nano-gpt/qwen3.8-max-preview` | 991K | | | | | | $2 | $5 |
523
499
  | `nano-gpt/qwen3.8-max:thinking` | 991K | | | | | | $2 | $6 |
524
500
  | `nano-gpt/ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0` | 16K | | | | | | $0.50 | $0.50 |
525
501
  | `nano-gpt/sakana/fugu-ultra` | 1.0M | | | | | | $5 | $32 |
526
502
  | `nano-gpt/sakana/fugu-ultra-v1.1` | 1.0M | | | | | | $5 | $32 |
527
- | `nano-gpt/sakana/sakana-namazu` | 262K | | | | | | $1.00 | $4 |
528
503
  | `nano-gpt/Salesforce/Llama-xLAM-2-70b-fc-r` | 128K | | | | | | $3 | $3 |
529
504
  | `nano-gpt/Sao10K/L3-8B-Stheno-v3.2` | 16K | | | | | | $0.20 | $0.20 |
530
505
  | `nano-gpt/Sao10K/L3.1-70B-Euryale-v2.2` | 20K | | | | | | $0.31 | $0.36 |
@@ -613,6 +588,7 @@ for await (const chunk of stream) {
613
588
  | `nano-gpt/x-ai/grok-4.20-multi-agent` | 2.0M | | | | | | $2 | $6 |
614
589
  | `nano-gpt/x-ai/grok-4.3` | 1.0M | | | | | | $1 | $3 |
615
590
  | `nano-gpt/x-ai/grok-4.5` | 500K | | | | | | $2 | $6 |
591
+ | `nano-gpt/x-ai/grok-4.6` | 500K | | | | | | $2 | $6 |
616
592
  | `nano-gpt/x-ai/grok-build-0.1` | 256K | | | | | | $1 | $2 |
617
593
  | `nano-gpt/x-ai/grok-latest` | 500K | | | | | | $2 | $6 |
618
594
  | `nano-gpt/xiaomi/mimo-v2.5` | 1.0M | | | | | | $0.14 | $0.28 |
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![OpenCode Zen logo](https://models.dev/logos/opencode.svg)OpenCode Zen
4
4
 
5
- Access 88 OpenCode Zen models through Mastra's model router. Authentication is handled automatically using the `OPENCODE_API_KEY` environment variable.
5
+ Access 89 OpenCode Zen models through Mastra's model router. Authentication is handled automatically using the `OPENCODE_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [OpenCode Zen documentation](https://opencode.ai/docs/zen).
8
8
 
@@ -80,6 +80,7 @@ for await (const chunk of stream) {
80
80
  | `opencode/gpt-5.6-sol` | 1.1M | | | | | | $5 | $30 |
81
81
  | `opencode/gpt-5.6-terra` | 1.1M | | | | | | $3 | $15 |
82
82
  | `opencode/grok-4.5` | 500K | | | | | | $2 | $6 |
83
+ | `opencode/grok-4.6` | 500K | | | | | | $2 | $6 |
83
84
  | `opencode/grok-build-0.1` | 256K | | | | | | $1 | $2 |
84
85
  | `opencode/hy3-free` | 190K | | | | | | — | — |
85
86
  | `opencode/kimi-k2.5` | 262K | | | | | | $0.60 | $3 |
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![Tinfoil logo](https://models.dev/logos/tinfoil.svg)Tinfoil
4
4
 
5
- Access 7 Tinfoil models through Mastra's model router. Authentication is handled automatically using the `TINFOIL_API_KEY` environment variable.
5
+ Access 8 Tinfoil models through Mastra's model router. Authentication is handled automatically using the `TINFOIL_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [Tinfoil documentation](https://docs.tinfoil.sh).
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: "tinfoil/gemma4-31b"
20
+ model: "tinfoil/deepseek-v4-flash"
21
21
  });
22
22
 
23
23
  // Generate a response
@@ -36,12 +36,13 @@ for await (const chunk of stream) {
36
36
 
37
37
  | Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
38
38
  | -------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
39
- | `tinfoil/gemma4-31b` | 256K | | | | | | $0.40 | $1 |
40
- | `tinfoil/glm-5-2` | 384K | | | | | | $2 | $5 |
39
+ | `tinfoil/deepseek-v4-flash` | 1.0M | | | | | | $0.70 | $2 |
40
+ | `tinfoil/gemma4-31b` | 262K | | | | | | $0.40 | $1 |
41
+ | `tinfoil/glm-5-2` | 393K | | | | | | $2 | $5 |
41
42
  | `tinfoil/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
42
43
  | `tinfoil/gpt-oss-safeguard-120b` | 131K | | | | | | $0.15 | $0.60 |
43
- | `tinfoil/kimi-k3` | 256K | | | | | | $2 | $6 |
44
- | `tinfoil/llama3-3-70b` | 128K | | | | | | $2 | $3 |
44
+ | `tinfoil/kimi-k3` | 262K | | | | | | $4 | $20 |
45
+ | `tinfoil/llama3-3-70b` | 131K | | | | | | $2 | $3 |
45
46
  | `tinfoil/nomic-embed-text` | 8K | | | | | | $0.05 | — |
46
47
 
47
48
  ## Advanced configuration
@@ -54,7 +55,7 @@ const agent = new Agent({
54
55
  name: "custom-agent",
55
56
  model: {
56
57
  url: "https://inference.tinfoil.sh/v1",
57
- id: "tinfoil/gemma4-31b",
58
+ id: "tinfoil/deepseek-v4-flash",
58
59
  apiKey: process.env.TINFOIL_API_KEY,
59
60
  headers: {
60
61
  "X-Custom-Header": "value"
@@ -73,7 +74,7 @@ const agent = new Agent({
73
74
  const useAdvanced = requestContext.task === "complex";
74
75
  return useAdvanced
75
76
  ? "tinfoil/nomic-embed-text"
76
- : "tinfoil/gemma4-31b";
77
+ : "tinfoil/deepseek-v4-flash";
77
78
  }
78
79
  });
79
80
  ```
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![xAI logo](https://models.dev/logos/xai.svg)xAI
4
4
 
5
- Access 10 xAI models through Mastra's model router. Authentication is handled automatically using the `XAI_API_KEY` environment variable.
5
+ Access 11 xAI models through Mastra's model router. Authentication is handled automatically using the `XAI_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [xAI documentation](https://docs.x.ai/docs/models).
8
8
 
@@ -39,6 +39,7 @@ for await (const chunk of stream) {
39
39
  | `xai/grok-4.20-multi-agent-0309` | 1.0M | | | | | | $1 | $3 |
40
40
  | `xai/grok-4.3` | 1.0M | | | | | | $1 | $3 |
41
41
  | `xai/grok-4.5` | 500K | | | | | | $2 | $6 |
42
+ | `xai/grok-4.6` | 500K | | | | | | $2 | $6 |
42
43
  | `xai/grok-build-0.1` | 256K | | | | | | $1 | $2 |
43
44
  | `xai/grok-imagine-image` | 8K | | | | | | — | — |
44
45
  | `xai/grok-imagine-image-quality` | 8K | | | | | | — | — |
@@ -50,6 +50,7 @@ Direct access to individual AI model providers. Each provider offers unique mode
50
50
  - [DigitalOcean](https://mastra.ai/models/providers/digitalocean)
51
51
  - [DInference](https://mastra.ai/models/providers/dinference)
52
52
  - [EBCloud](https://mastra.ai/models/providers/ebcloud)
53
+ - [Eden AI](https://mastra.ai/models/providers/edenai)
53
54
  - [EmpirioLabs AI](https://mastra.ai/models/providers/empiriolabs)
54
55
  - [evroc](https://mastra.ai/models/providers/evroc)
55
56
  - [FastRouter](https://mastra.ai/models/providers/fastrouter)
@@ -85,6 +86,7 @@ Direct access to individual AI model providers. Each provider offers unique mode
85
86
  - [LucidQuery](https://mastra.ai/models/providers/lucidquery)
86
87
  - [Lynkr](https://mastra.ai/models/providers/lynkr)
87
88
  - [Meganova](https://mastra.ai/models/providers/meganova)
89
+ - [Merge Gateway](https://mastra.ai/models/providers/merge-gateway)
88
90
  - [Meta](https://mastra.ai/models/providers/meta)
89
91
  - [MiniMax (minimax.io)](https://mastra.ai/models/providers/minimax)
90
92
  - [MiniMax (minimaxi.com)](https://mastra.ai/models/providers/minimax-cn)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.2.16-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`aa3e7be`](https://github.com/mastra-ai/mastra/commit/aa3e7be30f8addb0278ea74429f4df054517a287), [`90822db`](https://github.com/mastra-ai/mastra/commit/90822dba08fb2169c518e4a6d7f127c098eb46b8), [`3700208`](https://github.com/mastra-ai/mastra/commit/37002080c7838267803a7e579a7d58b908d62f36), [`8b7131e`](https://github.com/mastra-ai/mastra/commit/8b7131eb0407f58f5205e68fb27b81f026488f28), [`79c4f82`](https://github.com/mastra-ai/mastra/commit/79c4f8295f568752eeadf8a9b50010a7d9ec06ae)]:
8
+ - @mastra/core@1.59.0-alpha.1
9
+
3
10
  ## 1.2.16-alpha.0
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.16-alpha.1",
3
+ "version": "1.2.16-alpha.3",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,8 +28,8 @@
28
28
  "jsdom": "^26.1.0",
29
29
  "local-pkg": "^1.1.2",
30
30
  "zod": "^4.4.3",
31
- "@mastra/mcp": "^1.16.0",
32
- "@mastra/core": "1.59.0-alpha.0"
31
+ "@mastra/core": "1.59.0-alpha.1",
32
+ "@mastra/mcp": "^1.16.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@hono/node-server": "^2.0.0",
@@ -47,7 +47,7 @@
47
47
  "vitest": "4.1.10",
48
48
  "@internal/lint": "0.0.122",
49
49
  "@internal/types-builder": "0.0.97",
50
- "@mastra/core": "1.59.0-alpha.0"
50
+ "@mastra/core": "1.59.0-alpha.1"
51
51
  },
52
52
  "homepage": "https://mastra.ai",
53
53
  "repository": {