@mastra/mcp-docs-server 1.1.26-alpha.16 → 1.1.26-alpha.18

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.
@@ -109,10 +109,10 @@ If you prefer to work from the command line, or need to script the export, you c
109
109
 
110
110
  3. Export the database to a SQL dump.
111
111
 
112
- Set the credentials provided by support (or use the dashboard values if you already copied them earlier) as environment variables, then dump the database to a local file:
112
+ Set the credentials provided by support (or use the dashboard values if you already copied them earlier) as environment variables, then dump the database to a local file. If you copied the URL from the dashboard, swap the `libsql://` scheme for `https://` — the Turso CLI expects the HTTPS form when passing the URL with an auth token.
113
113
 
114
114
  ```bash
115
- export MASTRA_STORAGE_URL="libsql://<db-name>-<org>.turso.io"
115
+ export MASTRA_STORAGE_URL="https://<db-name>-<org>.turso.io"
116
116
  export MASTRA_STORAGE_AUTH_TOKEN="<token-from-dashboard-or-support>"
117
117
 
118
118
  turso db shell "$MASTRA_STORAGE_URL?authToken=$MASTRA_STORAGE_AUTH_TOKEN" ".dump" > mastra-cloud-dump.sql
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.1.26-alpha.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`16e34ca`](https://github.com/mastra-ai/mastra/commit/16e34caa98b9a114b17a6125e4e3fd87f169d0d0)]:
8
+ - @mastra/core@1.26.0-alpha.9
9
+
3
10
  ## 1.1.26-alpha.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.1.26-alpha.16",
3
+ "version": "1.1.26-alpha.18",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,7 +29,7 @@
29
29
  "jsdom": "^26.1.0",
30
30
  "local-pkg": "^1.1.2",
31
31
  "zod": "^4.3.6",
32
- "@mastra/core": "1.26.0-alpha.8",
32
+ "@mastra/core": "1.26.0-alpha.9",
33
33
  "@mastra/mcp": "^1.5.1-alpha.1"
34
34
  },
35
35
  "devDependencies": {
@@ -48,7 +48,7 @@
48
48
  "vitest": "4.0.18",
49
49
  "@internal/lint": "0.0.83",
50
50
  "@internal/types-builder": "0.0.58",
51
- "@mastra/core": "1.26.0-alpha.8"
51
+ "@mastra/core": "1.26.0-alpha.9"
52
52
  },
53
53
  "homepage": "https://mastra.ai",
54
54
  "repository": {