@mastra/mcp-docs-server 1.2.17-alpha.3 → 1.2.17-alpha.4
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/docs/capabilities/channels.md +33 -0
- package/.docs/docs/server/request-context.md +21 -0
- package/.docs/integrations/databases/postgresql.md +2 -1
- package/.docs/models/index.md +1 -1
- package/.docs/models/providers/abacus.md +14 -1
- package/.docs/models/providers/cortecs.md +5 -2
- package/.docs/models/providers/huggingface.md +2 -1
- package/.docs/models/providers/hyper.md +5 -5
- package/.docs/models/providers/kilo.md +5 -5
- package/.docs/models/providers/merge-gateway.md +1 -1
- package/.docs/models/providers/ofox.md +28 -1
- package/CHANGELOG.md +7 -0
- package/package.json +4 -4
|
@@ -182,6 +182,39 @@ In group conversations, Mastra prefixes each message with the sender's name and
|
|
|
182
182
|
[Bob (@U456DEF)]: I have a question too.
|
|
183
183
|
```
|
|
184
184
|
|
|
185
|
+
## Per-message Signal metadata
|
|
186
|
+
|
|
187
|
+
Use `signalMetadata` in a custom Channel handler to attach structured context to one inbound message. The metadata follows the message when it starts an idle run or joins an active run.
|
|
188
|
+
|
|
189
|
+
The following example attaches registered file IDs before calling the default handler:
|
|
190
|
+
|
|
191
|
+
```typescript
|
|
192
|
+
import { Agent } from '@mastra/core/agent'
|
|
193
|
+
import { createSlackAdapter } from '@chat-adapter/slack'
|
|
194
|
+
|
|
195
|
+
export const yourAgent = new Agent({
|
|
196
|
+
id: 'your-agent',
|
|
197
|
+
name: 'Your Agent',
|
|
198
|
+
instructions: 'You are a helpful assistant.',
|
|
199
|
+
model: 'openai/gpt-5.6-sol',
|
|
200
|
+
channels: {
|
|
201
|
+
adapters: {
|
|
202
|
+
slack: createSlackAdapter(),
|
|
203
|
+
},
|
|
204
|
+
handlers: {
|
|
205
|
+
onDirectMessage: async (thread, message, defaultHandler, ctx) => {
|
|
206
|
+
ctx.signalMetadata.attachmentIds = ['file-1']
|
|
207
|
+
await defaultHandler(thread, message)
|
|
208
|
+
},
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
})
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Add only JSON-serializable, non-sensitive values. Signal metadata may be stored in memory or sent through a shared publish-subscribe transport. It isn't added to the model prompt.
|
|
215
|
+
|
|
216
|
+
Use `requestContext` for run-scoped configuration, such as credentials for a message that starts a run. Use `signalMetadata` for context that must stay attached to one message, including messages delivered to an active run.
|
|
217
|
+
|
|
185
218
|
## Multimodal content
|
|
186
219
|
|
|
187
220
|
Models like Gemini can process images, video, and audio natively. Combine `inlineMedia` and `inlineLinks` to let users share rich content with your agent across platforms:
|
|
@@ -56,6 +56,27 @@ await run.resume({
|
|
|
56
56
|
await weatherTool.execute({ location: 'London' }, { requestContext })
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
### Using runtime-only keys
|
|
60
|
+
|
|
61
|
+
When you provide a type or `requestContextSchema`, the `get`, `set`, `has`, and `delete` methods only accept declared keys. This catches misspelled keys and keeps declared values typed.
|
|
62
|
+
|
|
63
|
+
Use `getRaw`, `setRaw`, `hasRaw`, and `deleteRaw` for infrastructure or middleware keys that aren't part of the schema. Raw values use the `unknown` type, so narrow them before use.
|
|
64
|
+
|
|
65
|
+
```typescript
|
|
66
|
+
const requestContext = new RequestContext<{ userId: string }>()
|
|
67
|
+
|
|
68
|
+
requestContext.set('userId', 'user-123')
|
|
69
|
+
requestContext.setRaw('session.cache', { hits: 0 })
|
|
70
|
+
|
|
71
|
+
const cache = requestContext.getRaw('session.cache')
|
|
72
|
+
|
|
73
|
+
if (typeof cache === 'object' && cache !== null && 'hits' in cache) {
|
|
74
|
+
console.log(cache.hits)
|
|
75
|
+
}
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Prefer schema-declared keys for application data. Use the raw methods only when a key must remain outside the request context schema.
|
|
79
|
+
|
|
59
80
|
### Setting values based on request headers
|
|
60
81
|
|
|
61
82
|
You can populate `requestContext` in a runtime server middleware by extracting information from the request. In this example, the `temperature-unit` is set based on the Cloudflare `CF-IPCountry` header to ensure responses match the user's locale.
|
|
@@ -407,8 +407,9 @@ PostgreSQL storage creates composite indexes during initialization for common qu
|
|
|
407
407
|
- `mastra_ai_spans_name_startedat_idx`: (name, startedAt DESC)
|
|
408
408
|
- `mastra_ai_spans_scope_startedat_idx`: (scope, startedAt DESC)
|
|
409
409
|
- `mastra_scores_trace_id_span_id_created_at_idx`: (traceId, spanId, createdAt DESC)
|
|
410
|
+
- `mastra_workflow_snapshot_name_createdat_idx`: (workflow\_name, createdAt DESC)
|
|
410
411
|
|
|
411
|
-
These indexes improve performance for filtered queries with sorting, including `dateRange` filters on message queries.
|
|
412
|
+
These indexes improve performance for filtered queries with sorting, including `dateRange` filters on message queries and Studio's workflow runs-list.
|
|
412
413
|
|
|
413
414
|
### Configuring Indexes
|
|
414
415
|
|
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 5742 models from 172 providers through a single API.
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Abacus
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 108 Abacus models through Mastra's model router. Authentication is handled automatically using the `ABACUS_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Abacus documentation](https://abacus.ai).
|
|
8
8
|
|
|
@@ -45,6 +45,7 @@ for await (const chunk of stream) {
|
|
|
45
45
|
| `abacus/claude-opus-4-6` | 1.0M | | | | | | $5 | $25 |
|
|
46
46
|
| `abacus/claude-opus-4-7` | 1.0M | | | | | | $5 | $25 |
|
|
47
47
|
| `abacus/claude-opus-4-8` | 1.0M | | | | | | $5 | $25 |
|
|
48
|
+
| `abacus/claude-opus-5` | 1.0M | | | | | | $5 | $25 |
|
|
48
49
|
| `abacus/claude-sonnet-4-20250514` | 200K | | | | | | $3 | $15 |
|
|
49
50
|
| `abacus/claude-sonnet-4-5-20250929` | 200K | | | | | | $3 | $15 |
|
|
50
51
|
| `abacus/claude-sonnet-4-6` | 1.0M | | | | | | $3 | $15 |
|
|
@@ -59,12 +60,17 @@ for await (const chunk of stream) {
|
|
|
59
60
|
| `abacus/gemini-2.5-flash-image` | 33K | | | | | | $0.30 | $30 |
|
|
60
61
|
| `abacus/gemini-2.5-pro` | 1.0M | | | | | | $1 | $10 |
|
|
61
62
|
| `abacus/gemini-3-flash-preview` | 1.0M | | | | | | $0.50 | $3 |
|
|
63
|
+
| `abacus/gemini-3-pro-image` | 66K | | | | | | $2 | $12 |
|
|
62
64
|
| `abacus/gemini-3-pro-image-preview` | 66K | | | | | | $2 | $12 |
|
|
65
|
+
| `abacus/gemini-3.1-flash-image` | 1.0M | | | | | | $0.50 | $3 |
|
|
63
66
|
| `abacus/gemini-3.1-flash-image-preview` | 1.0M | | | | | | $0.50 | $3 |
|
|
64
67
|
| `abacus/gemini-3.1-flash-lite` | 1.0M | | | | | | $0.25 | $2 |
|
|
65
68
|
| `abacus/gemini-3.1-flash-lite-preview` | 1.0M | | | | | | $0.25 | $2 |
|
|
66
69
|
| `abacus/gemini-3.1-pro-preview` | 1.0M | | | | | | $2 | $12 |
|
|
67
70
|
| `abacus/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
71
|
+
| `abacus/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
72
|
+
| `abacus/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
|
|
73
|
+
| `abacus/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
68
74
|
| `abacus/google/gemma-4-31b-it` | 262K | | | | | | $0.14 | $0.40 |
|
|
69
75
|
| `abacus/gpt-4.1` | 1.0M | | | | | | $2 | $8 |
|
|
70
76
|
| `abacus/gpt-4.1-mini` | 1.0M | | | | | | $0.40 | $2 |
|
|
@@ -98,6 +104,7 @@ for await (const chunk of stream) {
|
|
|
98
104
|
| `abacus/grok-4-fast-non-reasoning` | 2.0M | | | | | | $0.20 | $0.50 |
|
|
99
105
|
| `abacus/grok-4.3` | 1.0M | | | | | | $1 | $3 |
|
|
100
106
|
| `abacus/grok-4.5` | 500K | | | | | | $2 | $6 |
|
|
107
|
+
| `abacus/grok-4.6` | 500K | | | | | | $2 | $6 |
|
|
101
108
|
| `abacus/grok-code-fast-1` | 256K | | | | | | $0.20 | $2 |
|
|
102
109
|
| `abacus/kimi-k2-turbo-preview` | 256K | | | | | | $0.15 | $8 |
|
|
103
110
|
| `abacus/kimi-k2.5` | 262K | | | | | | $0.60 | $3 |
|
|
@@ -110,7 +117,10 @@ for await (const chunk of stream) {
|
|
|
110
117
|
| `abacus/MiniMaxAI/MiniMax-M2.7` | 205K | | | | | | $0.30 | $1 |
|
|
111
118
|
| `abacus/MiniMaxAI/MiniMax-M3` | 1.0M | | | | | | $0.30 | $1 |
|
|
112
119
|
| `abacus/moonshotai/Kimi-K2.6` | 262K | | | | | | $0.95 | $4 |
|
|
120
|
+
| `abacus/moonshotai/Kimi-K2.7-Code` | 262K | | | | | | $0.95 | $4 |
|
|
121
|
+
| `abacus/moonshotai/Kimi-K3` | 1.0M | | | | | | $3 | $15 |
|
|
113
122
|
| `abacus/muse-spark-1.1` | 1.0M | | | | | | $1 | $4 |
|
|
123
|
+
| `abacus/muse-spark-1.2` | 1.0M | | | | | | $1 | $4 |
|
|
114
124
|
| `abacus/o3` | 200K | | | | | | $2 | $8 |
|
|
115
125
|
| `abacus/o3-mini` | 200K | | | | | | $1 | $4 |
|
|
116
126
|
| `abacus/o3-pro` | 200K | | | | | | $20 | $40 |
|
|
@@ -124,7 +134,10 @@ for await (const chunk of stream) {
|
|
|
124
134
|
| `abacus/Qwen/Qwen3.6-27B` | 262K | | | | | | $0.32 | $3 |
|
|
125
135
|
| `abacus/Qwen/QwQ-32B` | 33K | | | | | | $0.40 | $0.40 |
|
|
126
136
|
| `abacus/qwen3-max` | 131K | | | | | | $1 | $6 |
|
|
137
|
+
| `abacus/qwen3.7-max` | 1.0M | | | | | | $3 | $8 |
|
|
138
|
+
| `abacus/qwen3.8-max` | 1.0M | | | | | | $2 | $6 |
|
|
127
139
|
| `abacus/route-llm` | 128K | | | | | | $3 | $15 |
|
|
140
|
+
| `abacus/thinkingmachines/Inkling` | 262K | | | | | | $4 | $9 |
|
|
128
141
|
| `abacus/zai-org/GLM-4.5` | 131K | | | | | | $0.60 | $2 |
|
|
129
142
|
| `abacus/zai-org/GLM-4.6` | 203K | | | | | | $0.60 | $2 |
|
|
130
143
|
| `abacus/zai-org/GLM-4.7` | 205K | | | | | | $0.60 | $2 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Cortecs
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 107 Cortecs models through Mastra's model router. Authentication is handled automatically using the `CORTECS_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Cortecs documentation](https://cortecs.ai).
|
|
8
8
|
|
|
@@ -57,8 +57,10 @@ for await (const chunk of stream) {
|
|
|
57
57
|
| `cortecs/gemini-2.5-flash` | 1.0M | | | | | | $0.30 | $2 |
|
|
58
58
|
| `cortecs/gemini-2.5-pro` | 1.0M | | | | | | $1 | $10 |
|
|
59
59
|
| `cortecs/gemini-3.1-flash-lite` | 1.0M | | | | | | $0.27 | $2 |
|
|
60
|
-
| `cortecs/gemini-3.5-flash` | 1.0M | | | | | | $
|
|
60
|
+
| `cortecs/gemini-3.5-flash` | 1.0M | | | | | | $2 | $10 |
|
|
61
61
|
| `cortecs/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.33 | $3 |
|
|
62
|
+
| `cortecs/gemini-3.6-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
63
|
+
| `cortecs/gemini-3.7-flash` | 1.0M | | | | | | $0.75 | $4 |
|
|
62
64
|
| `cortecs/gemma-3-27b-it` | 131K | | | | | | $0.10 | $0.30 |
|
|
63
65
|
| `cortecs/gemma-4-26b-a4b-it` | 262K | | | | | | $0.11 | $0.56 |
|
|
64
66
|
| `cortecs/gemma-4-31b-it` | 262K | | | | | | $0.22 | $0.39 |
|
|
@@ -137,6 +139,7 @@ for await (const chunk of stream) {
|
|
|
137
139
|
| `cortecs/qwen3.5-9b` | 262K | | | | | | $0.11 | $0.17 |
|
|
138
140
|
| `cortecs/qwen3.6-27b` | 262K | | | | | | $0.45 | $3 |
|
|
139
141
|
| `cortecs/qwen3.6-35b-a3b` | 262K | | | | | | $0.17 | $0.56 |
|
|
142
|
+
| `cortecs/qwen3.8-2.4t-a95b` | 262K | | | | | | $3 | $6 |
|
|
140
143
|
| `cortecs/qwen3guard-gen-0.6b` | 32K | | | | | | — | — |
|
|
141
144
|
| `cortecs/qwen3guard-gen-8b` | 32K | | | | | | — | — |
|
|
142
145
|
| `cortecs/voxtral-small-2507` | 32K | | | | | | $0.11 | $0.33 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Hugging Face
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 65 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
|
|
|
@@ -45,6 +45,7 @@ for await (const chunk of stream) {
|
|
|
45
45
|
| `huggingface/deepseek-ai/DeepSeek-V4-Flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
46
46
|
| `huggingface/deepseek-ai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
47
47
|
| `huggingface/deepseek-ai/DeepSeek-V4-Pro` | 1.0M | | | | | | $0.43 | $0.87 |
|
|
48
|
+
| `huggingface/deepseek-ai/DeepSeek-V4-Pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
48
49
|
| `huggingface/google/gemma-4-26B-A4B-it` | 262K | | | | | | $0.13 | $0.40 |
|
|
49
50
|
| `huggingface/google/gemma-4-31B-it` | 262K | | | | | | $0.14 | $0.40 |
|
|
50
51
|
| `huggingface/meta-llama/Llama-3.1-8B-Instruct` | 131K | | | | | | $0.06 | $0.06 |
|
|
@@ -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.20 | $0.40 |
|
|
41
41
|
| `hyper/deepseek-v4-pro` | 1.0M | | | | | | $2 | $5 |
|
|
42
|
-
| `hyper/gemma-4-26b-a4b-it` | 256K | | | | | | $0.
|
|
42
|
+
| `hyper/gemma-4-26b-a4b-it` | 256K | | | | | | $0.12 | $0.42 |
|
|
43
43
|
| `hyper/glm-5.1` | 203K | | | | | | $2 | $5 |
|
|
44
44
|
| `hyper/glm-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
45
|
-
| `hyper/gpt-oss-120b` | 131K | | | | | | $0.
|
|
46
|
-
| `hyper/kimi-k2.5` | 262K | | | | | | $0.
|
|
45
|
+
| `hyper/gpt-oss-120b` | 131K | | | | | | $0.18 | $0.71 |
|
|
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
|
-
| `hyper/llama-3.3-70b-instruct` | 128K | | | | | | $0.
|
|
50
|
+
| `hyper/llama-3.3-70b-instruct` | 128K | | | | | | $0.61 | $0.84 |
|
|
51
51
|
| `hyper/llama-4-maverick-17b-128e-instruct-fp8` | 430K | | | | | | $0.27 | $0.90 |
|
|
52
|
-
| `hyper/minimax-m2.7` | 262K | | | | | | $0.
|
|
52
|
+
| `hyper/minimax-m2.7` | 262K | | | | | | $0.43 | $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 |
|
|
@@ -40,7 +40,7 @@ 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` | 1.0M | | | | | | $0.08 | $0.
|
|
43
|
+
| `kilo/~deepseek/deepseek-v4-flash-latest` | 1.0M | | | | | | $0.08 | $0.16 |
|
|
44
44
|
| `kilo/~google/gemini-flash-latest` | 1.0M | | | | | | $0.38 | $2 |
|
|
45
45
|
| `kilo/~google/gemini-pro-latest` | 1.0M | | | | | | $2 | $12 |
|
|
46
46
|
| `kilo/~moonshotai/kimi-latest` | 1.0M | | | | | | $3 | $14 |
|
|
@@ -106,7 +106,7 @@ for await (const chunk of stream) {
|
|
|
106
106
|
| `kilo/deepseek/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
107
107
|
| `kilo/deepseek/deepseek-v4-flash:discounted` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
108
108
|
| `kilo/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $2 | $3 |
|
|
109
|
-
| `kilo/deepseek/deepseek-v4-pro-0813` | 1.0M | | | | | | $
|
|
109
|
+
| `kilo/deepseek/deepseek-v4-pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
110
110
|
| `kilo/deepseek/deepseek-v4-pro:discounted` | 1.0M | | | | | | $0.43 | $0.87 |
|
|
111
111
|
| `kilo/google/gemini-2.5-flash` | 1.0M | | | | | | $0.30 | $3 |
|
|
112
112
|
| `kilo/google/gemini-2.5-flash-image` | 33K | | | | | | $0.30 | $3 |
|
|
@@ -161,7 +161,7 @@ for await (const chunk of stream) {
|
|
|
161
161
|
| `kilo/meta-llama/llama-3.2-1b-instruct` | 60K | | | | | | $0.03 | $0.20 |
|
|
162
162
|
| `kilo/meta-llama/llama-3.2-3b-instruct` | 131K | | | | | | $0.05 | $0.33 |
|
|
163
163
|
| `kilo/meta-llama/llama-3.3-70b-instruct` | 131K | | | | | | $0.10 | $0.32 |
|
|
164
|
-
| `kilo/meta-llama/llama-4-maverick` |
|
|
164
|
+
| `kilo/meta-llama/llama-4-maverick` | 128K | | | | | | $0.20 | $0.70 |
|
|
165
165
|
| `kilo/meta-llama/llama-4-scout` | 328K | | | | | | $0.10 | $0.30 |
|
|
166
166
|
| `kilo/meta-llama/llama-guard-4-12b` | 164K | | | | | | $0.18 | $0.18 |
|
|
167
167
|
| `kilo/meta/muse-glimmer-30b` | 131K | | | | | | $0.30 | $1 |
|
|
@@ -360,7 +360,7 @@ for await (const chunk of stream) {
|
|
|
360
360
|
| `kilo/stepfun/step-3.7-flash` | 256K | | | | | | $0.20 | $1 |
|
|
361
361
|
| `kilo/stepfun/step-3.7-flash:free` | 262K | | | | | | — | — |
|
|
362
362
|
| `kilo/tencent/hunyuan-a13b-instruct` | 131K | | | | | | $0.14 | $0.57 |
|
|
363
|
-
| `kilo/tencent/hy3` | 262K | | | | | | $0.
|
|
363
|
+
| `kilo/tencent/hy3` | 262K | | | | | | $0.13 | $0.53 |
|
|
364
364
|
| `kilo/tencent/hy3-preview` | 262K | | | | | | $0.18 | $0.60 |
|
|
365
365
|
| `kilo/tencent/hy3:free` | 262K | | | | | | — | — |
|
|
366
366
|
| `kilo/thedrummer/cydonia-24b-v4.1` | 131K | | | | | | $0.30 | $0.50 |
|
|
@@ -391,7 +391,7 @@ for await (const chunk of stream) {
|
|
|
391
391
|
| `kilo/z-ai/glm-5` | 205K | | | | | | $0.95 | $3 |
|
|
392
392
|
| `kilo/z-ai/glm-5-turbo` | 203K | | | | | | $1 | $4 |
|
|
393
393
|
| `kilo/z-ai/glm-5.1` | 203K | | | | | | $1 | $4 |
|
|
394
|
-
| `kilo/z-ai/glm-5.2` |
|
|
394
|
+
| `kilo/z-ai/glm-5.2` | 1.0M | | | | | | $1 | $4 |
|
|
395
395
|
| `kilo/z-ai/glm-5v-turbo` | 203K | | | | | | $1 | $4 |
|
|
396
396
|
|
|
397
397
|
## Advanced configuration
|
|
@@ -168,7 +168,7 @@ for await (const chunk of stream) {
|
|
|
168
168
|
| `merge-gateway/qwen/qwen3.5-122b-a10b` | 256K | | | | | | $0.12 | $0.92 |
|
|
169
169
|
| `merge-gateway/qwen/qwen3.5-27b` | 256K | | | | | | $0.09 | $0.69 |
|
|
170
170
|
| `merge-gateway/qwen/qwen3.5-35b-a3b` | 256K | | | | | | $0.06 | $0.46 |
|
|
171
|
-
| `merge-gateway/qwen/qwen3.5-397b-a17b` |
|
|
171
|
+
| `merge-gateway/qwen/qwen3.5-397b-a17b` | 256K | | | | | | $0.17 | $1 |
|
|
172
172
|
| `merge-gateway/qwen/qwen3.5-9b` | 262K | | | | | | $0.09 | $0.13 |
|
|
173
173
|
| `merge-gateway/qwen/qwen3.5-flash` | 1.0M | | | | | | $0.03 | $0.29 |
|
|
174
174
|
| `merge-gateway/qwen/qwen3.5-plus` | 1.0M | | | | | | $0.12 | $0.69 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Ofox
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 103 Ofox models through Mastra's model router. Authentication is handled automatically using the `OFOX_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Ofox documentation](https://ofox.ai/docs).
|
|
8
8
|
|
|
@@ -43,10 +43,12 @@ for await (const chunk of stream) {
|
|
|
43
43
|
| `ofox/anthropic/claude-opus-4.7` | 1.0M | | | | | | $5 | $25 |
|
|
44
44
|
| `ofox/anthropic/claude-opus-4.8` | 1.0M | | | | | | $5 | $25 |
|
|
45
45
|
| `ofox/anthropic/claude-opus-5` | 1.0M | | | | | | $5 | $25 |
|
|
46
|
+
| `ofox/anthropic/claude-sonnet-4.5` | 200K | | | | | | $3 | $15 |
|
|
46
47
|
| `ofox/anthropic/claude-sonnet-4.6` | 1.0M | | | | | | $3 | $15 |
|
|
47
48
|
| `ofox/anthropic/claude-sonnet-5` | 1.0M | | | | | | $2 | $10 |
|
|
48
49
|
| `ofox/bailian/qwen-flash` | 1.0M | | | | | | $0.02 | $0.22 |
|
|
49
50
|
| `ofox/bailian/qwen-max` | 33K | | | | | | $0.35 | $1 |
|
|
51
|
+
| `ofox/bailian/qwen-plus` | 1.0M | | | | | | $0.12 | $0.29 |
|
|
50
52
|
| `ofox/bailian/qwen-turbo` | 128K | | | | | | $0.05 | $0.09 |
|
|
51
53
|
| `ofox/bailian/qwen-vl-max` | 131K | | | | | | $0.23 | $0.58 |
|
|
52
54
|
| `ofox/bailian/qwen3-coder-flash` | 1.0M | | | | | | $0.50 | $3 |
|
|
@@ -55,6 +57,7 @@ for await (const chunk of stream) {
|
|
|
55
57
|
| `ofox/bailian/qwen3-max` | 262K | | | | | | $0.36 | $1 |
|
|
56
58
|
| `ofox/bailian/qwen3.5-122b-a10b` | 256K | | | | | | $0.29 | $2 |
|
|
57
59
|
| `ofox/bailian/qwen3.5-27b` | 262K | | | | | | $0.29 | $2 |
|
|
60
|
+
| `ofox/bailian/qwen3.5-35b-a3b` | 262K | | | | | | $0.29 | $2 |
|
|
58
61
|
| `ofox/bailian/qwen3.5-397b-a17b` | 256K | | | | | | $0.55 | $4 |
|
|
59
62
|
| `ofox/bailian/qwen3.5-flash` | 1.0M | | | | | | $0.10 | $0.40 |
|
|
60
63
|
| `ofox/bailian/qwen3.5-plus` | 1.0M | | | | | | $0.40 | $2 |
|
|
@@ -68,6 +71,7 @@ for await (const chunk of stream) {
|
|
|
68
71
|
| `ofox/deepseek/deepseek-v3.2` | 128K | | | | | | $0.29 | $0.43 |
|
|
69
72
|
| `ofox/deepseek/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
70
73
|
| `ofox/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $0.45 | $0.88 |
|
|
74
|
+
| `ofox/deepseek/deepseek-v4-pro-0813` | 1.0M | | | | | | $0.45 | $0.88 |
|
|
71
75
|
| `ofox/google/gemini-2.5-flash` | 1.0M | | | | | | $0.30 | $3 |
|
|
72
76
|
| `ofox/google/gemini-2.5-flash-lite` | 1.0M | | | | | | $0.10 | $0.40 |
|
|
73
77
|
| `ofox/google/gemini-2.5-pro` | 1.0M | | | | | | $1 | $10 |
|
|
@@ -77,7 +81,15 @@ for await (const chunk of stream) {
|
|
|
77
81
|
| `ofox/google/gemini-3.5-flash` | 1.0M | | | | | | $2 | $9 |
|
|
78
82
|
| `ofox/google/gemini-3.5-flash-lite` | 1.0M | | | | | | $0.30 | $3 |
|
|
79
83
|
| `ofox/google/gemini-3.6-flash` | 1.0M | | | | | | $2 | $8 |
|
|
84
|
+
| `ofox/minimax/m2-her` | 200K | | | | | | $0.30 | $1 |
|
|
85
|
+
| `ofox/minimax/minimax-m2` | 197K | | | | | | $0.30 | $1 |
|
|
86
|
+
| `ofox/minimax/minimax-m2.1` | 205K | | | | | | $0.30 | $1 |
|
|
87
|
+
| `ofox/minimax/minimax-m2.1-lightning` | 205K | | | | | | $0.30 | $2 |
|
|
88
|
+
| `ofox/minimax/minimax-m2.5` | 205K | | | | | | $0.30 | $1 |
|
|
89
|
+
| `ofox/minimax/minimax-m2.5-lightning` | 205K | | | | | | $0.30 | $2 |
|
|
80
90
|
| `ofox/minimax/minimax-m2.7` | 205K | | | | | | $0.30 | $1 |
|
|
91
|
+
| `ofox/minimax/minimax-m2.7-highspeed` | 205K | | | | | | $0.60 | $2 |
|
|
92
|
+
| `ofox/minimax/minimax-m3` | 512K | | | | | | $0.60 | $2 |
|
|
81
93
|
| `ofox/moonshotai/kimi-k2.5` | 262K | | | | | | $0.60 | $3 |
|
|
82
94
|
| `ofox/moonshotai/kimi-k2.6` | 262K | | | | | | $0.95 | $4 |
|
|
83
95
|
| `ofox/moonshotai/kimi-k2.7-code` | 262K | | | | | | $0.95 | $4 |
|
|
@@ -89,11 +101,14 @@ for await (const chunk of stream) {
|
|
|
89
101
|
| `ofox/openai/gpt-4o-mini` | 128K | | | | | | $0.15 | $0.60 |
|
|
90
102
|
| `ofox/openai/gpt-5` | 400K | | | | | | $1 | $10 |
|
|
91
103
|
| `ofox/openai/gpt-5-mini` | 256K | | | | | | $0.25 | $2 |
|
|
104
|
+
| `ofox/openai/gpt-5-nano` | 400K | | | | | | $0.05 | $0.40 |
|
|
92
105
|
| `ofox/openai/gpt-5.1` | 400K | | | | | | $1 | $10 |
|
|
93
106
|
| `ofox/openai/gpt-5.1-codex-max` | 256K | | | | | | $1 | $10 |
|
|
94
107
|
| `ofox/openai/gpt-5.1-codex-mini` | 256K | | | | | | $0.25 | $2 |
|
|
95
108
|
| `ofox/openai/gpt-5.2` | 400K | | | | | | $2 | $14 |
|
|
96
109
|
| `ofox/openai/gpt-5.2-codex` | 400K | | | | | | $2 | $14 |
|
|
110
|
+
| `ofox/openai/gpt-5.3-codex` | 400K | | | | | | $2 | $14 |
|
|
111
|
+
| `ofox/openai/gpt-5.4` | 1.1M | | | | | | $3 | $15 |
|
|
97
112
|
| `ofox/openai/gpt-5.4-mini` | 400K | | | | | | $0.75 | $5 |
|
|
98
113
|
| `ofox/openai/gpt-5.4-nano` | 400K | | | | | | $0.20 | $1 |
|
|
99
114
|
| `ofox/openai/gpt-5.4-pro` | 1.1M | | | | | | $30 | $180 |
|
|
@@ -101,6 +116,18 @@ for await (const chunk of stream) {
|
|
|
101
116
|
| `ofox/openai/gpt-5.6-luna` | 1.1M | | | | | | $0.20 | $1 |
|
|
102
117
|
| `ofox/openai/gpt-5.6-sol` | 1.1M | | | | | | $5 | $30 |
|
|
103
118
|
| `ofox/openai/gpt-5.6-terra` | 1.1M | | | | | | $2 | $12 |
|
|
119
|
+
| `ofox/volcengine/doubao-seed-1-6` | 256K | | | | | | $0.12 | $0.29 |
|
|
120
|
+
| `ofox/volcengine/doubao-seed-1-6-flash` | 256K | | | | | | $0.03 | $0.22 |
|
|
121
|
+
| `ofox/volcengine/doubao-seed-1-6-vision` | 256K | | | | | | $0.12 | $1 |
|
|
122
|
+
| `ofox/volcengine/doubao-seed-1-8` | 256K | | | | | | $0.12 | $0.29 |
|
|
123
|
+
| `ofox/volcengine/doubao-seed-2.0-code` | 256K | | | | | | $0.67 | $3 |
|
|
124
|
+
| `ofox/volcengine/doubao-seed-2.0-lite` | 256K | | | | | | $0.13 | $0.76 |
|
|
125
|
+
| `ofox/volcengine/doubao-seed-2.0-mini` | 256K | | | | | | $0.06 | $0.56 |
|
|
126
|
+
| `ofox/volcengine/doubao-seed-2.0-pro` | 256K | | | | | | $0.67 | $3 |
|
|
127
|
+
| `ofox/volcengine/doubao-seed-2.1-pro` | 256K | | | | | | $0.88 | $4 |
|
|
128
|
+
| `ofox/volcengine/doubao-seed-2.1-turbo` | 256K | | | | | | $0.44 | $2 |
|
|
129
|
+
| `ofox/volcengine/doubao-seed-character` | 256K | | | | | | $0.18 | $0.88 |
|
|
130
|
+
| `ofox/volcengine/doubao-seed-evolving` | 256K | | | | | | $0.88 | $4 |
|
|
104
131
|
| `ofox/x-ai/grok-4.1-fast` | 2.0M | | | | | | $0.20 | $0.50 |
|
|
105
132
|
| `ofox/x-ai/grok-4.20` | 2.0M | | | | | | $4 | $12 |
|
|
106
133
|
| `ofox/x-ai/grok-4.3` | 1.0M | | | | | | $1 | $3 |
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @mastra/mcp-docs-server
|
|
2
2
|
|
|
3
|
+
## 1.2.17-alpha.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7e096f0`](https://github.com/mastra-ai/mastra/commit/7e096f02f0dddbf09b85d306458351245ed2f886), [`8f0a332`](https://github.com/mastra-ai/mastra/commit/8f0a3321bf180368d76fe7b36aa1a8f60f00b6de), [`b098de9`](https://github.com/mastra-ai/mastra/commit/b098de9d7cb9f672e0883a5c716465a3a689693d), [`ef6e295`](https://github.com/mastra-ai/mastra/commit/ef6e295b59bc25a5b61b633a89c97bcfce9fb465), [`208e1b3`](https://github.com/mastra-ai/mastra/commit/208e1b39f30f4b386e494394e9d71d96f0f90241), [`c938d34`](https://github.com/mastra-ai/mastra/commit/c938d34739936c8ecbabd67ad6a4a4396f41c4c6), [`1d9a0ea`](https://github.com/mastra-ai/mastra/commit/1d9a0ea4a9901baee6cd56737243bd6d1f631ac0), [`3667679`](https://github.com/mastra-ai/mastra/commit/3667679db057edfb086846d13369fdda4902ad65), [`49696e8`](https://github.com/mastra-ai/mastra/commit/49696e8e42f870674a0a58f5abcd22cc54dd2864), [`512100a`](https://github.com/mastra-ai/mastra/commit/512100a7d8b7e9c920f2590c6b3612f5de0d3cff), [`9ef432b`](https://github.com/mastra-ai/mastra/commit/9ef432b6faa534b57b0d182a610e13dd9a7123ff), [`b9cf308`](https://github.com/mastra-ai/mastra/commit/b9cf30846f97f99ac1906ee8a68f4f2d117b0378)]:
|
|
8
|
+
- @mastra/core@1.60.0-alpha.2
|
|
9
|
+
|
|
3
10
|
## 1.2.17-alpha.2
|
|
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.17-alpha.
|
|
3
|
+
"version": "1.2.17-alpha.4",
|
|
4
4
|
"description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"jsdom": "^26.1.0",
|
|
29
29
|
"local-pkg": "^1.1.2",
|
|
30
30
|
"zod": "^4.4.3",
|
|
31
|
-
"@mastra/core": "1.60.0-alpha.
|
|
31
|
+
"@mastra/core": "1.60.0-alpha.2",
|
|
32
32
|
"@mastra/mcp": "^1.16.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"tsx": "^4.23.1",
|
|
46
46
|
"typescript": "^6.0.3",
|
|
47
47
|
"vitest": "4.1.10",
|
|
48
|
+
"@internal/lint": "0.0.123",
|
|
48
49
|
"@internal/types-builder": "0.0.98",
|
|
49
|
-
"@mastra/core": "1.60.0-alpha.
|
|
50
|
-
"@internal/lint": "0.0.123"
|
|
50
|
+
"@mastra/core": "1.60.0-alpha.2"
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://mastra.ai",
|
|
53
53
|
"repository": {
|