@mastra/client-js 0.0.0-commonjs-20250227130920 → 0.0.0-configure-project-root-for-private-packages-20250919100548

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.
Files changed (72) hide show
  1. package/CHANGELOG.md +2818 -4
  2. package/LICENSE.md +15 -0
  3. package/README.md +12 -10
  4. package/dist/client.d.ts +273 -0
  5. package/dist/client.d.ts.map +1 -0
  6. package/dist/example.d.ts +2 -0
  7. package/dist/example.d.ts.map +1 -0
  8. package/dist/index.cjs +3059 -84
  9. package/dist/index.cjs.map +1 -0
  10. package/dist/index.d.ts +5 -405
  11. package/dist/index.d.ts.map +1 -0
  12. package/dist/index.js +3055 -86
  13. package/dist/index.js.map +1 -0
  14. package/dist/resources/a2a.d.ts +41 -0
  15. package/dist/resources/a2a.d.ts.map +1 -0
  16. package/dist/resources/agent-builder.d.ts +160 -0
  17. package/dist/resources/agent-builder.d.ts.map +1 -0
  18. package/dist/resources/agent.d.ts +175 -0
  19. package/dist/resources/agent.d.ts.map +1 -0
  20. package/dist/resources/base.d.ts +13 -0
  21. package/dist/resources/base.d.ts.map +1 -0
  22. package/dist/resources/index.d.ts +12 -0
  23. package/dist/resources/index.d.ts.map +1 -0
  24. package/dist/resources/legacy-workflow.d.ts +90 -0
  25. package/dist/resources/legacy-workflow.d.ts.map +1 -0
  26. package/dist/resources/mcp-tool.d.ts +28 -0
  27. package/dist/resources/mcp-tool.d.ts.map +1 -0
  28. package/dist/resources/memory-thread.d.ts +53 -0
  29. package/dist/resources/memory-thread.d.ts.map +1 -0
  30. package/dist/resources/network-memory-thread.d.ts +47 -0
  31. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  32. package/dist/resources/observability.d.ts +19 -0
  33. package/dist/resources/observability.d.ts.map +1 -0
  34. package/dist/resources/tool.d.ts +24 -0
  35. package/dist/resources/tool.d.ts.map +1 -0
  36. package/dist/resources/vNextNetwork.d.ts +43 -0
  37. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  38. package/dist/resources/vector.d.ts +51 -0
  39. package/dist/resources/vector.d.ts.map +1 -0
  40. package/dist/resources/workflow.d.ts +254 -0
  41. package/dist/resources/workflow.d.ts.map +1 -0
  42. package/dist/tools.d.ts +22 -0
  43. package/dist/tools.d.ts.map +1 -0
  44. package/dist/types.d.ts +460 -0
  45. package/dist/types.d.ts.map +1 -0
  46. package/dist/utils/index.d.ts +5 -0
  47. package/dist/utils/index.d.ts.map +1 -0
  48. package/dist/utils/process-client-tools.d.ts +3 -0
  49. package/dist/utils/process-client-tools.d.ts.map +1 -0
  50. package/dist/utils/process-mastra-stream.d.ts +11 -0
  51. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  52. package/dist/utils/zod-to-json-schema.d.ts +3 -0
  53. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  54. package/package.json +40 -17
  55. package/.turbo/turbo-build.log +0 -19
  56. package/LICENSE +0 -44
  57. package/dist/index.d.cts +0 -405
  58. package/eslint.config.js +0 -6
  59. package/src/client.ts +0 -205
  60. package/src/example.ts +0 -43
  61. package/src/index.test.ts +0 -597
  62. package/src/index.ts +0 -2
  63. package/src/resources/agent.ts +0 -116
  64. package/src/resources/base.ts +0 -68
  65. package/src/resources/index.ts +0 -6
  66. package/src/resources/memory-thread.ts +0 -60
  67. package/src/resources/tool.ts +0 -32
  68. package/src/resources/vector.ts +0 -83
  69. package/src/resources/workflow.ts +0 -68
  70. package/src/types.ts +0 -163
  71. package/tsconfig.json +0 -5
  72. package/vitest.config.js +0 -8
