@mastra/mcp-docs-server 1.2.5-alpha.3 → 1.2.5-alpha.5

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.
@@ -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 4544 models from 139 providers through a single API.
5
+ Mastra provides a unified interface for working with LLMs across multiple providers, giving you access to 4545 models from 139 providers through a single API.
6
6
 
7
7
  ## Features
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # ![Nvidia logo](https://models.dev/logos/nvidia.svg)Nvidia
4
4
 
5
- Access 83 Nvidia models through Mastra's model router. Authentication is handled automatically using the `NVIDIA_API_KEY` environment variable.
5
+ Access 84 Nvidia models through Mastra's model router. Authentication is handled automatically using the `NVIDIA_API_KEY` environment variable.
6
6
 
7
7
  Learn more in the [Nvidia documentation](https://docs.api.nvidia.com/nim/).
8
8
 
@@ -119,6 +119,7 @@ for await (const chunk of stream) {
119
119
  | `nvidia/stepfun-ai/step-3.5-flash` | 256K | | | | | | — | — |
120
120
  | `nvidia/stepfun-ai/step-3.7-flash` | 256K | | | | | | — | — |
121
121
  | `nvidia/upstage/solar-10_7b-instruct` | 128K | | | | | | — | — |
122
+ | `nvidia/z-ai/glm-5.2` | 1.0M | | | | | | — | — |
122
123
 
123
124
  ## Advanced configuration
124
125
 
@@ -148,7 +149,7 @@ const agent = new Agent({
148
149
  model: ({ requestContext }) => {
149
150
  const useAdvanced = requestContext.task === "complex";
150
151
  return useAdvanced
151
- ? "nvidia/upstage/solar-10_7b-instruct"
152
+ ? "nvidia/z-ai/glm-5.2"
152
153
  : "nvidia/abacusai/dracarys-llama-3_1-70b-instruct";
153
154
  }
154
155
  });
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.2.5-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`a51c63d`](https://github.com/mastra-ai/mastra/commit/a51c63d8ee639e4daeba2a0be093efa6a1b5e52f), [`02705fd`](https://github.com/mastra-ai/mastra/commit/02705fd2f5a9062210d64ea061adeeb10dc9452e)]:
8
+ - @mastra/core@1.50.0-alpha.2
9
+
3
10
  ## 1.2.5-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.5-alpha.3",
3
+ "version": "1.2.5-alpha.5",
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.50.0-alpha.1",
31
+ "@mastra/core": "1.50.0-alpha.2",
32
32
  "@mastra/mcp": "^1.13.1-alpha.0"
33
33
  },
34
34
  "devDependencies": {
@@ -46,8 +46,8 @@
46
46
  "typescript": "^6.0.3",
47
47
  "vitest": "4.1.8",
48
48
  "@internal/types-builder": "0.0.86",
49
- "@internal/lint": "0.0.111",
50
- "@mastra/core": "1.50.0-alpha.1"
49
+ "@mastra/core": "1.50.0-alpha.2",
50
+ "@internal/lint": "0.0.111"
51
51
  },
52
52
  "homepage": "https://mastra.ai",
53
53
  "repository": {