@mastra/mcp-docs-server 0.13.48 → 0.13.49-alpha.0

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.
@@ -1,5 +1,12 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.17.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+
3
10
  ## 0.17.2
4
11
 
5
12
  ### Patch Changes
@@ -491,12 +498,5 @@
491
498
  - Updated dependencies [[`ca85c93`](https://github.com/mastra-ai/mastra/commit/ca85c932b232e6ad820c811ec176d98e68c59b0a), [`a1d40f8`](https://github.com/mastra-ai/mastra/commit/a1d40f88d4ce42c4508774ad22e38ac582157af2), [`01c4a25`](https://github.com/mastra-ai/mastra/commit/01c4a2506c514d5e861c004d3d2fb3791c6391f3), [`cce8aad`](https://github.com/mastra-ai/mastra/commit/cce8aad878a0dd98e5647680f3765caba0b1701c)]:
492
499
  - @mastra/core@0.21.1-alpha.0
493
500
 
494
- ## 0.16.0
495
-
496
- ### Minor Changes
497
-
498
- - support model router in structured output and client-js ([#8686](https://github.com/mastra-ai/mastra/pull/8686))
499
-
500
- ### Patch Changes
501
501
 
502
- ... 3190 more lines hidden. See full changelog in package directory.
502
+ ... 3197 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,63 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 0.24.10-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix model-level and runtime header support for LLM calls ([#11303](https://github.com/mastra-ai/mastra/pull/11303))
8
+
9
+ This fixes a bug where custom headers configured on models (like `anthropic-beta`) were not being passed through to the underlying AI SDK calls. The fix properly handles headers from multiple sources with correct priority:
10
+
11
+ **Header Priority (low to high):**
12
+ 1. Model config headers - Headers set in model configuration
13
+ 2. ModelSettings headers - Runtime headers that override model config
14
+ 3. Provider-level headers - Headers baked into AI SDK providers (not overridden)
15
+
16
+ **Examples that now work:**
17
+
18
+ ```typescript
19
+ // Model config headers
20
+ new Agent({
21
+ model: {
22
+ id: 'anthropic/claude-4-5-sonnet',
23
+ headers: { 'anthropic-beta': 'context-1m-2025-08-07' },
24
+ },
25
+ });
26
+
27
+ // Runtime headers override config
28
+ agent.generate('...', {
29
+ modelSettings: { headers: { 'x-custom': 'runtime-value' } },
30
+ });
31
+
32
+ // Provider-level headers preserved
33
+ const openai = createOpenAI({ headers: { 'openai-organization': 'org-123' } });
34
+ new Agent({ model: openai('gpt-4o-mini') });
35
+ ```
36
+
37
+ - Add helpful JSDoc comments to `BundlerConfig` properties (used with `bundler` option) ([#11300](https://github.com/mastra-ai/mastra/pull/11300))
38
+
39
+ - Fix telemetry disabled configuration being ignored by decorators ([#11267](https://github.com/mastra-ai/mastra/pull/11267))
40
+
41
+ The `hasActiveTelemetry()` function now properly checks the `enabled` configuration flag before creating spans. Previously, it only checked if a tracer existed (which always returns true in OpenTelemetry), causing decorators to create spans even when `telemetry: { enabled: false }` was set.
42
+
43
+ **What changed:**
44
+ - Added short-circuit evaluation in `hasActiveTelemetry()` to check `globalThis.__TELEMETRY__?.isEnabled()` before checking for tracer existence
45
+ - This prevents unnecessary span creation overhead when telemetry is disabled
46
+
47
+ **How to use:**
48
+
49
+ ```typescript
50
+ // Telemetry disabled at initialization
51
+ const mastra = new Mastra({
52
+ telemetry: { enabled: false },
53
+ });
54
+
55
+ // Or disable at runtime
56
+ Telemetry.setEnabled(false);
57
+ ```
58
+
59
+ **Breaking changes:** None - this is a bug fix that makes the existing API work as documented.
60
+
3
61
  ## 0.24.9
4
62
 
5
63
  ### Patch Changes
@@ -441,62 +499,4 @@
441
499
 
442
500
  When calling `agent.generate()`, the model's `doGenerate` method is now correctly invoked instead of always using `doStream`. This aligns the non-streaming generation path with the intended behavior where providers can implement optimized non-streaming responses.
443
501
 
444
- - Updated dependencies [[`33a607a`](https://github.com/mastra-ai/mastra/commit/33a607a1f716c2029d4a1ff1603dd756129a33b3)]:
445
- - @mastra/schema-compat@0.11.8
446
-
447
- ## 0.24.6-alpha.0
448
-
449
- ### Patch Changes
450
-
451
- - Fix base64 encoded images with threads - issue #10480 ([#10566](https://github.com/mastra-ai/mastra/pull/10566))
452
-
453
- Fixed "Invalid URL" error when using base64 encoded images (without `data:` prefix) in agent calls with threads and resources. Raw base64 strings are now automatically converted to proper data URIs before being processed.
454
-
455
- **Changes:**
456
- - Updated `attachments-to-parts.ts` to detect and convert raw base64 strings to data URIs
457
- - Fixed `MessageList` image processing to handle raw base64 in two locations:
458
- - Image part conversion in `aiV4CoreMessageToV1PromptMessage`
459
- - File part to experimental_attachments conversion in `mastraDBMessageToAIV4UIMessage`
460
- - Added comprehensive tests for base64 images, data URIs, and HTTP URLs with threads
461
-
462
- **Breaking Change:** None - this is a bug fix that maintains backward compatibility while adding support for raw base64 strings.
463
-
464
- - SimpleAuth and improved CloudAuth ([#10569](https://github.com/mastra-ai/mastra/pull/10569))
465
-
466
- - Fixed OpenAI schema compatibility when using `agent.generate()` or `agent.stream()` with `structuredOutput`. ([#10454](https://github.com/mastra-ai/mastra/pull/10454))
467
-
468
- ## Changes
469
- - **Automatic transformation**: Zod schemas are now automatically transformed for OpenAI strict mode compatibility when using OpenAI models (including reasoning models like o1, o3, o4)
470
- - **Optional field handling**: `.optional()` fields are converted to `.nullable()` with a transform that converts `null` → `undefined`, preserving optional semantics while satisfying OpenAI's strict mode requirements
471
- - **Preserves nullable fields**: Intentionally `.nullable()` fields remain unchanged
472
- - **Deep transformation**: Handles `.optional()` fields at any nesting level (objects, arrays, unions, etc.)
473
- - **JSON Schema objects**: Not transformed, only Zod schemas
474
-
475
- ## Example
476
-
477
- ```typescript
478
- const agent = new Agent({
479
- name: 'data-extractor',
480
- model: { provider: 'openai', modelId: 'gpt-4o' },
481
- instructions: 'Extract user information',
482
- });
483
-
484
- const schema = z.object({
485
- name: z.string(),
486
- age: z.number().optional(),
487
- deletedAt: z.date().nullable(),
488
- });
489
-
490
- // Schema is automatically transformed for OpenAI compatibility
491
- const result = await agent.generate('Extract: John, deleted yesterday', {
492
- structuredOutput: { schema },
493
- });
494
-
495
- // Result: { name: 'John', age: undefined, deletedAt: null }
496
- ```
497
-
498
- - deleteVectors, deleteFilter when upserting, updateVector filter (#10244) ([#10526](https://github.com/mastra-ai/mastra/pull/10526))
499
-
500
- - Fix generateTitle model type to accept AI SDK LanguageModelV2 ([#10567](https://github.com/mastra-ai/mastra/pull/10567))
501
-
502
- ... 5483 more lines hidden. See full changelog in package directory.
502
+ ... 5541 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/deployer-cloud
2
2
 
3
+ ## 0.24.10-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a), [`d861289`](https://github.com/mastra-ai/mastra/commit/d86128945bfc30526ea1f61be04b9c6752960f09)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+ - @mastra/deployer@0.24.10-alpha.0
10
+
3
11
  ## 0.24.9
4
12
 
5
13
  ### Patch Changes
@@ -491,12 +499,4 @@
491
499
  - @mastra/core@0.20.1-alpha.4
492
500
  - @mastra/deployer@0.20.1-alpha.4
493
501
 
494
- ## 0.20.1-alpha.3
495
-
496
- ### Patch Changes
497
-
498
- - Updated dependencies [[`a6d69c5`](https://github.com/mastra-ai/mastra/commit/a6d69c5fb50c0875b46275811fece5862f03c6a0), [`84199af`](https://github.com/mastra-ai/mastra/commit/84199af8673f6f9cb59286ffb5477a41932775de), [`7f431af`](https://github.com/mastra-ai/mastra/commit/7f431afd586b7d3265075e73106eb73167edbb86)]:
499
- - @mastra/core@0.20.1-alpha.3
500
- - @mastra/deployer@0.20.1-alpha.3
501
-
502
- ... 657 more lines hidden. See full changelog in package directory.
502
+ ... 665 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 0.14.27-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a), [`d861289`](https://github.com/mastra-ai/mastra/commit/d86128945bfc30526ea1f61be04b9c6752960f09)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+ - @mastra/deployer@0.24.10-alpha.0
10
+
3
11
  ## 0.14.26
4
12
 
5
13
  ### Patch Changes
@@ -490,13 +498,5 @@
490
498
 
491
499
  ### Patch Changes
492
500
 
493
- - Updated dependencies [[`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad)]:
494
- - @mastra/core@0.17.2-alpha.0
495
- - @mastra/deployer@0.17.2-alpha.0
496
-
497
- ## 0.14.1
498
-
499
- ### Patch Changes
500
-
501
501
 
502
- ... 3938 more lines hidden. See full changelog in package directory.
502
+ ... 3946 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/deployer-netlify
2
2
 
3
+ ## 0.13.27-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a), [`d861289`](https://github.com/mastra-ai/mastra/commit/d86128945bfc30526ea1f61be04b9c6752960f09)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+ - @mastra/deployer@0.24.10-alpha.0
10
+
3
11
  ## 0.13.26
4
12
 
5
13
  ### Patch Changes
@@ -490,13 +498,5 @@
490
498
  ### Patch Changes
491
499
 
492
500
  - dependencies updates: ([#8007](https://github.com/mastra-ai/mastra/pull/8007))
493
- - Updated dependency [`fs-extra@^11.3.2` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.2) (from `^11.3.1`, in `dependencies`)
494
- - Updated dependencies [[`288745a`](https://github.com/mastra-ai/mastra/commit/288745a19aa9557db3ab3c877d667ff59f14d79c), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb)]:
495
- - @mastra/deployer@0.17.2-alpha.1
496
- - @mastra/core@0.17.2-alpha.1
497
-
498
- ## 0.13.2-alpha.0
499
-
500
- ### Patch Changes
501
501
 
502
- ... 3679 more lines hidden. See full changelog in package directory.
502
+ ... 3687 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/deployer-vercel
2
2
 
3
+ ## 0.12.27-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a), [`d861289`](https://github.com/mastra-ai/mastra/commit/d86128945bfc30526ea1f61be04b9c6752960f09)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+ - @mastra/deployer@0.24.10-alpha.0
10
+
3
11
  ## 0.12.26
4
12
 
5
13
  ### Patch Changes
@@ -490,13 +498,5 @@
490
498
  ### Patch Changes
491
499
 
492
500
  - dependencies updates: ([#8007](https://github.com/mastra-ai/mastra/pull/8007))
493
- - Updated dependency [`fs-extra@^11.3.2` ↗︎](https://www.npmjs.com/package/fs-extra/v/11.3.2) (from `^11.3.1`, in `dependencies`)
494
- - Updated dependencies [[`288745a`](https://github.com/mastra-ai/mastra/commit/288745a19aa9557db3ab3c877d667ff59f14d79c), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb)]:
495
- - @mastra/deployer@0.17.2-alpha.1
496
- - @mastra/core@0.17.2-alpha.1
497
-
498
- ## 0.12.2-alpha.0
499
-
500
- ### Patch Changes
501
501
 
502
- ... 3633 more lines hidden. See full changelog in package directory.
502
+ ... 3641 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,19 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 0.24.10-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Allow for `bundler.externals: true` to be set. ([#11300](https://github.com/mastra-ai/mastra/pull/11300))
8
+
9
+ With this configuration during `mastra build` all dependencies (except workspace dependencies) will be treated as "external" and not bundled. Instead they will be added to the `.mastra/output/package.json` file.
10
+
11
+ - Fix generate system prompt by updating deprecated function call. ([#11075](https://github.com/mastra-ai/mastra/pull/11075))
12
+
13
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
14
+ - @mastra/core@0.24.10-alpha.0
15
+ - @mastra/server@0.24.10-alpha.0
16
+
3
17
  ## 0.24.9
4
18
 
5
19
  ### Patch Changes
@@ -485,18 +499,4 @@
485
499
 
486
500
  ### Patch Changes
487
501
 
488
- - use mastra logger in error handler ([#9037](https://github.com/mastra-ai/mastra/pull/9037))
489
-
490
- - Fix edge case bug around transitive dependencies in monorepos ([#8977](https://github.com/mastra-ai/mastra/pull/8977))
491
-
492
- - Improve error related to finding possible binary dependencies ([#9056](https://github.com/mastra-ai/mastra/pull/9056))
493
-
494
- - Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
495
-
496
- - Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`dbc9e12`](https://github.com/mastra-ai/mastra/commit/dbc9e1216ba575ba59ead4afb727a01215f7de4f), [`99e41b9`](https://github.com/mastra-ai/mastra/commit/99e41b94957cdd25137d3ac12e94e8b21aa01b68), [`c28833c`](https://github.com/mastra-ai/mastra/commit/c28833c5b6d8e10eeffd7f7d39129d53b8bca240), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb), [`2db6160`](https://github.com/mastra-ai/mastra/commit/2db6160e2022ff8827c15d30157e684683b934b5), [`8aeea37`](https://github.com/mastra-ai/mastra/commit/8aeea37efdde347c635a67fed56794943b7f74ec), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e), [`10188d6`](https://github.com/mastra-ai/mastra/commit/10188d632a729010441f9c7e2a41eab60afccb23)]:
497
- - @mastra/core@0.22.0
498
- - @mastra/server@0.22.0
499
-
500
- ## 0.22.0-alpha.1
501
-
502
- ... 5072 more lines hidden. See full changelog in package directory.
502
+ ... 5086 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.13.49-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+
3
10
  ## 0.13.48
4
11
 
5
12
  ### Patch Changes
@@ -491,12 +498,5 @@
491
498
  ### Patch Changes
492
499
 
493
500
  - Updated dependencies [[`dc099b4`](https://github.com/mastra-ai/mastra/commit/dc099b40fb31147ba3f362f98d991892033c4c67), [`b342a68`](https://github.com/mastra-ai/mastra/commit/b342a68e1399cf1ece9ba11bda112db89d21118c), [`303a9c0`](https://github.com/mastra-ai/mastra/commit/303a9c0d7dd58795915979f06a0512359e4532fb), [`370f8a6`](https://github.com/mastra-ai/mastra/commit/370f8a6480faec70fef18d72e5f7538f27004301), [`623ffaf`](https://github.com/mastra-ai/mastra/commit/623ffaf2d969e11e99a0224633cf7b5a0815c857), [`9fc1613`](https://github.com/mastra-ai/mastra/commit/9fc16136400186648880fd990119ac15f7c02ee4), [`61f62aa`](https://github.com/mastra-ai/mastra/commit/61f62aa31bc88fe4ddf8da6240dbcfbeb07358bd), [`3e292ba`](https://github.com/mastra-ai/mastra/commit/3e292ba00837886d5d68a34cbc0d9b703c991883), [`418c136`](https://github.com/mastra-ai/mastra/commit/418c1366843d88e491bca3f87763899ce855ca29), [`c84b7d0`](https://github.com/mastra-ai/mastra/commit/c84b7d093c4657772140cbfd2b15ef72f3315ed5)]:
494
- - @mastra/core@0.18.1-alpha.0
495
-
496
- ## 0.13.24
497
-
498
- ### Patch Changes
499
-
500
- - Updated dependencies [[`cf34503`](https://github.com/mastra-ai/mastra/commit/cf345031de4e157f29087946449e60b965e9c8a9), [`6b4b1e4`](https://github.com/mastra-ai/mastra/commit/6b4b1e4235428d39e51cbda9832704c0ba70ab32), [`3469fca`](https://github.com/mastra-ai/mastra/commit/3469fca7bb7e5e19369ff9f7044716a5e4b02585), [`a61f23f`](https://github.com/mastra-ai/mastra/commit/a61f23fbbca4b88b763d94f1d784c47895ed72d7), [`4b339b8`](https://github.com/mastra-ai/mastra/commit/4b339b8141c20d6a6d80583c7e8c5c05d8c19492), [`d1dc606`](https://github.com/mastra-ai/mastra/commit/d1dc6067b0557a71190b68d56ee15b48c26d2411), [`c45298a`](https://github.com/mastra-ai/mastra/commit/c45298a0a0791db35cf79f1199d77004da0704cb), [`c4a8204`](https://github.com/mastra-ai/mastra/commit/c4a82046bfd241d6044e234bc5917d5a01fe6b55), [`d3bd4d4`](https://github.com/mastra-ai/mastra/commit/d3bd4d482a685bbb67bfa89be91c90dca3fa71ad), [`c591dfc`](https://github.com/mastra-ai/mastra/commit/c591dfc1e600fae1dedffe239357d250e146378f), [`1920c5c`](https://github.com/mastra-ai/mastra/commit/1920c5c6d666f687785c73021196aa551e579e0d), [`b6a3b65`](https://github.com/mastra-ai/mastra/commit/b6a3b65d830fa0ca7754ad6481661d1f2c878f21), [`af3abb6`](https://github.com/mastra-ai/mastra/commit/af3abb6f7c7585d856e22d27f4e7d2ece2186b9a), [`5b1ee71`](https://github.com/mastra-ai/mastra/commit/5b1ee71dc3ac92383226dc1e375642ca5f9b4224)]:
501
501
 
502
- ... 2153 more lines hidden. See full changelog in package directory.
502
+ ... 2160 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,14 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+ - @mastra/client-js@0.17.3-alpha.0
10
+ - @mastra/react@0.0.25-alpha.0
11
+
3
12
  ## 7.0.2
4
13
 
5
14
  ### Patch Changes
@@ -489,14 +498,5 @@
489
498
 
490
499
  - Update peerdeps to 0.23.0-0 ([#9043](https://github.com/mastra-ai/mastra/pull/9043))
491
500
 
492
- - Updated dependencies [[`c67ca32`](https://github.com/mastra-ai/mastra/commit/c67ca32e3c2cf69bfc146580770c720220ca44ac), [`efb5ed9`](https://github.com/mastra-ai/mastra/commit/efb5ed946ae7f410bc68c9430beb4b010afd25ec), [`dbc9e12`](https://github.com/mastra-ai/mastra/commit/dbc9e1216ba575ba59ead4afb727a01215f7de4f), [`99e41b9`](https://github.com/mastra-ai/mastra/commit/99e41b94957cdd25137d3ac12e94e8b21aa01b68), [`c28833c`](https://github.com/mastra-ai/mastra/commit/c28833c5b6d8e10eeffd7f7d39129d53b8bca240), [`8ea07b4`](https://github.com/mastra-ai/mastra/commit/8ea07b4bdc73e4218437dbb6dcb0f4b23e745a44), [`ba201b8`](https://github.com/mastra-ai/mastra/commit/ba201b8f8feac4c72350f2dbd52c13c7297ba7b0), [`f053e89`](https://github.com/mastra-ai/mastra/commit/f053e89160dbd0bd3333fc3492f68231b5c7c349), [`1f058c6`](https://github.com/mastra-ai/mastra/commit/1f058c63ccb88d718b9876490d17e112cc026467), [`4fc4136`](https://github.com/mastra-ai/mastra/commit/4fc413652866a8d2240694fddb2562e9edbb70df), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`d10baf5`](https://github.com/mastra-ai/mastra/commit/d10baf5a3c924f2a6654e23a3e318ed03f189b76), [`038c55a`](https://github.com/mastra-ai/mastra/commit/038c55a7090fc1b1513a966386d3072617f836ac), [`5ea29c6`](https://github.com/mastra-ai/mastra/commit/5ea29c6a72dc3a6c837076fd37ee54ebae77a02a), [`182f045`](https://github.com/mastra-ai/mastra/commit/182f0458f25bd70aa774e64fd923c8a483eddbf1), [`9a1a485`](https://github.com/mastra-ai/mastra/commit/9a1a4859b855e37239f652bf14b1ecd1029b8c4e), [`9257233`](https://github.com/mastra-ai/mastra/commit/9257233c4ffce09b2bedc2a9adbd70d7a83fa8e2), [`7620d2b`](https://github.com/mastra-ai/mastra/commit/7620d2bddeb4fae4c3c0a0b4e672969795fca11a), [`b2365f0`](https://github.com/mastra-ai/mastra/commit/b2365f038dd4c5f06400428b224af963f399ad50), [`0f1a4c9`](https://github.com/mastra-ai/mastra/commit/0f1a4c984fb4b104b2f0b63ba18c9fa77f567700), [`9029ba3`](https://github.com/mastra-ai/mastra/commit/9029ba34459c8859fed4c6b73efd8e2d0021e7ba), [`426cc56`](https://github.com/mastra-ai/mastra/commit/426cc561c85ae76a112ded2385532a91f9f9f074), [`00931fb`](https://github.com/mastra-ai/mastra/commit/00931fb1a21aa42c4fbc20c2c40dd62466b8fc8f), [`e473bfe`](https://github.com/mastra-ai/mastra/commit/e473bfe416c0b8e876973c2b6a6f13c394b7a93f), [`b78e04d`](https://github.com/mastra-ai/mastra/commit/b78e04d935a16ecb1e59c5c96e564903527edddd), [`2db6160`](https://github.com/mastra-ai/mastra/commit/2db6160e2022ff8827c15d30157e684683b934b5), [`8aeea37`](https://github.com/mastra-ai/mastra/commit/8aeea37efdde347c635a67fed56794943b7f74ec), [`02fe153`](https://github.com/mastra-ai/mastra/commit/02fe15351d6021d214da48ec982a0e9e4150bcee), [`648e2ca`](https://github.com/mastra-ai/mastra/commit/648e2ca42da54838c6ccbdaadc6fadd808fa6b86), [`74567b3`](https://github.com/mastra-ai/mastra/commit/74567b3d237ae3915cd0bca3cf55fa0a64e4e4a4), [`b65c5e0`](https://github.com/mastra-ai/mastra/commit/b65c5e0fe6f3c390a9a8bbcf69304d972c3a4afb), [`15a1733`](https://github.com/mastra-ai/mastra/commit/15a1733074cee8bd37370e1af34cd818e89fa7ac), [`fc2a774`](https://github.com/mastra-ai/mastra/commit/fc2a77468981aaddc3e77f83f0c4ad4a4af140da), [`4e08933`](https://github.com/mastra-ai/mastra/commit/4e08933625464dfde178347af5b6278fcf34188e)]:
493
- - @mastra/core@0.22.0
494
- - @mastra/react@0.0.8
495
- - @mastra/client-js@0.16.2
496
-
497
- ## 6.6.0-alpha.1
498
-
499
- ### Minor Changes
500
-
501
501
 
502
- ... 4037 more lines hidden. See full changelog in package directory.
502
+ ... 4046 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,12 @@
1
1
  # @mastra/react-hooks
2
2
 
3
+ ## 0.0.25-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @mastra/client-js@0.17.3-alpha.0
9
+
3
10
  ## 0.0.24
4
11
 
5
12
  ### Patch Changes
@@ -491,12 +498,5 @@
491
498
 
492
499
  ### Patch Changes
493
500
 
494
- - Updated dependencies []:
495
- - @mastra/client-js@0.15.1-alpha.3
496
-
497
- ## 0.0.4-alpha.2
498
-
499
- ### Patch Changes
500
-
501
501
 
502
- ... 93 more lines hidden. See full changelog in package directory.
502
+ ... 100 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,12 @@
1
1
  # @mastra/server
2
2
 
3
+ ## 0.24.10-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+
3
10
  ## 0.24.9
4
11
 
5
12
  ### Patch Changes
@@ -491,12 +498,5 @@
491
498
  - Update structuredOutput to use response format by default with an opt in to json prompt injection. ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
492
499
  Replaced internal usage of output with structuredOutput.
493
500
 
494
- - Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
495
-
496
- ### Patch Changes
497
-
498
- - Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
499
-
500
- - Include span id and trace id when running live scorers ([#8842](https://github.com/mastra-ai/mastra/pull/8842))
501
501
 
502
- ... 4026 more lines hidden. See full changelog in package directory.
502
+ ... 4033 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,7 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.18.10-alpha.0
4
+
3
5
  ## 0.18.9
4
6
 
5
7
  ## 0.18.9-alpha.0
@@ -496,7 +498,5 @@
496
498
 
497
499
  ### Patch Changes
498
500
 
499
- - Client SDK Agents, Mastra server - support runtimeContext with GET requests ([#7734](https://github.com/mastra-ai/mastra/pull/7734))
500
-
501
501
 
502
- ... 1678 more lines hidden. See full changelog in package directory.
502
+ ... 1680 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # mastra
2
2
 
3
+ ## 0.18.10-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a), [`d861289`](https://github.com/mastra-ai/mastra/commit/d86128945bfc30526ea1f61be04b9c6752960f09)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+ - @mastra/deployer@0.24.10-alpha.0
10
+
3
11
  ## 0.18.9
4
12
 
5
13
  ### Patch Changes
@@ -491,12 +499,4 @@
491
499
 
492
500
  - Fix typo in playground causing semantic recall to always be false when enabled. ([#8640](https://github.com/mastra-ai/mastra/pull/8640))
493
501
 
494
- - Update peer dependencies to match core package version bump (0.21.0) ([#8619](https://github.com/mastra-ai/mastra/pull/8619))
495
-
496
- - Update peer dependencies to match core package version bump (0.21.0) ([#8557](https://github.com/mastra-ai/mastra/pull/8557))
497
-
498
- - Update peer dependencies to match core package version bump (0.21.0) ([#8626](https://github.com/mastra-ai/mastra/pull/8626))
499
-
500
- - Refactor EntryList component and Scorer and Observability pages ([#8652](https://github.com/mastra-ai/mastra/pull/8652))
501
-
502
- ... 6403 more lines hidden. See full changelog in package directory.
502
+ ... 6411 more lines hidden. See full changelog in package directory.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 0.13.49-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5581fb`](https://github.com/mastra-ai/mastra/commit/b5581fbcead57443c885f5397d651bf5df20b14a), [`fe5ea7d`](https://github.com/mastra-ai/mastra/commit/fe5ea7d06d56a3ebd3283a25fb45f94aea12d844), [`0ebadd2`](https://github.com/mastra-ai/mastra/commit/0ebadd21d449bd743e5839e875a745afff9f8b0a)]:
8
+ - @mastra/core@0.24.10-alpha.0
9
+
3
10
  ## 0.13.48
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": "0.13.48",
3
+ "version": "0.13.49-alpha.0",
4
4
  "description": "MCP server for accessing Mastra.ai documentation, changelogs, and news.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,8 +33,8 @@
33
33
  "uuid": "^11.1.0",
34
34
  "zod": "^3.25.76",
35
35
  "zod-to-json-schema": "^3.24.6",
36
- "@mastra/mcp": "^0.14.5",
37
- "@mastra/core": "0.24.9"
36
+ "@mastra/core": "0.24.10-alpha.0",
37
+ "@mastra/mcp": "^0.14.5"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@hono/node-server": "^1.19.5",
@@ -50,7 +50,7 @@
50
50
  "typescript": "^5.8.3",
51
51
  "vitest": "^3.2.4",
52
52
  "@internal/lint": "0.0.67",
53
- "@mastra/core": "0.24.9"
53
+ "@mastra/core": "0.24.10-alpha.0"
54
54
  },
55
55
  "homepage": "https://mastra.ai",
56
56
  "repository": {