package/LICENSE.md ADDED
@@ -0,0 +1,15 @@
1
+ # Apache License 2.0
2
+
3
+ Copyright (c) 2025 Kepler Software, Inc.
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
package/README.md CHANGED
@@ -11,7 +11,7 @@ npm install @mastra/client-js
11
11
  ## Quick Start
12
12
 
13
13
  ```typescript
14
- import { MastraClient } from '@mastra/client';
14
+ import { MastraClient } from '@mastra/client-js';
15
15
 
16
16
  // Initialize the client
17
17
  const client = new MastraClient({
@@ -53,8 +53,10 @@ const client = new MastraClient({
53
53
  - `getAgents()`: Get all available agents
54
54
  - `getAgent(agentId)`: Get a specific agent instance
55
55
  - `agent.details()`: Get agent details
56
- - `agent.generate(params)`: Generate a response
57
- - `agent.stream(params)`: Stream a response
56
+ - `agent.generate(params)`: Generate a response (deprecated)
57
+ - `agent.generateVNext(params)`: Improved API for generating a response
58
+ - `agent.stream(params)`: Stream a response (deprecated)
59
+ - `agent.streamVNext(params)`: Improved API for streaming a response
58
60
  - `agent.getTool(toolId)`: Get agent tool details
59
61
  - `agent.evals()`: Get agent evaluations
60
62
  - `agent.liveEvals()`: Get live evaluations
@@ -79,9 +81,13 @@ const client = new MastraClient({
79
81
  - `getWorkflows()`: Get all workflows
80
82
  - `getWorkflow(workflowId)`: Get a workflow instance
81
83
  - `workflow.details()`: Get workflow details
82
- - `workflow.execute(params)`: Execute the workflow
83
- - `workflow.watch(params)`: Watch the workflow
84
- - `workflow.resume(params)`: Resume the workflow
84
+ - `workflow.createRunAsync()`: Create workflow run
85
+ - `workflow.createRun()`: Deprecated - use createRunAsync() instead
86
+ - `workflow.startAsync(params)`: Execute the workflow and wait for execution results
87
+ - `workflow.resumeAsync(params)`: Resume suspended workflow step async
88
+ - `workflow.watch({runId},(record)=>{})`: Watch the step transitions of the workflow run
89
+ - `workflow.start({runId, triggerData})`: Start a workflow run sync
90
+ - `workflow.resume(params)`: Resume the workflow run sync
85
91
 
86
92
  ### Vectors
87
93
 
@@ -119,7 +125,3 @@ The client uses the native `fetch` API internally for making HTTP requests. All
119
125
  - Retry logic with exponential backoff
120
126
  - Custom header management
121
127
  - Error handling
122
-
123
- ## License
124
-
125
- MIT
@@ -0,0 +1,273 @@
1
+ import type { AITraceRecord, AITracesPaginatedArg, WorkflowInfo } from '@mastra/core';
2
+ import type { ServerDetailInfo } from '@mastra/core/mcp';
3
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
4
+ import { Agent, MemoryThread, Tool, Workflow, Vector, BaseResource, A2A, MCPTool, LegacyWorkflow, AgentBuilder } from './resources/index.js';
5
+ import { NetworkMemoryThread } from './resources/network-memory-thread.js';
6
+ import { VNextNetwork } from './resources/vNextNetwork.js';
7
+ import type { ClientOptions, CreateMemoryThreadParams, CreateMemoryThreadResponse, GetAgentResponse, GetLogParams, GetLogsParams, GetLogsResponse, GetMemoryThreadParams, GetMemoryThreadResponse, GetTelemetryParams, GetTelemetryResponse, GetToolResponse, GetWorkflowResponse, SaveMessageToMemoryParams, SaveMessageToMemoryResponse, McpServerListResponse, McpServerToolListResponse, GetLegacyWorkflowResponse, GetVNextNetworkResponse, GetNetworkMemoryThreadParams, CreateNetworkMemoryThreadParams, SaveNetworkMessageToMemoryParams, GetScorerResponse, GetScoresByScorerIdParams, GetScoresResponse, GetScoresByRunIdParams, GetScoresByEntityIdParams, SaveScoreParams, SaveScoreResponse, GetAITracesResponse } from './types.js';
8
+ export declare class MastraClient extends BaseResource {
9
+ private observability;
10
+ constructor(options: ClientOptions);
11
+ /**
12
+ * Retrieves all available agents
13
+ * @param runtimeContext - Optional runtime context to pass as query parameter
14
+ * @returns Promise containing map of agent IDs to agent details
15
+ */
16
+ getAgents(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetAgentResponse>>;
17
+ /**
18
+ * Gets an agent instance by ID
19
+ * @param agentId - ID of the agent to retrieve
20
+ * @returns Agent instance
21
+ */
22
+ getAgent(agentId: string): Agent;
23
+ /**
24
+ * Retrieves memory threads for a resource
25
+ * @param params - Parameters containing the resource ID
26
+ * @returns Promise containing array of memory threads
27
+ */
28
+ getMemoryThreads(params: GetMemoryThreadParams): Promise<GetMemoryThreadResponse>;
29
+ /**
30
+ * Creates a new memory thread
31
+ * @param params - Parameters for creating the memory thread
32
+ * @returns Promise containing the created memory thread
33
+ */
34
+ createMemoryThread(params: CreateMemoryThreadParams): Promise<CreateMemoryThreadResponse>;
35
+ /**
36
+ * Gets a memory thread instance by ID
37
+ * @param threadId - ID of the memory thread to retrieve
38
+ * @returns MemoryThread instance
39
+ */
40
+ getMemoryThread(threadId: string, agentId: string): MemoryThread;
41
+ /**
42
+ * Saves messages to memory
43
+ * @param params - Parameters containing messages to save
44
+ * @returns Promise containing the saved messages
45
+ */
46
+ saveMessageToMemory(params: SaveMessageToMemoryParams): Promise<SaveMessageToMemoryResponse>;
47
+ /**
48
+ * Gets the status of the memory system
49
+ * @returns Promise containing memory system status
50
+ */
51
+ getMemoryStatus(agentId: string): Promise<{
52
+ result: boolean;
53
+ }>;
54
+ /**
55
+ * Retrieves memory threads for a resource
56
+ * @param params - Parameters containing the resource ID
57
+ * @returns Promise containing array of memory threads
58
+ */
59
+ getNetworkMemoryThreads(params: GetNetworkMemoryThreadParams): Promise<GetMemoryThreadResponse>;
60
+ /**
61
+ * Creates a new memory thread
62
+ * @param params - Parameters for creating the memory thread
63
+ * @returns Promise containing the created memory thread
64
+ */
65
+ createNetworkMemoryThread(params: CreateNetworkMemoryThreadParams): Promise<CreateMemoryThreadResponse>;
66
+ /**
67
+ * Gets a memory thread instance by ID
68
+ * @param threadId - ID of the memory thread to retrieve
69
+ * @returns MemoryThread instance
70
+ */
71
+ getNetworkMemoryThread(threadId: string, networkId: string): NetworkMemoryThread;
72
+ /**
73
+ * Saves messages to memory
74
+ * @param params - Parameters containing messages to save
75
+ * @returns Promise containing the saved messages
76
+ */
77
+ saveNetworkMessageToMemory(params: SaveNetworkMessageToMemoryParams): Promise<SaveMessageToMemoryResponse>;
78
+ /**
79
+ * Gets the status of the memory system
80
+ * @returns Promise containing memory system status
81
+ */
82
+ getNetworkMemoryStatus(networkId: string): Promise<{
83
+ result: boolean;
84
+ }>;
85
+ /**
86
+ * Retrieves all available tools
87
+ * @param runtimeContext - Optional runtime context to pass as query parameter
88
+ * @returns Promise containing map of tool IDs to tool details
89
+ */
90
+ getTools(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetToolResponse>>;
91
+ /**
92
+ * Gets a tool instance by ID
93
+ * @param toolId - ID of the tool to retrieve
94
+ * @returns Tool instance
95
+ */
96
+ getTool(toolId: string): Tool;
97
+ /**
98
+ * Retrieves all available legacy workflows
99
+ * @returns Promise containing map of legacy workflow IDs to legacy workflow details
100
+ */
101
+ getLegacyWorkflows(): Promise<Record<string, GetLegacyWorkflowResponse>>;
102
+ /**
103
+ * Gets a legacy workflow instance by ID
104
+ * @param workflowId - ID of the legacy workflow to retrieve
105
+ * @returns Legacy Workflow instance
106
+ */
107
+ getLegacyWorkflow(workflowId: string): LegacyWorkflow;
108
+ /**
109
+ * Retrieves all available workflows
110
+ * @param runtimeContext - Optional runtime context to pass as query parameter
111
+ * @returns Promise containing map of workflow IDs to workflow details
112
+ */
113
+ getWorkflows(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetWorkflowResponse>>;
114
+ /**
115
+ * Gets a workflow instance by ID
116
+ * @param workflowId - ID of the workflow to retrieve
117
+ * @returns Workflow instance
118
+ */
119
+ getWorkflow(workflowId: string): Workflow;
120
+ /**
121
+ * Gets all available agent builder actions
122
+ * @returns Promise containing map of action IDs to action details
123
+ */
124
+ getAgentBuilderActions(): Promise<Record<string, WorkflowInfo>>;
125
+ /**
126
+ * Gets an agent builder instance for executing agent-builder workflows
127
+ * @returns AgentBuilder instance
128
+ */
129
+ getAgentBuilderAction(actionId: string): AgentBuilder;
130
+ /**
131
+ * Gets a vector instance by name
132
+ * @param vectorName - Name of the vector to retrieve
133
+ * @returns Vector instance
134
+ */
135
+ getVector(vectorName: string): Vector;
136
+ /**
137
+ * Retrieves logs
138
+ * @param params - Parameters for filtering logs
139
+ * @returns Promise containing array of log messages
140
+ */
141
+ getLogs(params: GetLogsParams): Promise<GetLogsResponse>;
142
+ /**
143
+ * Gets logs for a specific run
144
+ * @param params - Parameters containing run ID to retrieve
145
+ * @returns Promise containing array of log messages
146
+ */
147
+ getLogForRun(params: GetLogParams): Promise<GetLogsResponse>;
148
+ /**
149
+ * List of all log transports
150
+ * @returns Promise containing list of log transports
151
+ */
152
+ getLogTransports(): Promise<{
153
+ transports: string[];
154
+ }>;
155
+ /**
156
+ * List of all traces (paged)
157
+ * @param params - Parameters for filtering traces
158
+ * @returns Promise containing telemetry data
159
+ */
160
+ getTelemetry(params?: GetTelemetryParams): Promise<GetTelemetryResponse>;
161
+ /**
162
+ * Retrieves all available vNext networks
163
+ * @returns Promise containing map of vNext network IDs to vNext network details
164
+ */
165
+ getVNextNetworks(): Promise<Array<GetVNextNetworkResponse>>;
166
+ /**
167
+ * Gets a vNext network instance by ID
168
+ * @param networkId - ID of the vNext network to retrieve
169
+ * @returns vNext Network instance
170
+ */
171
+ getVNextNetwork(networkId: string): VNextNetwork;
172
+ /**
173
+ * Retrieves a list of available MCP servers.
174
+ * @param params - Optional parameters for pagination (limit, offset).
175
+ * @returns Promise containing the list of MCP servers and pagination info.
176
+ */
177
+ getMcpServers(params?: {
178
+ limit?: number;
179
+ offset?: number;
180
+ }): Promise<McpServerListResponse>;
181
+ /**
182
+ * Retrieves detailed information for a specific MCP server.
183
+ * @param serverId - The ID of the MCP server to retrieve.
184
+ * @param params - Optional parameters, e.g., specific version.
185
+ * @returns Promise containing the detailed MCP server information.
186
+ */
187
+ getMcpServerDetails(serverId: string, params?: {
188
+ version?: string;
189
+ }): Promise<ServerDetailInfo>;
190
+ /**
191
+ * Retrieves a list of tools for a specific MCP server.
192
+ * @param serverId - The ID of the MCP server.
193
+ * @returns Promise containing the list of tools.
194
+ */
195
+ getMcpServerTools(serverId: string): Promise<McpServerToolListResponse>;
196
+ /**
197
+ * Gets an MCPTool resource instance for a specific tool on an MCP server.
198
+ * This instance can then be used to fetch details or execute the tool.
199
+ * @param serverId - The ID of the MCP server.
200
+ * @param toolId - The ID of the tool.
201
+ * @returns MCPTool instance.
202
+ */
203
+ getMcpServerTool(serverId: string, toolId: string): MCPTool;
204
+ /**
205
+ * Gets an A2A client for interacting with an agent via the A2A protocol
206
+ * @param agentId - ID of the agent to interact with
207
+ * @returns A2A client instance
208
+ */
209
+ getA2A(agentId: string): A2A;
210
+ /**
211
+ * Retrieves the working memory for a specific thread (optionally resource-scoped).
212
+ * @param agentId - ID of the agent.
213
+ * @param threadId - ID of the thread.
214
+ * @param resourceId - Optional ID of the resource.
215
+ * @returns Working memory for the specified thread or resource.
216
+ */
217
+ getWorkingMemory({ agentId, threadId, resourceId, }: {
218
+ agentId: string;
219
+ threadId: string;
220
+ resourceId?: string;
221
+ }): Promise<unknown>;
222
+ /**
223
+ * Updates the working memory for a specific thread (optionally resource-scoped).
224
+ * @param agentId - ID of the agent.
225
+ * @param threadId - ID of the thread.
226
+ * @param workingMemory - The new working memory content.
227
+ * @param resourceId - Optional ID of the resource.
228
+ */
229
+ updateWorkingMemory({ agentId, threadId, workingMemory, resourceId, }: {
230
+ agentId: string;
231
+ threadId: string;
232
+ workingMemory: string;
233
+ resourceId?: string;
234
+ }): Promise<unknown>;
235
+ /**
236
+ * Retrieves all available scorers
237
+ * @returns Promise containing list of available scorers
238
+ */
239
+ getScorers(): Promise<Record<string, GetScorerResponse>>;
240
+ /**
241
+ * Retrieves a scorer by ID
242
+ * @param scorerId - ID of the scorer to retrieve
243
+ * @returns Promise containing the scorer
244
+ */
245
+ getScorer(scorerId: string): Promise<GetScorerResponse>;
246
+ getScoresByScorerId(params: GetScoresByScorerIdParams): Promise<GetScoresResponse>;
247
+ /**
248
+ * Retrieves scores by run ID
249
+ * @param params - Parameters containing run ID and pagination options
250
+ * @returns Promise containing scores and pagination info
251
+ */
252
+ getScoresByRunId(params: GetScoresByRunIdParams): Promise<GetScoresResponse>;
253
+ /**
254
+ * Retrieves scores by entity ID and type
255
+ * @param params - Parameters containing entity ID, type, and pagination options
256
+ * @returns Promise containing scores and pagination info
257
+ */
258
+ getScoresByEntityId(params: GetScoresByEntityIdParams): Promise<GetScoresResponse>;
259
+ /**
260
+ * Saves a score
261
+ * @param params - Parameters containing the score data to save
262
+ * @returns Promise containing the saved score
263
+ */
264
+ saveScore(params: SaveScoreParams): Promise<SaveScoreResponse>;
265
+ /**
266
+ * Retrieves model providers with available keys
267
+ * @returns Promise containing model providers with available keys
268
+ */
269
+ getModelProviders(): Promise<string[]>;
270
+ getAITrace(traceId: string): Promise<AITraceRecord>;
271
+ getAITraces(params: AITracesPaginatedArg): Promise<GetAITracesResponse>;
272
+ }
273
+ //# sourceMappingURL=client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=example.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../src/example.ts"],"names":[],"mappings":""}