@mastra/mcp 0.4.2-alpha.1 → 0.4.2-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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +25 -0
- package/dist/_tsup-dts-rollup.d.cts +1 -0
- package/dist/_tsup-dts-rollup.d.ts +1 -0
- package/dist/index.cjs +1802 -1800
- package/dist/index.js +1803 -1801
- package/package.json +2 -2
- package/src/client.ts +13 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/mcp@0.4.2-alpha.
|
|
2
|
+
> @mastra/mcp@0.4.2-alpha.4 build /home/runner/work/mastra/mastra/packages/mcp
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.4.0
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 15963ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
13
|
[36mWriting package typings: /home/runner/work/mastra/mastra/packages/mcp/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
14
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
15
|
[36mWriting package typings: /home/runner/work/mastra/mastra/packages/mcp/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 14175ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
[
|
|
23
|
-
[
|
|
20
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m205.28 KB[39m
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 4689ms
|
|
22
|
+
[32mESM[39m [1mdist/index.js [22m[32m204.47 KB[39m
|
|
23
|
+
[32mESM[39m ⚡️ Build success in 4690ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @mastra/mcp
|
|
2
2
|
|
|
3
|
+
## 0.4.2-alpha.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ccef9f9]
|
|
8
|
+
- Updated dependencies [51e6923]
|
|
9
|
+
- @mastra/core@0.9.2-alpha.4
|
|
10
|
+
|
|
11
|
+
## 0.4.2-alpha.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [967b41c]
|
|
16
|
+
- Updated dependencies [4155f47]
|
|
17
|
+
- Updated dependencies [17826a9]
|
|
18
|
+
- @mastra/core@0.9.2-alpha.3
|
|
19
|
+
|
|
20
|
+
## 0.4.2-alpha.2
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 26738f4: Switched from a custom MCP tools schema deserializer to json-schema-to-zod - fixes an issue where MCP tool schemas didn't deserialize properly in Mastra playground. Also added support for testing tools with no input arguments in playground
|
|
25
|
+
- Updated dependencies [26738f4]
|
|
26
|
+
- @mastra/core@0.9.2-alpha.2
|
|
27
|
+
|
|
3
28
|
## 0.4.2-alpha.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -68,6 +68,7 @@ export declare class InternalMastraMCPClient extends MastraBase {
|
|
|
68
68
|
get sessionId(): string | undefined;
|
|
69
69
|
disconnect(): Promise<void>;
|
|
70
70
|
resources(): Promise<ReturnType<Protocol<any, any, any>['request']>>;
|
|
71
|
+
private convertInputSchema;
|
|
71
72
|
tools(): Promise<Record<string, any>>;
|
|
72
73
|
}
|
|
73
74
|
|
|
@@ -68,6 +68,7 @@ export declare class InternalMastraMCPClient extends MastraBase {
|
|
|
68
68
|
get sessionId(): string | undefined;
|
|
69
69
|
disconnect(): Promise<void>;
|
|
70
70
|
resources(): Promise<ReturnType<Protocol<any, any, any>['request']>>;
|
|
71
|
+
private convertInputSchema;
|
|
71
72
|
tools(): Promise<Record<string, any>>;
|
|
72
73
|
}
|
|
73
74
|
|