@mastra/mcp-docs-server 1.2.16 → 1.2.17-alpha.1
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/environment-variables.md +1 -0
- package/.docs/models/gateways/vercel.md +3 -1
- package/.docs/models/index.md +1 -1
- package/.docs/models/providers/crusoe.md +80 -0
- package/.docs/models/providers/fireworks-ai.md +25 -20
- package/.docs/models/providers/huggingface.md +2 -1
- package/.docs/models/providers/hyper.md +1 -1
- package/.docs/models/providers/kilo.md +3 -3
- package/.docs/models/providers/llmgateway.md +3 -2
- package/.docs/models/providers/merge-gateway.md +3 -2
- package/.docs/models/providers/nano-gpt.md +2 -1
- package/.docs/models/providers/opencode.md +2 -1
- package/.docs/models/providers/requesty.md +3 -1
- package/.docs/models/providers.md +1 -0
- package/CHANGELOG.md +7 -0
- package/package.json +4 -4
|
@@ -39,6 +39,7 @@ List of required environment variables for each model provider and gateway suppo
|
|
|
39
39
|
| [Cortecs](https://mastra.ai/models/providers/cortecs) | `cortecs/*` | `CORTECS_API_KEY` |
|
|
40
40
|
| [CrofAI](https://mastra.ai/models/providers/crof) | `crof/*` | `CROF_API_KEY` |
|
|
41
41
|
| [CrossModel](https://mastra.ai/models/providers/crossmodel) | `crossmodel/*` | `CROSSMODEL_API_KEY` |
|
|
42
|
+
| [Crusoe](https://mastra.ai/models/providers/crusoe) | `crusoe/*` | `CRUSOE_API_KEY` |
|
|
42
43
|
| [D.Run (China)](https://mastra.ai/models/providers/drun) | `drun/*` | `DRUN_API_KEY` |
|
|
43
44
|
| [DaoXE](https://mastra.ai/models/providers/daoxe) | `daoxe/*` | `DAOXE_API_KEY` |
|
|
44
45
|
| [Databricks](https://mastra.ai/models/providers/databricks) | `databricks/*` | `DATABRICKS_HOST`, `DATABRICKS_TOKEN` |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Vercel
|
|
4
4
|
|
|
5
|
-
Vercel aggregates models from multiple providers with enhanced features like rate limiting and failover. Access
|
|
5
|
+
Vercel aggregates models from multiple providers with enhanced features like rate limiting and failover. Access 328 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
|
|
|
@@ -64,6 +64,7 @@ ANTHROPIC_API_KEY=ant-...
|
|
|
64
64
|
| `alibaba/qwen3.7-flash` |
|
|
65
65
|
| `alibaba/qwen3.7-max` |
|
|
66
66
|
| `alibaba/qwen3.7-plus` |
|
|
67
|
+
| `alibaba/qwen3.8-2.4t-a95b` |
|
|
67
68
|
| `alibaba/qwen3.8-max` |
|
|
68
69
|
| `alibaba/wan-v2.5-t2v-preview` |
|
|
69
70
|
| `alibaba/wan-v2.6-i2v` |
|
|
@@ -151,6 +152,7 @@ ANTHROPIC_API_KEY=ant-...
|
|
|
151
152
|
| `google/gemini-3.5-flash` |
|
|
152
153
|
| `google/gemini-3.5-flash-lite` |
|
|
153
154
|
| `google/gemini-3.6-flash` |
|
|
155
|
+
| `google/gemini-3.7-flash` |
|
|
154
156
|
| `google/gemini-embedding-001` |
|
|
155
157
|
| `google/gemini-embedding-2` |
|
|
156
158
|
| `google/gemini-omni-flash-preview` |
|
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 5683 models from 172 providers through a single API.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
> Discover all available pages from the documentation index: https://mastra.ai/llms.txt
|
|
2
|
+
|
|
3
|
+
# Crusoe
|
|
4
|
+
|
|
5
|
+
Access 8 Crusoe models through Mastra's model router. Authentication is handled automatically using the `CRUSOE_API_KEY` environment variable.
|
|
6
|
+
|
|
7
|
+
Learn more in the [Crusoe documentation](https://docs.crusoecloud.com/managed-inference/overview).
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
CRUSOE_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: "crusoe/deepseek-ai/DeepSeek-V3-0324"
|
|
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 [Crusoe documentation](https://docs.crusoecloud.com/managed-inference/overview) for details.
|
|
34
|
+
|
|
35
|
+
## Models
|
|
36
|
+
|
|
37
|
+
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
|
+
| ------------------------------------------------------ | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
|
+
| `crusoe/deepseek-ai/DeepSeek-V3-0324` | 164K | | | | | | $0.50 | $2 |
|
|
40
|
+
| `crusoe/google/gemma-4-31b-it` | 262K | | | | | | $0.14 | $0.40 |
|
|
41
|
+
| `crusoe/meta-llama/Llama-3.3-70B-Instruct` | 128K | | | | | | $0.25 | $0.75 |
|
|
42
|
+
| `crusoe/moonshotai/Kimi-K2.6` | 262K | | | | | | $0.70 | $4 |
|
|
43
|
+
| `crusoe/nvidia/Nemotron-3-Nano-Omni-Reasoning-30B-A3B` | 256K | | | | | | $0.30 | $2 |
|
|
44
|
+
| `crusoe/openai/gpt-oss-120b` | 131K | | | | | | $0.05 | $0.20 |
|
|
45
|
+
| `crusoe/zai/GLM-5.1` | 200K | | | | | | $1 | $4 |
|
|
46
|
+
| `crusoe/zai/GLM-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
47
|
+
|
|
48
|
+
## Advanced configuration
|
|
49
|
+
|
|
50
|
+
### Custom headers
|
|
51
|
+
|
|
52
|
+
```typescript
|
|
53
|
+
const agent = new Agent({
|
|
54
|
+
id: "custom-agent",
|
|
55
|
+
name: "custom-agent",
|
|
56
|
+
model: {
|
|
57
|
+
url: "https://api.inference.crusoecloud.com/v1",
|
|
58
|
+
id: "crusoe/deepseek-ai/DeepSeek-V3-0324",
|
|
59
|
+
apiKey: process.env.CRUSOE_API_KEY,
|
|
60
|
+
headers: {
|
|
61
|
+
"X-Custom-Header": "value"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Dynamic model selection
|
|
68
|
+
|
|
69
|
+
```typescript
|
|
70
|
+
const agent = new Agent({
|
|
71
|
+
id: "dynamic-agent",
|
|
72
|
+
name: "Dynamic Agent",
|
|
73
|
+
model: ({ requestContext }) => {
|
|
74
|
+
const useAdvanced = requestContext.task === "complex";
|
|
75
|
+
return useAdvanced
|
|
76
|
+
? "crusoe/zai/GLM-5.2"
|
|
77
|
+
: "crusoe/deepseek-ai/DeepSeek-V3-0324";
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Fireworks AI
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 22 Fireworks AI models through Mastra's model router. Authentication is handled automatically using the `FIREWORKS_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Fireworks AI documentation](https://fireworks.ai/docs/).
|
|
8
8
|
|
|
@@ -34,25 +34,30 @@ for await (const chunk of stream) {
|
|
|
34
34
|
|
|
35
35
|
## Models
|
|
36
36
|
|
|
37
|
-
| Model
|
|
38
|
-
|
|
|
39
|
-
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash`
|
|
40
|
-
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash-0731`
|
|
41
|
-
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro`
|
|
42
|
-
| `fireworks-ai/accounts/fireworks/models/glm-5p2`
|
|
43
|
-
| `fireworks-ai/accounts/fireworks/models/gpt-oss-120b`
|
|
44
|
-
| `fireworks-ai/accounts/fireworks/models/gpt-oss-20b`
|
|
45
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
46
|
-
| `fireworks-ai/accounts/fireworks/models/kimi-
|
|
47
|
-
| `fireworks-ai/accounts/fireworks/models/kimi-
|
|
48
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
49
|
-
| `fireworks-ai/accounts/fireworks/models/minimax-
|
|
50
|
-
| `fireworks-ai/accounts/fireworks/models/
|
|
51
|
-
| `fireworks-ai/accounts/fireworks/
|
|
52
|
-
| `fireworks-ai/accounts/fireworks/
|
|
53
|
-
| `fireworks-ai/accounts/fireworks/
|
|
54
|
-
| `fireworks-ai/accounts/fireworks/
|
|
55
|
-
| `fireworks-ai/accounts/fireworks/
|
|
37
|
+
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
|
+
| ----------------------------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
40
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
41
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro` | 1.0M | | | | | | $2 | $3 |
|
|
42
|
+
| `fireworks-ai/accounts/fireworks/models/glm-5p2` | 1.0M | | | | | | $1 | $4 |
|
|
43
|
+
| `fireworks-ai/accounts/fireworks/models/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
44
|
+
| `fireworks-ai/accounts/fireworks/models/gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
45
|
+
| `fireworks-ai/accounts/fireworks/models/inkling` | 1.0M | | | | | | $1 | $4 |
|
|
46
|
+
| `fireworks-ai/accounts/fireworks/models/kimi-k2p6` | 262K | | | | | | $0.95 | $4 |
|
|
47
|
+
| `fireworks-ai/accounts/fireworks/models/kimi-k2p7-code` | 262K | | | | | | $0.95 | $4 |
|
|
48
|
+
| `fireworks-ai/accounts/fireworks/models/kimi-k3` | 1.0M | | | | | | $3 | $15 |
|
|
49
|
+
| `fireworks-ai/accounts/fireworks/models/minimax-m2p7` | 197K | | | | | | $0.30 | $1 |
|
|
50
|
+
| `fireworks-ai/accounts/fireworks/models/minimax-m3` | 512K | | | | | | $0.30 | $1 |
|
|
51
|
+
| `fireworks-ai/accounts/fireworks/models/muse-glimmer-30b` | 131K | | | | | | $0.35 | $2 |
|
|
52
|
+
| `fireworks-ai/accounts/fireworks/models/nemotron-3-ultra-nvfp4` | 262K | | | | | | $0.60 | $2 |
|
|
53
|
+
| `fireworks-ai/accounts/fireworks/models/nemotron-lightning-3p5-30b-a3b` | 262K | | | | | | $0.05 | $0.20 |
|
|
54
|
+
| `fireworks-ai/accounts/fireworks/models/qwen3p7-plus` | 262K | | | | | | $0.40 | $2 |
|
|
55
|
+
| `fireworks-ai/accounts/fireworks/models/qwen3p8-max` | 262K | | | | | | $2 | $6 |
|
|
56
|
+
| `fireworks-ai/accounts/fireworks/routers/glm-5p2-fast` | 1.0M | | | | | | $2 | $7 |
|
|
57
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k2p6-fast` | 262K | | | | | | $2 | $8 |
|
|
58
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k2p6-turbo` | 262K | | | | | | $2 | $8 |
|
|
59
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k2p7-code-fast` | 262K | | | | | | $2 | $8 |
|
|
60
|
+
| `fireworks-ai/accounts/fireworks/routers/kimi-k3-fast` | 1.0M | | | | | | $5 | $23 |
|
|
56
61
|
|
|
57
62
|
## Advanced configuration
|
|
58
63
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Hugging Face
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 61 Hugging Face models through Mastra's model router. Authentication is handled automatically using the `HF_TOKEN` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Hugging Face documentation](https://huggingface.co).
|
|
8
8
|
|
|
@@ -39,6 +39,7 @@ for await (const chunk of stream) {
|
|
|
39
39
|
| `huggingface/deepseek-ai/DeepSeek-R1` | 64K | | | | | | $0.70 | $3 |
|
|
40
40
|
| `huggingface/deepseek-ai/DeepSeek-R1-0528` | 164K | | | | | | $3 | $5 |
|
|
41
41
|
| `huggingface/deepseek-ai/DeepSeek-V3` | 64K | | | | | | $0.40 | $1 |
|
|
42
|
+
| `huggingface/deepseek-ai/DeepSeek-V3-0324` | 164K | | | | | | $0.27 | $1 |
|
|
42
43
|
| `huggingface/deepseek-ai/DeepSeek-V3.1` | 131K | | | | | | $0.27 | $1 |
|
|
43
44
|
| `huggingface/deepseek-ai/DeepSeek-V3.2` | 164K | | | | | | $0.28 | $0.40 |
|
|
44
45
|
| `huggingface/deepseek-ai/DeepSeek-V4-Flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
@@ -37,7 +37,7 @@ for await (const chunk of stream) {
|
|
|
37
37
|
| Model | Context | Tools | Reasoning | Image | Audio | Video | Input $/1M | Output $/1M |
|
|
38
38
|
| ---------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
39
|
| `hyper/deepseek-v4-flash` | 1.0M | | | | | | $0.20 | $0.40 |
|
|
40
|
-
| `hyper/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.
|
|
40
|
+
| `hyper/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.20 | $0.40 |
|
|
41
41
|
| `hyper/deepseek-v4-pro` | 1.0M | | | | | | $2 | $5 |
|
|
42
42
|
| `hyper/gemma-4-26b-a4b-it` | 256K | | | | | | $0.13 | $0.42 |
|
|
43
43
|
| `hyper/glm-5.1` | 203K | | | | | | $2 | $5 |
|
|
@@ -40,10 +40,10 @@ for await (const chunk of stream) {
|
|
|
40
40
|
| `kilo/~anthropic/claude-haiku-latest` | 200K | | | | | | $1 | $5 |
|
|
41
41
|
| `kilo/~anthropic/claude-opus-latest` | 1.0M | | | | | | $5 | $25 |
|
|
42
42
|
| `kilo/~anthropic/claude-sonnet-latest` | 1.0M | | | | | | $2 | $10 |
|
|
43
|
-
| `kilo/~deepseek/deepseek-v4-flash-latest` |
|
|
43
|
+
| `kilo/~deepseek/deepseek-v4-flash-latest` | 262K | | | | | | $0.07 | $0.14 |
|
|
44
44
|
| `kilo/~google/gemini-flash-latest` | 1.0M | | | | | | $0.38 | $2 |
|
|
45
45
|
| `kilo/~google/gemini-pro-latest` | 1.0M | | | | | | $2 | $12 |
|
|
46
|
-
| `kilo/~moonshotai/kimi-latest` |
|
|
46
|
+
| `kilo/~moonshotai/kimi-latest` | 975K | | | | | | $2 | $12 |
|
|
47
47
|
| `kilo/~openai/gpt-latest` | 1.1M | | | | | | $5 | $30 |
|
|
48
48
|
| `kilo/~openai/gpt-mini-latest` | 400K | | | | | | $0.75 | $5 |
|
|
49
49
|
| `kilo/~x-ai/grok-latest` | 500K | | | | | | $2 | $6 |
|
|
@@ -126,7 +126,7 @@ for await (const chunk of stream) {
|
|
|
126
126
|
| `kilo/google/gemini-3.1-pro-preview-customtools` | 1.0M | | | | | | $2 | $12 |
|
|
127
127
|
| `kilo/google/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
128
128
|
| `kilo/google/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
129
|
-
| `kilo/google/gemini-3.6-flash` | 1.0M | | | | | | $
|
|
129
|
+
| `kilo/google/gemini-3.6-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
130
130
|
| `kilo/google/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
131
131
|
| `kilo/google/gemma-2-27b-it` | 8K | | | | | | $0.65 | $0.65 |
|
|
132
132
|
| `kilo/google/gemma-3-12b-it` | 131K | | | | | | $0.05 | $0.15 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# LLM Gateway
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 189 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
|
|
|
@@ -67,7 +67,8 @@ for await (const chunk of stream) {
|
|
|
67
67
|
| `llmgateway/gemini-3.1-pro-preview` | 1.0M | | | | | | $2 | $12 |
|
|
68
68
|
| `llmgateway/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
69
69
|
| `llmgateway/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
70
|
-
| `llmgateway/gemini-3.6-flash` | 1.0M | | | | | | $
|
|
70
|
+
| `llmgateway/gemini-3.6-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
71
|
+
| `llmgateway/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
71
72
|
| `llmgateway/gemini-pro-latest` | 1.0M | | | | | | $2 | $12 |
|
|
72
73
|
| `llmgateway/gemma-3-27b` | 110K | | | | | | $0.10 | $0.30 |
|
|
73
74
|
| `llmgateway/gemma-4-26b-a4b-it` | 262K | | | | | | $0.07 | $0.34 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Merge Gateway
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 167 Merge Gateway models through Mastra's model router. Authentication is handled automatically using the `MERGE_GATEWAY_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Merge Gateway documentation](https://docs.merge.dev/merge-gateway).
|
|
8
8
|
|
|
@@ -83,6 +83,7 @@ for await (const chunk of stream) {
|
|
|
83
83
|
| `merge-gateway/google/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
84
84
|
| `merge-gateway/google/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
85
85
|
| `merge-gateway/google/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
|
|
86
|
+
| `merge-gateway/google/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
86
87
|
| `merge-gateway/google/gemini-embedding-001` | 2K | | | | | | $0.15 | — |
|
|
87
88
|
| `merge-gateway/google/gemini-flash-latest` | 1.0M | | | | | | $2 | $9 |
|
|
88
89
|
| `merge-gateway/google/gemini-flash-lite-latest` | 1.0M | | | | | | $0.25 | $2 |
|
|
@@ -165,7 +166,7 @@ for await (const chunk of stream) {
|
|
|
165
166
|
| `merge-gateway/qwen/qwen3.5-122b-a10b` | 256K | | | | | | $0.12 | $0.92 |
|
|
166
167
|
| `merge-gateway/qwen/qwen3.5-27b` | 256K | | | | | | $0.09 | $0.69 |
|
|
167
168
|
| `merge-gateway/qwen/qwen3.5-35b-a3b` | 256K | | | | | | $0.06 | $0.46 |
|
|
168
|
-
| `merge-gateway/qwen/qwen3.5-397b-a17b` |
|
|
169
|
+
| `merge-gateway/qwen/qwen3.5-397b-a17b` | 131K | | | | | | $0.17 | $1 |
|
|
169
170
|
| `merge-gateway/qwen/qwen3.5-9b` | 262K | | | | | | $0.09 | $0.13 |
|
|
170
171
|
| `merge-gateway/qwen/qwen3.5-flash` | 1.0M | | | | | | $0.03 | $0.29 |
|
|
171
172
|
| `merge-gateway/qwen/qwen3.5-plus` | 1.0M | | | | | | $0.12 | $0.69 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# NanoGPT
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 597 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
|
|
|
@@ -243,6 +243,7 @@ for await (const chunk of stream) {
|
|
|
243
243
|
| `nano-gpt/google/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
244
244
|
| `nano-gpt/google/gemini-3.5-flash-thinking` | 1.0M | | | | | | $2 | $9 |
|
|
245
245
|
| `nano-gpt/google/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
|
|
246
|
+
| `nano-gpt/google/gemini-3.7-flash` | 1.0M | | | | | | $0.38 | $2 |
|
|
246
247
|
| `nano-gpt/google/gemini-flash-latest` | 1.0M | | | | | | $2 | $8 |
|
|
247
248
|
| `nano-gpt/google/gemini-flash-lite-latest` | 1.0M | | | | | | $0.30 | $3 |
|
|
248
249
|
| `nano-gpt/google/gemini-pro-latest` | 1.0M | | | | | | $2 | $12 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# OpenCode Zen
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 90 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
|
|
|
@@ -56,6 +56,7 @@ for await (const chunk of stream) {
|
|
|
56
56
|
| `opencode/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
57
57
|
| `opencode/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
58
58
|
| `opencode/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
|
|
59
|
+
| `opencode/gemini-3.7-flash` | 1.0M | | | | | | $2 | $8 |
|
|
59
60
|
| `opencode/glm-5` | 205K | | | | | | $1 | $3 |
|
|
60
61
|
| `opencode/glm-5.1` | 205K | | | | | | $1 | $4 |
|
|
61
62
|
| `opencode/glm-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Requesty
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 49 Requesty models through Mastra's model router. Authentication is handled automatically using the `REQUESTY_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Requesty documentation](https://requesty.ai/solution/llm-routing/models).
|
|
8
8
|
|
|
@@ -64,6 +64,8 @@ for await (const chunk of stream) {
|
|
|
64
64
|
| `requesty/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
65
65
|
| `requesty/gemini-3.5-flash@eu` | 1.0M | | | | | | $2 | $9 |
|
|
66
66
|
| `requesty/gemini-3.6-flash` | 1.0M | | | | | | $2 | $7 |
|
|
67
|
+
| `requesty/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
68
|
+
| `requesty/gemini-3.7-flash@eu` | 1.0M | | | | | | $0.75 | $4 |
|
|
67
69
|
| `requesty/glm-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
68
70
|
| `requesty/glm-5.2@eu` | 1.0M | | | | | | $1 | $4 |
|
|
69
71
|
| `requesty/gpt-4.1-mini@eu` | 1.0M | | | | | | $0.44 | $2 |
|
|
@@ -43,6 +43,7 @@ Direct access to individual AI model providers. Each provider offers unique mode
|
|
|
43
43
|
- [Cortecs](https://mastra.ai/models/providers/cortecs)
|
|
44
44
|
- [CrofAI](https://mastra.ai/models/providers/crof)
|
|
45
45
|
- [CrossModel](https://mastra.ai/models/providers/crossmodel)
|
|
46
|
+
- [Crusoe](https://mastra.ai/models/providers/crusoe)
|
|
46
47
|
- [D.Run (China)](https://mastra.ai/models/providers/drun)
|
|
47
48
|
- [DaoXE](https://mastra.ai/models/providers/daoxe)
|
|
48
49
|
- [Databricks](https://mastra.ai/models/providers/databricks)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @mastra/mcp-docs-server
|
|
2
2
|
|
|
3
|
+
## 1.2.17-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`587f6ef`](https://github.com/mastra-ai/mastra/commit/587f6efcfc25880b93760a8607d1cd381ec612fe)]:
|
|
8
|
+
- @mastra/core@1.59.1-alpha.0
|
|
9
|
+
|
|
3
10
|
## 1.2.16
|
|
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.
|
|
3
|
+
"version": "1.2.17-alpha.1",
|
|
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/
|
|
32
|
-
"@mastra/
|
|
31
|
+
"@mastra/core": "1.59.1-alpha.0",
|
|
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.123",
|
|
49
49
|
"@internal/types-builder": "0.0.98",
|
|
50
|
-
"@mastra/core": "1.59.0"
|
|
50
|
+
"@mastra/core": "1.59.1-alpha.0"
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://mastra.ai",
|
|
53
53
|
"repository": {
|