@mastra/mcp-docs-server 1.0.0-beta.16 → 1.0.0-beta.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.
@@ -1,5 +1,13 @@
1
1
  # @mastra/agent-builder
2
2
 
3
+ ## 1.0.0-beta.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
8
+ - @mastra/core@1.0.0-beta.17
9
+ - @mastra/memory@1.0.0-beta.9
10
+
3
11
  ## 1.0.0-beta.8
4
12
 
5
13
  ### Patch Changes
@@ -491,12 +499,4 @@
491
499
 
492
500
  ### Patch Changes
493
501
 
494
- - 376913a: Update peerdeps
495
- - Updated dependencies [8fbf79e]
496
- - Updated dependencies [376913a]
497
- - Updated dependencies [38020d5]
498
- - @mastra/core@0.16.0-alpha.1
499
- - @mastra/memory@0.14.4-alpha.0
500
-
501
-
502
- ... 132 more lines hidden. See full changelog in package directory.
502
+ ... 140 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,20 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+
10
+ ## 1.0.0-beta.17
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318), [`af56599`](https://github.com/mastra-ai/mastra/commit/af56599d73244ae3bf0d7bcade656410f8ded37b)]:
15
+ - @mastra/core@1.0.0-beta.17
16
+ - @mastra/schema-compat@1.0.0-beta.4
17
+
3
18
  ## 1.0.0-beta.16
4
19
 
5
20
  ### Patch Changes
@@ -484,19 +499,4 @@
484
499
 
485
500
  Removes deprecated `getMessagesPaginated()` method. The `listMessages()` API and score handlers now support `perPage: false` to fetch all records without pagination limits.
486
501
 
487
- **Storage changes:**
488
- - `StoragePagination.perPage` type changed from `number` to `number | false`
489
- - All storage implementations support `perPage: false`:
490
- - Memory: `listMessages()`
491
- - Scores: `listScoresBySpan()`, `listScoresByRunId()`, `listScoresByExecutionId()`
492
- - HTTP query parser accepts `"false"` string (e.g., `?perPage=false`)
493
-
494
- **Memory changes:**
495
- - `memory.query()` parameter type changed from `StorageGetMessagesArg` to `StorageListMessagesInput`
496
- - Uses flat parameters (`page`, `perPage`, `include`, `filter`, `vectorSearchString`) instead of `selectBy` object
497
-
498
- **Stricter validation:**
499
- - `listMessages()` requires non-empty, non-whitespace `threadId` (throws error instead of returning empty results)
500
-
501
-
502
- ... 3556 more lines hidden. See full changelog in package directory.
502
+ ... 3571 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,28 @@
1
1
  # @mastra/core
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed semantic recall fetching all thread messages instead of only matched ones. ([#11435](https://github.com/mastra-ai/mastra/pull/11435))
8
+
9
+ When using `semanticRecall` with `scope: 'thread'`, the processor was incorrectly fetching all messages from the thread instead of just the semantically matched messages with their context. This caused memory to return far more messages than expected when `topK` and `messageRange` were set to small values.
10
+
11
+ Fixes #11428
12
+
13
+ ## 1.0.0-beta.17
14
+
15
+ ### Patch Changes
16
+
17
+ - Fix Zod 4 compatibility for storage schema detection ([#11431](https://github.com/mastra-ai/mastra/pull/11431))
18
+
19
+ If you're using Zod 4, `buildStorageSchema` was failing to detect nullable and optional fields correctly. This caused `NOT NULL constraint failed` errors when storing observability spans and other data.
20
+
21
+ This fix enables proper schema detection for Zod 4 users, ensuring nullable fields like `parentSpanId` are correctly identified and don't cause database constraint violations.
22
+
23
+ - Updated dependencies [[`af56599`](https://github.com/mastra-ai/mastra/commit/af56599d73244ae3bf0d7bcade656410f8ded37b)]:
24
+ - @mastra/schema-compat@1.0.0-beta.4
25
+
3
26
  ## 1.0.0-beta.16
4
27
 
5
28
  ### Minor Changes
@@ -476,27 +499,4 @@
476
499
 
477
500
  ### Minor Changes
478
501
 
479
- - Add support for AI SDK v6 (LanguageModelV3) ([#11191](https://github.com/mastra-ai/mastra/pull/11191))
480
-
481
- Agents can now use `LanguageModelV3` models from AI SDK v6 beta providers like `@ai-sdk/openai@^3.0.0-beta`.
482
-
483
- **New features:**
484
- - Usage normalization: V3's nested usage format is normalized to Mastra's flat format with `reasoningTokens`, `cachedInputTokens`, and raw data preserved in a `raw` field
485
-
486
- **Backward compatible:** All existing V1 and V2 models continue to work unchanged.
487
-
488
- ### Patch Changes
489
-
490
- - Fix model-level and runtime header support for LLM calls ([#11275](https://github.com/mastra-ai/mastra/pull/11275))
491
-
492
- 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:
493
-
494
- **Header Priority (low to high):**
495
- 1. Model config headers - Headers set in model configuration
496
- 2. ModelSettings headers - Runtime headers that override model config
497
- 3. Provider-level headers - Headers baked into AI SDK providers (not overridden)
498
-
499
- **Examples that now work:**
500
-
501
-
502
- ... 6961 more lines hidden. See full changelog in package directory.
502
+ ... 6984 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,21 @@
1
1
  # @mastra/deployer-cloud
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+ - @mastra/deployer@1.0.0-beta.18
10
+
11
+ ## 1.0.0-beta.17
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
16
+ - @mastra/core@1.0.0-beta.17
17
+ - @mastra/deployer@1.0.0-beta.17
18
+
3
19
  ## 1.0.0-beta.16
4
20
 
5
21
  ### Patch Changes
@@ -483,20 +499,4 @@
483
499
 
484
500
  - Fix peer deps ([#8134](https://github.com/mastra-ai/mastra/pull/8134))
485
501
 
486
- - Update peer deps ([#8276](https://github.com/mastra-ai/mastra/pull/8276))
487
-
488
- - Updated dependencies [[`5089c84`](https://github.com/mastra-ai/mastra/commit/5089c84a2f535ad12e79b5aa524ad7d8ca5e2b4c), [`5c98f03`](https://github.com/mastra-ai/mastra/commit/5c98f03ae76d9a93cd6be206b4abb7bf186b3163), [`dc099b4`](https://github.com/mastra-ai/mastra/commit/dc099b40fb31147ba3f362f98d991892033c4c67), [`57b75b0`](https://github.com/mastra-ai/mastra/commit/57b75b01c0c64d91c50d7384c700afda89456fe8), [`4c5e65d`](https://github.com/mastra-ai/mastra/commit/4c5e65de746fbdab23eb6072cb999f4c7aeef9f3), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`57b6dd5`](https://github.com/mastra-ai/mastra/commit/57b6dd50f9e6d92c0ed3e7199e6a92752025e3a1), [`b342a68`](https://github.com/mastra-ai/mastra/commit/b342a68e1399cf1ece9ba11bda112db89d21118c), [`a7243e2`](https://github.com/mastra-ai/mastra/commit/a7243e2e58762667a6e3921e755e89d6bb0a3282), [`504438b`](https://github.com/mastra-ai/mastra/commit/504438b961bde211071186bba63a842c4e3db879), [`7fceb0a`](https://github.com/mastra-ai/mastra/commit/7fceb0a327d678e812f90f5387c5bc4f38bd039e), [`303a9c0`](https://github.com/mastra-ai/mastra/commit/303a9c0d7dd58795915979f06a0512359e4532fb), [`df64f9e`](https://github.com/mastra-ai/mastra/commit/df64f9ef814916fff9baedd861c988084e7c41de), [`370f8a6`](https://github.com/mastra-ai/mastra/commit/370f8a6480faec70fef18d72e5f7538f27004301), [`809eea0`](https://github.com/mastra-ai/mastra/commit/809eea092fa80c3f69b9eaf078d843b57fd2a88e), [`683e5a1`](https://github.com/mastra-ai/mastra/commit/683e5a1466e48b686825b2c11f84680f296138e4), [`3679378`](https://github.com/mastra-ai/mastra/commit/3679378673350aa314741dc826f837b1984149bc), [`7775bc2`](https://github.com/mastra-ai/mastra/commit/7775bc20bb1ad1ab24797fb420e4f96c65b0d8ec), [`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), [`db1891a`](https://github.com/mastra-ai/mastra/commit/db1891a4707443720b7cd8a260dc7e1d49b3609c), [`e8f379d`](https://github.com/mastra-ai/mastra/commit/e8f379d390efa264c4e0874f9ac0cf8839b07777), [`652066b`](https://github.com/mastra-ai/mastra/commit/652066bd1efc6bb6813ba950ed1d7573e8b7d9d4), [`3e292ba`](https://github.com/mastra-ai/mastra/commit/3e292ba00837886d5d68a34cbc0d9b703c991883), [`418c136`](https://github.com/mastra-ai/mastra/commit/418c1366843d88e491bca3f87763899ce855ca29), [`ea8d386`](https://github.com/mastra-ai/mastra/commit/ea8d386cd8c5593664515fd5770c06bf2aa980ef), [`67b0f00`](https://github.com/mastra-ai/mastra/commit/67b0f005b520335c71fb85cbaa25df4ce8484a81), [`c2a4919`](https://github.com/mastra-ai/mastra/commit/c2a4919ba6797d8bdb1509e02287496eef69303e), [`c84b7d0`](https://github.com/mastra-ai/mastra/commit/c84b7d093c4657772140cbfd2b15ef72f3315ed5), [`6f67656`](https://github.com/mastra-ai/mastra/commit/6f676562276926e2982401574d1e07157579be30), [`0130986`](https://github.com/mastra-ai/mastra/commit/0130986fc62d0edcc626dd593282661dbb9af141), [`5dc8e9a`](https://github.com/mastra-ai/mastra/commit/5dc8e9a7f8472298cd3d4e8a0cf6d265529f287d)]:
489
- - @mastra/deployer@0.19.0
490
- - @mastra/core@0.19.0
491
- - @mastra/loggers@0.10.14
492
-
493
- ## 0.19.0-alpha.1
494
-
495
- ### Patch Changes
496
-
497
- - Update peer deps ([#8154](https://github.com/mastra-ai/mastra/pull/8154))
498
-
499
- - Fix peer deps ([#8134](https://github.com/mastra-ai/mastra/pull/8134))
500
-
501
-
502
- ... 551 more lines hidden. See full changelog in package directory.
502
+ ... 567 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,21 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+ - @mastra/server@1.0.0-beta.18
10
+
11
+ ## 1.0.0-beta.17
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
16
+ - @mastra/core@1.0.0-beta.17
17
+ - @mastra/server@1.0.0-beta.17
18
+
3
19
  ## 1.0.0-beta.16
4
20
 
5
21
  ### Minor Changes
@@ -482,21 +498,5 @@
482
498
 
483
499
  // Before
484
500
  await memory.listMessages({
485
- threadId: 'thread-456',
486
- offset: 20,
487
- limit: 10,
488
- });
489
-
490
- // After
491
- await memory.listMessages({
492
- threadId: 'thread-456',
493
- page: 2,
494
- perPage: 10,
495
- });
496
-
497
- // Before
498
- await storage.listWorkflowRuns({
499
- workflowName: 'my-workflow',
500
- offset: 20,
501
501
 
502
- ... 5254 more lines hidden. See full changelog in package directory.
502
+ ... 5270 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,19 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+
10
+ ## 1.0.0-beta.17
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
15
+ - @mastra/core@1.0.0-beta.17
16
+
3
17
  ## 1.0.0-beta.16
4
18
 
5
19
  ### Patch Changes
@@ -484,19 +498,5 @@
484
498
 
485
499
  ## 0.13.23
486
500
 
487
- ### Patch Changes
488
-
489
- - Updated dependencies [[`fd00e63`](https://github.com/mastra-ai/mastra/commit/fd00e63759cbcca3473c40cac9843280b0557cff), [`ab610f6`](https://github.com/mastra-ai/mastra/commit/ab610f6f41dbfe6c9502368671485ca7a0aac09b), [`e6bda5f`](https://github.com/mastra-ai/mastra/commit/e6bda5f954ee8493ea18adc1a883f0a5b785ad9b)]:
490
- - @mastra/core@0.17.1
491
-
492
- ## 0.13.23-alpha.0
493
-
494
- ### Patch Changes
495
-
496
- - Updated dependencies [[`fd00e63`](https://github.com/mastra-ai/mastra/commit/fd00e63759cbcca3473c40cac9843280b0557cff), [`ab610f6`](https://github.com/mastra-ai/mastra/commit/ab610f6f41dbfe6c9502368671485ca7a0aac09b), [`e6bda5f`](https://github.com/mastra-ai/mastra/commit/e6bda5f954ee8493ea18adc1a883f0a5b785ad9b)]:
497
- - @mastra/core@0.17.1-alpha.0
498
-
499
- ## 0.13.22
500
-
501
501
 
502
- ... 2105 more lines hidden. See full changelog in package directory.
502
+ ... 2119 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,13 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 1.0.0-beta.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318), [`af56599`](https://github.com/mastra-ai/mastra/commit/af56599d73244ae3bf0d7bcade656410f8ded37b)]:
8
+ - @mastra/core@1.0.0-beta.17
9
+ - @mastra/schema-compat@1.0.0-beta.4
10
+
3
11
  ## 1.0.0-beta.8
4
12
 
5
13
  ### Patch Changes
@@ -490,13 +498,5 @@
490
498
 
491
499
  - **BREAKING CHANGE**: Memory scope defaults changed from 'thread' to 'resource' ([#8983](https://github.com/mastra-ai/mastra/pull/8983))
492
500
 
493
- Both `workingMemory.scope` and `semanticRecall.scope` now default to `'resource'` instead of `'thread'`. This means:
494
- - Working memory persists across all conversations for the same user/resource
495
- - Semantic recall searches across all threads for the same user/resource
496
-
497
- **Migration**: To maintain the previous thread-scoped behavior, explicitly set `scope: 'thread'`:
498
-
499
- ```typescript
500
- memory: new Memory({
501
501
 
502
- ... 3596 more lines hidden. See full changelog in package directory.
502
+ ... 3604 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,24 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+ - @mastra/client-js@1.0.0-beta.18
10
+ - @mastra/react@0.1.0-beta.18
11
+
12
+ ## 7.0.0-beta.17
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318), [`af56599`](https://github.com/mastra-ai/mastra/commit/af56599d73244ae3bf0d7bcade656410f8ded37b)]:
17
+ - @mastra/core@1.0.0-beta.17
18
+ - @mastra/schema-compat@1.0.0-beta.4
19
+ - @mastra/client-js@1.0.0-beta.17
20
+ - @mastra/react@0.1.0-beta.17
21
+
3
22
  ## 7.0.0-beta.16
4
23
 
5
24
  ### Patch Changes
@@ -479,24 +498,5 @@
479
498
  - Updated dependencies [[`910db9e`](https://github.com/mastra-ai/mastra/commit/910db9e0312888495eb5617b567f247d03303814), [`dbd9db0`](https://github.com/mastra-ai/mastra/commit/dbd9db0d5c2797a210b9098e7e3e613718e5442f), [`e7266a2`](https://github.com/mastra-ai/mastra/commit/e7266a278db02035c97a5e9cd9d1669a6b7a535d)]:
480
499
  - @mastra/core@1.0.0-beta.1
481
500
  - @mastra/client-js@1.0.0-beta.1
482
- - @mastra/react@0.1.0-beta.1
483
-
484
- ## 7.0.0-beta.0
485
-
486
- ### Major Changes
487
-
488
- - # Major Changes ([#9695](https://github.com/mastra-ai/mastra/pull/9695))
489
-
490
- ## Storage Layer
491
-
492
- ### BREAKING: Removed `storage.getMessages()`
493
-
494
- The `getMessages()` method has been removed from all storage implementations. Use `listMessages()` instead, which provides pagination support.
495
-
496
- **Migration:**
497
-
498
- ```typescript
499
- // Before
500
- const messages = await storage.getMessages({ threadId: 'thread-1' });
501
501
 
502
- ... 4418 more lines hidden. See full changelog in package directory.
502
+ ... 4437 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,19 @@
1
1
  # @mastra/react-hooks
2
2
 
3
+ ## 0.1.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @mastra/client-js@1.0.0-beta.18
9
+
10
+ ## 0.1.0-beta.17
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies:
15
+ - @mastra/client-js@1.0.0-beta.17
16
+
3
17
  ## 0.1.0-beta.16
4
18
 
5
19
  ### Patch Changes
@@ -484,19 +498,5 @@
484
498
 
485
499
  ### Patch Changes
486
500
 
487
- - Updated dependencies []:
488
- - @mastra/client-js@0.15.1-alpha.2
489
-
490
- ## 0.0.4-alpha.1
491
-
492
- ### Patch Changes
493
-
494
- - Mutable shared workflow run state ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
495
-
496
- - add tripwire reason in playground ([#8568](https://github.com/mastra-ai/mastra/pull/8568))
497
-
498
- - type fixes and missing changeset ([#8545](https://github.com/mastra-ai/mastra/pull/8545))
499
-
500
- - Convert WorkflowWatchResult to WorkflowResult in workflow graph ([#8541](https://github.com/mastra-ai/mastra/pull/8541))
501
501
 
502
- ... 79 more lines hidden. See full changelog in package directory.
502
+ ... 93 more lines hidden. See full changelog in package directory.
@@ -1,5 +1,15 @@
1
1
  # @mastra/schema-compat
2
2
 
3
+ ## 1.0.0-beta.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix OpenAI structured output compatibility for fields with `.default()` values ([#11434](https://github.com/mastra-ai/mastra/pull/11434))
8
+
9
+ When using Zod schemas with `.default()` fields (e.g., `z.number().default(1)`), OpenAI's structured output API was failing with errors like `Missing '<field>' in required`. This happened because `zod-to-json-schema` doesn't include fields with defaults in the `required` array, but OpenAI requires all properties to be required.
10
+
11
+ This fix converts `.default()` fields to `.nullable()` with a transform that returns the default value when `null` is received, ensuring compatibility with OpenAI's strict mode while preserving the original default value semantics.
12
+
3
13
  ## 1.0.0-beta.3
4
14
 
5
15
  ### Patch Changes
@@ -1,5 +1,19 @@
1
1
  # @mastra/server
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+
10
+ ## 1.0.0-beta.17
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
15
+ - @mastra/core@1.0.0-beta.17
16
+
3
17
  ## 1.0.0-beta.16
4
18
 
5
19
  ### Patch Changes
@@ -484,19 +498,5 @@
484
498
  - Renamed `HonoServerAdapter` to `MastraServer` in `@mastra/hono`
485
499
  - Renamed `ExpressServerAdapter` to `MastraServer` in `@mastra/express`
486
500
  - Configuration now passed to constructor instead of separate method calls
487
- - Renamed base class from `ServerAdapter` to `MastraServerBase` in `@mastra/server`
488
-
489
- **New Features:**
490
- - Added MCP transport routes (HTTP and SSE) to server adapters
491
- - MCP endpoints available at `/api/mcp/:serverId/mcp` (HTTP) and `/api/mcp/:serverId/sse` (SSE)
492
- - Added `express.json()` middleware compatibility for MCP routes
493
- - Moved authentication helpers from deployer to `@mastra/server/auth`
494
-
495
- **Testing:**
496
- - Added shared MCP route and transport test suites in `@internal/server-adapter-test-utils`
497
- - Added comprehensive MCP endpoint tests for both Hono and Express adapters
498
- - Added GitHub Actions workflow for server adapter CI testing
499
-
500
- - Allow direct access to server app handle directly from Mastra instance. ([#10598](https://github.com/mastra-ai/mastra/pull/10598))
501
501
 
502
- ... 4589 more lines hidden. See full changelog in package directory.
502
+ ... 4603 more lines hidden. See full changelog in package directory.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @mastra/mcp-docs-server
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`5947fcd`](https://github.com/mastra-ai/mastra/commit/5947fcdd425531f29f9422026d466c2ee3113c93)]:
8
+ - @mastra/core@1.0.0-beta.18
9
+
10
+ ## 1.0.0-beta.17
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
15
+ - @mastra/core@1.0.0-beta.17
16
+
3
17
  ## 1.0.0-beta.16
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/mcp-docs-server",
3
- "version": "1.0.0-beta.16",
3
+ "version": "1.0.0-beta.18",
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
  "@modelcontextprotocol/sdk": "^1.17.5",
29
29
  "jsdom": "^26.1.0",
30
30
  "zod": "^3.25.76",
31
- "@mastra/core": "1.0.0-beta.16",
31
+ "@mastra/core": "1.0.0-beta.18",
32
32
  "@mastra/mcp": "^1.0.0-beta.7"
33
33
  },
34
34
  "devDependencies": {
@@ -45,8 +45,8 @@
45
45
  "tsx": "^4.19.4",
46
46
  "typescript": "^5.8.3",
47
47
  "vitest": "4.0.12",
48
- "@mastra/core": "1.0.0-beta.16",
49
- "@internal/lint": "0.0.53"
48
+ "@internal/lint": "0.0.53",
49
+ "@mastra/core": "1.0.0-beta.18"
50
50
  },
51
51
  "homepage": "https://mastra.ai",
52
52
  "repository": {