@mastra/mcp-docs-server 1.2.17-alpha.1 → 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/agents/code-mode.md +2 -2
- package/.docs/docs/agents/skills.md +1 -1
- package/.docs/docs/agents/using-tools.md +1 -1
- package/.docs/docs/capabilities/channels.md +33 -0
- package/.docs/docs/harness/agent-controller.md +1 -1
- package/.docs/docs/mcp/overview.md +4 -5
- package/.docs/docs/server/request-context.md +21 -0
- package/.docs/docs/studio/overview.md +1 -1
- package/.docs/docs/workspace/filesystem.md +182 -153
- package/.docs/docs/workspace/lsp.md +4 -5
- package/.docs/docs/workspace/sandbox.md +234 -141
- package/.docs/docs/workspace/search.md +52 -4
- package/.docs/docs/workspace/skills.md +62 -33
- package/.docs/integrations/browsers/browser-viewer.md +2 -2
- package/.docs/integrations/databases/postgresql.md +2 -1
- package/.docs/integrations/file-storage/amazon-s3.md +1 -1
- package/.docs/integrations/file-storage/azure-blob.md +1 -1
- package/.docs/integrations/file-storage/google-cloud-storage.md +1 -1
- package/.docs/integrations/file-storage/mesa.md +1 -1
- package/.docs/integrations/file-storage/vercel-files.md +1 -1
- package/.docs/integrations/sandboxes/apple-container.md +1 -1
- package/.docs/integrations/sandboxes/daytona.md +1 -1
- package/.docs/integrations/sandboxes/docker.md +1 -1
- package/.docs/integrations/sandboxes/e2b.md +1 -1
- package/.docs/integrations/sandboxes/modal.md +1 -1
- package/.docs/models/gateways/vercel.md +1 -2
- package/.docs/models/index.md +1 -1
- package/.docs/models/providers/abacus.md +14 -1
- package/.docs/models/providers/baseten.md +2 -1
- package/.docs/models/providers/cortecs.md +5 -2
- package/.docs/models/providers/crossmodel.md +2 -2
- package/.docs/models/providers/deepinfra.md +3 -1
- package/.docs/models/providers/fireworks-ai.md +2 -1
- package/.docs/models/providers/huggingface.md +5 -1
- package/.docs/models/providers/hyper.md +5 -5
- package/.docs/models/providers/kilo.md +5 -5
- package/.docs/models/providers/merge-gateway.md +4 -2
- package/.docs/models/providers/nano-gpt.md +6 -7
- package/.docs/models/providers/ofox.md +32 -1
- package/.docs/models/providers/opencode-go.md +2 -1
- package/.docs/models/providers/opencode.md +2 -1
- package/.docs/models/providers/zai-coding-plan.md +3 -2
- package/.docs/models/providers/zhipuai-coding-plan.md +2 -1
- package/.docs/reference/agent-controller/agent-controller-class.md +26 -1
- package/.docs/reference/browser/browser-viewer.md +1 -1
- package/.docs/reference/configuration.md +1 -1
- package/.docs/reference/core/removeWorkspace.md +1 -1
- package/.docs/reference/file-based-agents/workspace.md +3 -3
- package/.docs/reference/observability/tracing/exporters/mastra-platform-exporter.md +2 -0
- package/.docs/reference/processors/skill-search-processor.md +1 -1
- package/.docs/reference/tools/create-code-mode.md +1 -1
- package/.docs/reference/tools/create-tool.md +11 -3
- package/.docs/reference/tools/mcp-server.md +4 -1
- package/.docs/reference/workspace/local-filesystem.md +1 -1
- package/.docs/reference/workspace/local-sandbox.md +1 -1
- package/.docs/reference/workspace/workspace-class.md +52 -15
- package/CHANGELOG.md +14 -0
- package/package.json +3 -3
- package/.docs/docs/workspace/overview.md +0 -416
|
@@ -2,10 +2,50 @@
|
|
|
2
2
|
|
|
3
3
|
# Workspace skills
|
|
4
4
|
|
|
5
|
-
**Added in:** `@mastra/core@1.1.0`
|
|
6
|
-
|
|
7
5
|
Skills are reusable instructions that teach agents how to perform specific tasks. They follow the [Agent Skills specification](https://agentskills.io) - an open standard for packaging agent capabilities.
|
|
8
6
|
|
|
7
|
+
> **Note:** Workspace skills are discovered through a workspace and shared with every agent that uses it. To attach skills directly to one agent without requiring a workspace, use [agent skills](https://mastra.ai/docs/agents/skills).
|
|
8
|
+
|
|
9
|
+
## When to use skills
|
|
10
|
+
|
|
11
|
+
Use workspace skills when your agent needs to:
|
|
12
|
+
|
|
13
|
+
- Follow repeatable instructions for specialized tasks
|
|
14
|
+
- Load detailed guidance only when it becomes relevant
|
|
15
|
+
- Share instructions, reference files, scripts, and assets across agents
|
|
16
|
+
- Discover capabilities from one or more directories
|
|
17
|
+
- Search skill content alongside other workspace content
|
|
18
|
+
|
|
19
|
+
## Quickstart
|
|
20
|
+
|
|
21
|
+
Create a skill with a `SKILL.md` file:
|
|
22
|
+
|
|
23
|
+
```markdown
|
|
24
|
+
---
|
|
25
|
+
name: code-review
|
|
26
|
+
description: Reviews code for bugs and readability issues
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# Code review
|
|
30
|
+
|
|
31
|
+
Check the code for bugs, missing error handling, and unclear naming.
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Configure the skill directory on a workspace:
|
|
35
|
+
|
|
36
|
+
```typescript
|
|
37
|
+
import { Workspace, LocalFilesystem } from '@mastra/core/workspace'
|
|
38
|
+
|
|
39
|
+
const workspace = new Workspace({
|
|
40
|
+
filesystem: new LocalFilesystem({ basePath: './workspace' }),
|
|
41
|
+
skills: ['skills'],
|
|
42
|
+
})
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Agents that use this workspace can now discover and load the `code-review` skill when needed.
|
|
46
|
+
|
|
47
|
+
## Skill structure
|
|
48
|
+
|
|
9
49
|
A skill is a folder containing:
|
|
10
50
|
|
|
11
51
|
- `SKILL.md`: Instructions and metadata for the agent
|
|
@@ -24,8 +64,6 @@ skills/
|
|
|
24
64
|
lint.ts
|
|
25
65
|
```
|
|
26
66
|
|
|
27
|
-
When skills are configured on a workspace, agents can discover and activate them during conversations.
|
|
28
|
-
|
|
29
67
|
## `SKILL.md` format
|
|
30
68
|
|
|
31
69
|
Follow the official [skill specification](https://agentskills.io/specification) when creating your skill. Here is an example `SKILL.md` for a code review skill:
|
|
@@ -59,17 +97,6 @@ You are a code reviewer. When reviewing code:
|
|
|
59
97
|
|
|
60
98
|
## Configuring skills
|
|
61
99
|
|
|
62
|
-
Enable skill discovery by setting the `skills` option on your workspace:
|
|
63
|
-
|
|
64
|
-
```typescript
|
|
65
|
-
import { Workspace, LocalFilesystem } from '@mastra/core/workspace'
|
|
66
|
-
|
|
67
|
-
const workspace = new Workspace({
|
|
68
|
-
filesystem: new LocalFilesystem({ basePath: './workspace' }),
|
|
69
|
-
skills: ['skills'],
|
|
70
|
-
})
|
|
71
|
-
```
|
|
72
|
-
|
|
73
100
|
You can specify multiple skill directories:
|
|
74
101
|
|
|
75
102
|
```typescript
|
|
@@ -100,23 +127,6 @@ const workspace = new Workspace({
|
|
|
100
127
|
})
|
|
101
128
|
```
|
|
102
129
|
|
|
103
|
-
## Dynamic skills
|
|
104
|
-
|
|
105
|
-
For runtime skill paths based on context, pass a function:
|
|
106
|
-
|
|
107
|
-
```typescript
|
|
108
|
-
const workspace = new Workspace({
|
|
109
|
-
filesystem: new LocalFilesystem({ basePath: './workspace' }),
|
|
110
|
-
skills: ctx => {
|
|
111
|
-
const paths = ['skills']
|
|
112
|
-
if (ctx.requestContext?.get('userRole') === 'developer') {
|
|
113
|
-
paths.push('dev-skills')
|
|
114
|
-
}
|
|
115
|
-
return paths
|
|
116
|
-
},
|
|
117
|
-
})
|
|
118
|
-
```
|
|
119
|
-
|
|
120
130
|
## How agents use skills
|
|
121
131
|
|
|
122
132
|
When a workspace has skills configured, agents automatically get access to skill tools. Available skills are listed in the system message so the agent knows what's available, and the agent can load any skill on demand.
|
|
@@ -127,6 +137,8 @@ The agent has three skill tools:
|
|
|
127
137
|
- **`skill_read`**: Reads a file from a skill's `references/`, `scripts/`, or `assets/` directory.
|
|
128
138
|
- **`skill_search`**: Searches across all skill content. Uses BM25 or vector search when configured, otherwise falls back to basic text matching.
|
|
129
139
|
|
|
140
|
+
Skill tools are registered when skills are configured. They aren't part of `WORKSPACE_TOOLS`, which configures filesystem, sandbox, search, and LSP tools.
|
|
141
|
+
|
|
130
142
|
This design is stateless, there is no activation state to track. If the skill instructions leave the conversation context (due to context window limits or compaction), the agent can call `skill` again to reload them.
|
|
131
143
|
|
|
132
144
|
## Same-named skills
|
|
@@ -195,10 +207,27 @@ You can also attach skills directly to an agent without a workspace using `creat
|
|
|
195
207
|
|
|
196
208
|
See [Agent skills](https://mastra.ai/docs/agents/skills) for details.
|
|
197
209
|
|
|
210
|
+
## Dynamic skills
|
|
211
|
+
|
|
212
|
+
For runtime skill paths based on context, pass a function:
|
|
213
|
+
|
|
214
|
+
```typescript
|
|
215
|
+
const workspace = new Workspace({
|
|
216
|
+
filesystem: new LocalFilesystem({ basePath: './workspace' }),
|
|
217
|
+
skills: ctx => {
|
|
218
|
+
const paths = ['skills']
|
|
219
|
+
if (ctx.requestContext?.get('userRole') === 'developer') {
|
|
220
|
+
paths.push('dev-skills')
|
|
221
|
+
}
|
|
222
|
+
return paths
|
|
223
|
+
},
|
|
224
|
+
})
|
|
225
|
+
```
|
|
226
|
+
|
|
198
227
|
## Related
|
|
199
228
|
|
|
200
229
|
- [Agent skills](https://mastra.ai/docs/agents/skills)
|
|
201
230
|
- [Agent skills specification](https://agentskills.io)
|
|
202
|
-
- [
|
|
231
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
203
232
|
- [Search and indexing](https://mastra.ai/docs/workspace/search)
|
|
204
233
|
- [`createSkill()` reference](https://mastra.ai/reference/agents/createSkill)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# BrowserViewer
|
|
4
4
|
|
|
5
|
-
The `@mastra/browser-viewer` package provides browser automation for CLI-based tools like [agent-browser](https://www.npmjs.com/package/agent-browser), [browser-use](https://pypi.org/project/browser-use/), and [browse](https://www.npmjs.com/package/browse). BrowserViewer launches Chrome via Playwright, exposes a Chrome DevTools Protocol (CDP) URL, and automatically injects it into CLI commands run through [
|
|
5
|
+
The `@mastra/browser-viewer` package provides browser automation for CLI-based tools like [agent-browser](https://www.npmjs.com/package/agent-browser), [browser-use](https://pypi.org/project/browser-use/), and [browse](https://www.npmjs.com/package/browse). BrowserViewer launches Chrome via Playwright, exposes a Chrome DevTools Protocol (CDP) URL, and automatically injects it into CLI commands run through [sandbox tools](https://mastra.ai/docs/workspace/sandbox).
|
|
6
6
|
|
|
7
7
|
## When to use BrowserViewer
|
|
8
8
|
|
|
@@ -147,5 +147,5 @@ CDP flag: `--ws` See [BrowserViewer reference](https://mastra.ai/reference/brows
|
|
|
147
147
|
- [Browser overview](https://mastra.ai/docs/browser/overview)
|
|
148
148
|
- [AgentBrowser](https://mastra.ai/integrations/browsers/agent-browser)
|
|
149
149
|
- [Stagehand](https://mastra.ai/integrations/browsers/stagehand)
|
|
150
|
-
- [
|
|
150
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
151
151
|
- [Workspace skills](https://mastra.ai/docs/workspace/skills)
|
|
@@ -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
|
|
|
@@ -271,4 +271,4 @@ See [E2BSandbox reference](https://mastra.ai/integrations/sandboxes/e2b) for mor
|
|
|
271
271
|
- [GCSFilesystem reference](https://mastra.ai/integrations/file-storage/google-cloud-storage)
|
|
272
272
|
- [AzureBlobFilesystem reference](https://mastra.ai/integrations/file-storage/azure-blob)
|
|
273
273
|
- [E2BSandbox reference](https://mastra.ai/integrations/sandboxes/e2b)
|
|
274
|
-
- [
|
|
274
|
+
- [Filesystem](https://mastra.ai/docs/workspace/filesystem)
|
|
@@ -217,4 +217,4 @@ const config = filesystem.getMountConfig()
|
|
|
217
217
|
- [WorkspaceFilesystem interface](https://mastra.ai/reference/workspace/filesystem)
|
|
218
218
|
- [S3Filesystem reference](https://mastra.ai/integrations/file-storage/amazon-s3)
|
|
219
219
|
- [GCSFilesystem reference](https://mastra.ai/integrations/file-storage/google-cloud-storage)
|
|
220
|
-
- [
|
|
220
|
+
- [Filesystem](https://mastra.ai/docs/workspace/filesystem)
|
|
@@ -194,4 +194,4 @@ See [E2BSandbox reference](https://mastra.ai/integrations/sandboxes/e2b) for mor
|
|
|
194
194
|
- [S3Filesystem reference](https://mastra.ai/integrations/file-storage/amazon-s3)
|
|
195
195
|
- [AzureBlobFilesystem reference](https://mastra.ai/integrations/file-storage/azure-blob)
|
|
196
196
|
- [E2BSandbox reference](https://mastra.ai/integrations/sandboxes/e2b)
|
|
197
|
-
- [
|
|
197
|
+
- [Filesystem](https://mastra.ai/docs/workspace/filesystem)
|
|
@@ -317,5 +317,5 @@ Read operations still work. Write operations throw `WorkspaceReadOnlyError`.
|
|
|
317
317
|
|
|
318
318
|
- [WorkspaceFilesystem interface](https://mastra.ai/reference/workspace/filesystem)
|
|
319
319
|
- [Filesystem docs](https://mastra.ai/docs/workspace/filesystem)
|
|
320
|
-
- [
|
|
320
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
321
321
|
- [Mesa documentation](https://docs.mesa.dev/content/getting-started/introduction)
|
|
@@ -184,5 +184,5 @@ const url = await filesystem.files.url('reports/q3.pdf')
|
|
|
184
184
|
- [S3Filesystem reference](https://mastra.ai/integrations/file-storage/amazon-s3)
|
|
185
185
|
- [GCSFilesystem reference](https://mastra.ai/integrations/file-storage/google-cloud-storage)
|
|
186
186
|
- [AzureBlobFilesystem reference](https://mastra.ai/integrations/file-storage/azure-blob)
|
|
187
|
-
- [
|
|
187
|
+
- [Filesystem](https://mastra.ai/docs/workspace/filesystem)
|
|
188
188
|
- [FilesSDK documentation](https://files-sdk.dev)
|
|
@@ -254,4 +254,4 @@ const editor = new MastraEditor({
|
|
|
254
254
|
- [WorkspaceSandbox interface](https://mastra.ai/reference/workspace/sandbox)
|
|
255
255
|
- [DockerSandbox reference](https://mastra.ai/integrations/sandboxes/docker)
|
|
256
256
|
- [LocalSandbox reference](https://mastra.ai/reference/workspace/local-sandbox)
|
|
257
|
-
- [
|
|
257
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
@@ -503,4 +503,4 @@ Resources are only applied when `image` is set. Passing `resources` without `ima
|
|
|
503
503
|
- [LocalSandbox reference](https://mastra.ai/reference/workspace/local-sandbox)
|
|
504
504
|
- [S3Filesystem reference](https://mastra.ai/integrations/file-storage/amazon-s3)
|
|
505
505
|
- [GCSFilesystem reference](https://mastra.ai/integrations/file-storage/google-cloud-storage)
|
|
506
|
-
- [
|
|
506
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
@@ -256,4 +256,4 @@ const sandbox = new DockerSandbox({
|
|
|
256
256
|
- [WorkspaceSandbox interface](https://mastra.ai/reference/workspace/sandbox)
|
|
257
257
|
- [LocalSandbox reference](https://mastra.ai/reference/workspace/local-sandbox)
|
|
258
258
|
- [E2BSandbox reference](https://mastra.ai/integrations/sandboxes/e2b)
|
|
259
|
-
- [
|
|
259
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
@@ -274,4 +274,4 @@ const { tool, instructions } = createCodeMode(
|
|
|
274
274
|
- [S3Filesystem reference](https://mastra.ai/integrations/file-storage/amazon-s3)
|
|
275
275
|
- [GCSFilesystem reference](https://mastra.ai/integrations/file-storage/google-cloud-storage)
|
|
276
276
|
- [Azure Blob Filesystem reference](https://mastra.ai/integrations/file-storage/azure-blob)
|
|
277
|
-
- [
|
|
277
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
@@ -165,4 +165,4 @@ See [`SandboxProcessManager` reference](https://mastra.ai/reference/workspace/pr
|
|
|
165
165
|
- [WorkspaceSandbox interface](https://mastra.ai/reference/workspace/sandbox)
|
|
166
166
|
- [E2BSandbox reference](https://mastra.ai/integrations/sandboxes/e2b)
|
|
167
167
|
- [DaytonaSandbox reference](https://mastra.ai/integrations/sandboxes/daytona)
|
|
168
|
-
- [
|
|
168
|
+
- [Sandbox](https://mastra.ai/docs/workspace/sandbox)
|
|
@@ -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 327 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
|
|
|
@@ -171,7 +171,6 @@ ANTHROPIC_API_KEY=ant-...
|
|
|
171
171
|
| `inception/mercury-2` |
|
|
172
172
|
| `inception/mercury-coder-small` |
|
|
173
173
|
| `inclusionai/ling-3.0-flash` |
|
|
174
|
-
| `inclusionai/ling-3.0-tiny-free` |
|
|
175
174
|
| `interfaze/interfaze-beta` |
|
|
176
175
|
| `klingai/kling-v2.5-turbo-i2v` |
|
|
177
176
|
| `klingai/kling-v2.5-turbo-t2v` |
|
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
|
# Baseten
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 19 Baseten models through Mastra's model router. Authentication is handled automatically using the `BASETEN_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Baseten documentation](https://docs.baseten.co).
|
|
8
8
|
|
|
@@ -38,6 +38,7 @@ for await (const chunk of stream) {
|
|
|
38
38
|
| -------------------------------------------------- | ------- | ----- | --------- | ----- | ----- | ----- | ---------- | ----------- |
|
|
39
39
|
| `baseten/deepseek-ai/DeepSeek-V4-Flash-0731` | 1.0M | | | | | | $0.13 | $0.26 |
|
|
40
40
|
| `baseten/deepseek-ai/DeepSeek-V4-Pro` | 262K | | | | | | $2 | $3 |
|
|
41
|
+
| `baseten/deepseek-ai/DeepSeek-V4-Pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
41
42
|
| `baseten/moonshotai/Kimi-K2.5` | 262K | | | | | | $0.60 | $3 |
|
|
42
43
|
| `baseten/moonshotai/Kimi-K2.6` | 262K | | | | | | $0.95 | $4 |
|
|
43
44
|
| `baseten/moonshotai/Kimi-K2.7-Code` | 262K | | | | | | $0.95 | $4 |
|
|
@@ -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 |
|
|
@@ -43,8 +43,8 @@ for await (const chunk of stream) {
|
|
|
43
43
|
| `crossmodel/anthropic/claude-opus-5` | 1.0M | | | | | | $5 | $25 |
|
|
44
44
|
| `crossmodel/anthropic/claude-sonnet-4-6` | 1.0M | | | | | | $3 | $15 |
|
|
45
45
|
| `crossmodel/anthropic/claude-sonnet-5` | 1.0M | | | | | | $2 | $10 |
|
|
46
|
-
| `crossmodel/deepseek/deepseek-v4-flash` | 1.0M | | | | | | $0.
|
|
47
|
-
| `crossmodel/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $
|
|
46
|
+
| `crossmodel/deepseek/deepseek-v4-flash` | 1.0M | | | | | | $0.45 | $1 |
|
|
47
|
+
| `crossmodel/deepseek/deepseek-v4-pro` | 1.0M | | | | | | $1 | $4 |
|
|
48
48
|
| `crossmodel/gemini/gemini-2.5-flash` | 1.0M | | | | | | $0.30 | $3 |
|
|
49
49
|
| `crossmodel/gemini/gemini-2.5-flash-lite` | 1.0M | | | | | | $0.10 | $0.40 |
|
|
50
50
|
| `crossmodel/gemini/gemini-2.5-pro` | 1.0M | | | | | | $1 | $10 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Deep Infra
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 54 Deep Infra models through Mastra's model router. Authentication is handled automatically using the `DEEPINFRA_API_KEY` environment variable.
|
|
6
6
|
|
|
7
7
|
Learn more in the [Deep Infra documentation](https://deepinfra.com/models).
|
|
8
8
|
|
|
@@ -37,6 +37,7 @@ for await (const chunk of stream) {
|
|
|
37
37
|
| `deepinfra/ByteDance/Seed-2.0-code` | 256K | | | | | | $0.50 | $3 |
|
|
38
38
|
| `deepinfra/deepseek-ai/DeepSeek-R1-0528` | 164K | | | | | | $0.50 | $2 |
|
|
39
39
|
| `deepinfra/deepseek-ai/DeepSeek-V3` | 164K | | | | | | $0.32 | $0.89 |
|
|
40
|
+
| `deepinfra/deepseek-ai/DeepSeek-V3-0324` | 164K | | | | | | $0.24 | $0.90 |
|
|
40
41
|
| `deepinfra/deepseek-ai/DeepSeek-V3.1` | 164K | | | | | | $0.25 | $0.95 |
|
|
41
42
|
| `deepinfra/deepseek-ai/DeepSeek-V3.2` | 164K | | | | | | $0.26 | $0.38 |
|
|
42
43
|
| `deepinfra/deepseek-ai/DeepSeek-V4-Flash` | 1.0M | | | | | | $0.09 | $0.18 |
|
|
@@ -58,6 +59,7 @@ for await (const chunk of stream) {
|
|
|
58
59
|
| `deepinfra/openai/gpt-oss-120b` | 131K | | | | | | $0.04 | $0.17 |
|
|
59
60
|
| `deepinfra/openai/gpt-oss-20b` | 131K | | | | | | $0.03 | $0.14 |
|
|
60
61
|
| `deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507` | 262K | | | | | | $0.09 | $0.55 |
|
|
62
|
+
| `deepinfra/Qwen/Qwen3-30B-A3B` | 41K | | | | | | $0.12 | $0.50 |
|
|
61
63
|
| `deepinfra/Qwen/Qwen3-32B` | 41K | | | | | | $0.08 | $0.28 |
|
|
62
64
|
| `deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo` | 262K | | | | | | $0.30 | $1 |
|
|
63
65
|
| `deepinfra/Qwen/Qwen3-Max` | 256K | | | | | | $1 | $6 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Fireworks AI
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 23 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
|
|
|
@@ -39,6 +39,7 @@ for await (const chunk of stream) {
|
|
|
39
39
|
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
40
40
|
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-flash-0731` | 1.0M | | | | | | $0.14 | $0.28 |
|
|
41
41
|
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro` | 1.0M | | | | | | $2 | $3 |
|
|
42
|
+
| `fireworks-ai/accounts/fireworks/models/deepseek-v4-pro-0813` | 1.0M | | | | | | $1 | $4 |
|
|
42
43
|
| `fireworks-ai/accounts/fireworks/models/glm-5p2` | 1.0M | | | | | | $1 | $4 |
|
|
43
44
|
| `fireworks-ai/accounts/fireworks/models/gpt-oss-120b` | 131K | | | | | | $0.15 | $0.60 |
|
|
44
45
|
| `fireworks-ai/accounts/fireworks/models/gpt-oss-20b` | 131K | | | | | | $0.07 | $0.30 |
|
|
@@ -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,8 +45,10 @@ 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 |
|
|
51
|
+
| `huggingface/meta-llama/Llama-3.1-8B-Instruct` | 131K | | | | | | $0.06 | $0.06 |
|
|
50
52
|
| `huggingface/meta-llama/Llama-3.3-70B-Instruct` | 131K | | | | | | $0.59 | $0.79 |
|
|
51
53
|
| `huggingface/MiniMaxAI/MiniMax-M2` | 205K | | | | | | $0.30 | $1 |
|
|
52
54
|
| `huggingface/MiniMaxAI/MiniMax-M2.1` | 205K | | | | | | $0.30 | $1 |
|
|
@@ -62,9 +64,11 @@ for await (const chunk of stream) {
|
|
|
62
64
|
| `huggingface/moonshotai/Kimi-K3` | 1.0M | | | | | | $3 | $15 |
|
|
63
65
|
| `huggingface/openai/gpt-oss-120b` | 131K | | | | | | $0.25 | $0.69 |
|
|
64
66
|
| `huggingface/openai/gpt-oss-20b` | 131K | | | | | | $0.10 | $0.50 |
|
|
67
|
+
| `huggingface/Qwen/Qwen2.5-Coder-32B-Instruct` | 131K | | | | | | $0.06 | $0.20 |
|
|
65
68
|
| `huggingface/Qwen/Qwen3-235B-A22B` | 41K | | | | | | $0.20 | $0.80 |
|
|
66
69
|
| `huggingface/Qwen/Qwen3-235B-A22B-Instruct-2507` | 262K | | | | | | $0.85 | $3 |
|
|
67
70
|
| `huggingface/Qwen/Qwen3-235B-A22B-Thinking-2507` | 262K | | | | | | $0.30 | $3 |
|
|
71
|
+
| `huggingface/Qwen/Qwen3-30B-A3B` | 41K | | | | | | $0.12 | $0.50 |
|
|
68
72
|
| `huggingface/Qwen/Qwen3-32B` | 131K | | | | | | $0.29 | $0.59 |
|
|
69
73
|
| `huggingface/Qwen/Qwen3-Coder-30B-A3B-Instruct` | 262K | | | | | | $0.07 | $0.26 |
|
|
70
74
|
| `huggingface/Qwen/Qwen3-Coder-480B-A35B-Instruct` | 262K | | | | | | $2 | $2 |
|
|
@@ -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,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` | 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
|
-
| `kilo/~moonshotai/kimi-latest` |
|
|
46
|
+
| `kilo/~moonshotai/kimi-latest` | 1.0M | | | | | | $3 | $14 |
|
|
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 |
|
|
@@ -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 |
|
|
@@ -318,7 +318,7 @@ for await (const chunk of stream) {
|
|
|
318
318
|
| `kilo/qwen/qwen3-next-80b-a3b-thinking` | 131K | | | | | | $0.15 | $1 |
|
|
319
319
|
| `kilo/qwen/qwen3-vl-235b-a22b-instruct` | 131K | | | | | | $0.26 | $1 |
|
|
320
320
|
| `kilo/qwen/qwen3-vl-235b-a22b-thinking` | 131K | | | | | | $0.40 | $4 |
|
|
321
|
-
| `kilo/qwen/qwen3-vl-30b-a3b-instruct` |
|
|
321
|
+
| `kilo/qwen/qwen3-vl-30b-a3b-instruct` | 131K | | | | | | $0.13 | $0.52 |
|
|
322
322
|
| `kilo/qwen/qwen3-vl-30b-a3b-thinking` | 131K | | | | | | $0.20 | $2 |
|
|
323
323
|
| `kilo/qwen/qwen3-vl-32b-instruct` | 131K | | | | | | $0.10 | $0.42 |
|
|
324
324
|
| `kilo/qwen/qwen3-vl-8b-instruct` | 131K | | | | | | $0.12 | $0.46 |
|
|
@@ -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 |
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Merge Gateway
|
|
4
4
|
|
|
5
|
-
Access
|
|
5
|
+
Access 169 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
|
|
|
@@ -89,6 +89,7 @@ for await (const chunk of stream) {
|
|
|
89
89
|
| `merge-gateway/google/gemini-flash-lite-latest` | 1.0M | | | | | | $0.25 | $2 |
|
|
90
90
|
| `merge-gateway/google/gemma-4-26b-a4b-it` | 262K | | | | | | $0.13 | $0.40 |
|
|
91
91
|
| `merge-gateway/google/gemma-4-31b-it` | 262K | | | | | | $0.14 | $0.40 |
|
|
92
|
+
| `merge-gateway/meta/llama-3.1-8b-instruct` | 128K | | | | | | $0.22 | $0.22 |
|
|
92
93
|
| `merge-gateway/meta/llama-3.3-70b-instruct` | 131K | | | | | | $0.22 | $0.50 |
|
|
93
94
|
| `merge-gateway/meta/muse-spark-1.1` | 1.0M | | | | | | $1 | $4 |
|
|
94
95
|
| `merge-gateway/meta/muse-spark-1.2` | 1.0M | | | | | | $1 | $4 |
|
|
@@ -154,6 +155,7 @@ for await (const chunk of stream) {
|
|
|
154
155
|
| `merge-gateway/qwen/qwen-plus` | 1.0M | | | | | | $0.12 | $0.29 |
|
|
155
156
|
| `merge-gateway/qwen/qwen3-235b-a22b` | 131K | | | | | | $0.29 | $1 |
|
|
156
157
|
| `merge-gateway/qwen/qwen3-235b-a22b-instruct-2507` | 131K | | | | | | $0.10 | $0.60 |
|
|
158
|
+
| `merge-gateway/qwen/qwen3-30b-a3b` | 131K | | | | | | $0.11 | $1 |
|
|
157
159
|
| `merge-gateway/qwen/qwen3-32b` | 131K | | | | | | $0.15 | $0.60 |
|
|
158
160
|
| `merge-gateway/qwen/qwen3-coder-480b-a35b-instruct` | 131K | | | | | | $0.22 | $2 |
|
|
159
161
|
| `merge-gateway/qwen/qwen3-coder-flash` | 1.0M | | | | | | $0.14 | $0.57 |
|
|
@@ -166,7 +168,7 @@ for await (const chunk of stream) {
|
|
|
166
168
|
| `merge-gateway/qwen/qwen3.5-122b-a10b` | 256K | | | | | | $0.12 | $0.92 |
|
|
167
169
|
| `merge-gateway/qwen/qwen3.5-27b` | 256K | | | | | | $0.09 | $0.69 |
|
|
168
170
|
| `merge-gateway/qwen/qwen3.5-35b-a3b` | 256K | | | | | | $0.06 | $0.46 |
|
|
169
|
-
| `merge-gateway/qwen/qwen3.5-397b-a17b` |
|
|
171
|
+
| `merge-gateway/qwen/qwen3.5-397b-a17b` | 256K | | | | | | $0.17 | $1 |
|
|
170
172
|
| `merge-gateway/qwen/qwen3.5-9b` | 262K | | | | | | $0.09 | $0.13 |
|
|
171
173
|
| `merge-gateway/qwen/qwen3.5-flash` | 1.0M | | | | | | $0.03 | $0.29 |
|
|
172
174
|
| `merge-gateway/qwen/qwen3.5-plus` | 1.0M | | | | | | $0.12 | $0.69 |
|