@letta-ai/letta-client 1.0.0-alpha.10 → 1.0.0-alpha.12
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/CHANGELOG.md +28 -0
- package/client.d.mts +7 -1
- package/client.d.mts.map +1 -1
- package/client.d.ts +7 -1
- package/client.d.ts.map +1 -1
- package/client.js +9 -1
- package/client.js.map +1 -1
- package/client.mjs +9 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agents/agents.d.mts +59 -69
- package/resources/agents/agents.d.mts.map +1 -1
- package/resources/agents/agents.d.ts +59 -69
- package/resources/agents/agents.d.ts.map +1 -1
- package/resources/agents/agents.js +2 -10
- package/resources/agents/agents.js.map +1 -1
- package/resources/agents/agents.mjs +2 -10
- package/resources/agents/agents.mjs.map +1 -1
- package/resources/groups/groups.d.mts +7 -33
- package/resources/groups/groups.d.mts.map +1 -1
- package/resources/groups/groups.d.ts +7 -33
- package/resources/groups/groups.d.ts.map +1 -1
- package/resources/groups/groups.js +4 -21
- package/resources/groups/groups.js.map +1 -1
- package/resources/groups/groups.mjs +4 -21
- package/resources/groups/groups.mjs.map +1 -1
- package/resources/identities/identities.d.mts +16 -24
- package/resources/identities/identities.d.mts.map +1 -1
- package/resources/identities/identities.d.ts +16 -24
- package/resources/identities/identities.d.ts.map +1 -1
- package/resources/identities/identities.js +4 -21
- package/resources/identities/identities.js.map +1 -1
- package/resources/identities/identities.mjs +4 -21
- package/resources/identities/identities.mjs.map +1 -1
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/mcp-servers/index.d.mts +4 -0
- package/resources/mcp-servers/index.d.mts.map +1 -0
- package/resources/mcp-servers/index.d.ts +4 -0
- package/resources/mcp-servers/index.d.ts.map +1 -0
- package/resources/mcp-servers/index.js +11 -0
- package/resources/mcp-servers/index.js.map +1 -0
- package/resources/mcp-servers/index.mjs +5 -0
- package/resources/mcp-servers/index.mjs.map +1 -0
- package/resources/mcp-servers/mcp-servers.d.mts +603 -0
- package/resources/mcp-servers/mcp-servers.d.mts.map +1 -0
- package/resources/mcp-servers/mcp-servers.d.ts +603 -0
- package/resources/mcp-servers/mcp-servers.d.ts.map +1 -0
- package/resources/mcp-servers/mcp-servers.js +63 -0
- package/resources/mcp-servers/mcp-servers.js.map +1 -0
- package/resources/mcp-servers/mcp-servers.mjs +58 -0
- package/resources/mcp-servers/mcp-servers.mjs.map +1 -0
- package/resources/mcp-servers/refresh.d.mts +24 -0
- package/resources/mcp-servers/refresh.d.mts.map +1 -0
- package/resources/mcp-servers/refresh.d.ts +24 -0
- package/resources/mcp-servers/refresh.d.ts.map +1 -0
- package/resources/mcp-servers/refresh.js +27 -0
- package/resources/mcp-servers/refresh.js.map +1 -0
- package/resources/mcp-servers/refresh.mjs +23 -0
- package/resources/mcp-servers/refresh.mjs.map +1 -0
- package/resources/mcp-servers/tools.d.mts +80 -0
- package/resources/mcp-servers/tools.d.mts.map +1 -0
- package/resources/mcp-servers/tools.d.ts +80 -0
- package/resources/mcp-servers/tools.d.ts.map +1 -0
- package/resources/mcp-servers/tools.js +36 -0
- package/resources/mcp-servers/tools.js.map +1 -0
- package/resources/mcp-servers/tools.mjs +32 -0
- package/resources/mcp-servers/tools.mjs.map +1 -0
- package/resources/mcp-servers.d.mts +2 -0
- package/resources/mcp-servers.d.mts.map +1 -0
- package/resources/mcp-servers.d.ts +2 -0
- package/resources/mcp-servers.d.ts.map +1 -0
- package/resources/mcp-servers.js +6 -0
- package/resources/mcp-servers.js.map +1 -0
- package/resources/mcp-servers.mjs +3 -0
- package/resources/mcp-servers.mjs.map +1 -0
- package/resources/steps/steps.d.mts +10 -17
- package/resources/steps/steps.d.mts.map +1 -1
- package/resources/steps/steps.d.ts +10 -17
- package/resources/steps/steps.d.ts.map +1 -1
- package/resources/steps/steps.js +2 -11
- package/resources/steps/steps.js.map +1 -1
- package/resources/steps/steps.mjs +2 -11
- package/resources/steps/steps.mjs.map +1 -1
- package/src/client.ts +34 -0
- package/src/resources/agents/agents.ts +60 -79
- package/src/resources/groups/groups.ts +9 -54
- package/src/resources/identities/identities.ts +18 -45
- package/src/resources/index.ts +11 -0
- package/src/resources/mcp-servers/index.ts +21 -0
- package/src/resources/mcp-servers/mcp-servers.ts +762 -0
- package/src/resources/mcp-servers/refresh.ts +43 -0
- package/src/resources/mcp-servers/tools.ts +110 -0
- package/src/resources/mcp-servers.ts +3 -0
- package/src/resources/steps/steps.ts +11 -28
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -0,0 +1,603 @@
|
|
|
1
|
+
import { APIResource } from "../../core/resource.mjs";
|
|
2
|
+
import * as RefreshAPI from "./refresh.mjs";
|
|
3
|
+
import { Refresh, RefreshTriggerParams, RefreshTriggerResponse } from "./refresh.mjs";
|
|
4
|
+
import * as ToolsAPI from "./tools.mjs";
|
|
5
|
+
import { ToolListResponse, ToolRetrieveParams, ToolRunParams, ToolRunResponse, Tools } from "./tools.mjs";
|
|
6
|
+
import { APIPromise } from "../../core/api-promise.mjs";
|
|
7
|
+
import { RequestOptions } from "../../internal/request-options.mjs";
|
|
8
|
+
export declare class McpServers extends APIResource {
|
|
9
|
+
tools: ToolsAPI.Tools;
|
|
10
|
+
refresh: RefreshAPI.Refresh;
|
|
11
|
+
/**
|
|
12
|
+
* Add a new MCP server to the Letta MCP server config
|
|
13
|
+
*/
|
|
14
|
+
create(body: McpServerCreateParams, options?: RequestOptions): APIPromise<McpServerCreateResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Get a specific MCP server
|
|
17
|
+
*/
|
|
18
|
+
retrieve(mcpServerID: string, options?: RequestOptions): APIPromise<McpServerRetrieveResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Get a list of all configured MCP servers
|
|
21
|
+
*/
|
|
22
|
+
list(options?: RequestOptions): APIPromise<McpServerListResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* Delete an MCP server by its ID
|
|
25
|
+
*/
|
|
26
|
+
delete(mcpServerID: string, options?: RequestOptions): APIPromise<void>;
|
|
27
|
+
/**
|
|
28
|
+
* Connect to an MCP server with support for OAuth via SSE. Returns a stream of
|
|
29
|
+
* events handling authorization state and exchange if OAuth is required.
|
|
30
|
+
*/
|
|
31
|
+
connect(mcpServerID: string, options?: RequestOptions): APIPromise<unknown>;
|
|
32
|
+
/**
|
|
33
|
+
* Update an existing MCP server configuration
|
|
34
|
+
*/
|
|
35
|
+
modify(mcpServerID: string, body: McpServerModifyParams, options?: RequestOptions): APIPromise<McpServerModifyResponse>;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* MCP server schema for agent files with remapped ID.
|
|
39
|
+
*/
|
|
40
|
+
export interface McpServerSchema {
|
|
41
|
+
/**
|
|
42
|
+
* Human-readable MCP server ID
|
|
43
|
+
*/
|
|
44
|
+
id: string;
|
|
45
|
+
server_name: string;
|
|
46
|
+
server_type: string;
|
|
47
|
+
metadata_?: {
|
|
48
|
+
[key: string]: unknown;
|
|
49
|
+
} | null;
|
|
50
|
+
server_url?: string | null;
|
|
51
|
+
stdio_config?: {
|
|
52
|
+
[key: string]: unknown;
|
|
53
|
+
} | null;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* A Stdio MCP server
|
|
57
|
+
*/
|
|
58
|
+
export type McpServerCreateResponse = McpServerCreateResponse.StdioMcpServer | McpServerCreateResponse.SsemcpServer | McpServerCreateResponse.StreamableHttpmcpServer;
|
|
59
|
+
export declare namespace McpServerCreateResponse {
|
|
60
|
+
/**
|
|
61
|
+
* A Stdio MCP server
|
|
62
|
+
*/
|
|
63
|
+
interface StdioMcpServer {
|
|
64
|
+
/**
|
|
65
|
+
* The arguments to pass to the command
|
|
66
|
+
*/
|
|
67
|
+
args: Array<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The command to run (MCP 'local' client will run this command)
|
|
70
|
+
*/
|
|
71
|
+
command: string;
|
|
72
|
+
/**
|
|
73
|
+
* The name of the server
|
|
74
|
+
*/
|
|
75
|
+
server_name: string;
|
|
76
|
+
/**
|
|
77
|
+
* The human-friendly ID of the Mcp_server
|
|
78
|
+
*/
|
|
79
|
+
id?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Environment variables to set
|
|
82
|
+
*/
|
|
83
|
+
env?: {
|
|
84
|
+
[key: string]: string;
|
|
85
|
+
} | null;
|
|
86
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* An SSE MCP server
|
|
90
|
+
*/
|
|
91
|
+
interface SsemcpServer {
|
|
92
|
+
/**
|
|
93
|
+
* The name of the server
|
|
94
|
+
*/
|
|
95
|
+
server_name: string;
|
|
96
|
+
/**
|
|
97
|
+
* The URL of the server
|
|
98
|
+
*/
|
|
99
|
+
server_url: string;
|
|
100
|
+
/**
|
|
101
|
+
* The human-friendly ID of the Mcp_server
|
|
102
|
+
*/
|
|
103
|
+
id?: string;
|
|
104
|
+
/**
|
|
105
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
106
|
+
*/
|
|
107
|
+
auth_header?: string | null;
|
|
108
|
+
/**
|
|
109
|
+
* The authentication token or API key value
|
|
110
|
+
*/
|
|
111
|
+
auth_token?: string | null;
|
|
112
|
+
/**
|
|
113
|
+
* Custom HTTP headers to include with requests
|
|
114
|
+
*/
|
|
115
|
+
custom_headers?: {
|
|
116
|
+
[key: string]: string;
|
|
117
|
+
} | null;
|
|
118
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* A Streamable HTTP MCP server
|
|
122
|
+
*/
|
|
123
|
+
interface StreamableHttpmcpServer {
|
|
124
|
+
/**
|
|
125
|
+
* The name of the server
|
|
126
|
+
*/
|
|
127
|
+
server_name: string;
|
|
128
|
+
/**
|
|
129
|
+
* The URL of the server
|
|
130
|
+
*/
|
|
131
|
+
server_url: string;
|
|
132
|
+
/**
|
|
133
|
+
* The human-friendly ID of the Mcp_server
|
|
134
|
+
*/
|
|
135
|
+
id?: string;
|
|
136
|
+
/**
|
|
137
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
138
|
+
*/
|
|
139
|
+
auth_header?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
* The authentication token or API key value
|
|
142
|
+
*/
|
|
143
|
+
auth_token?: string | null;
|
|
144
|
+
/**
|
|
145
|
+
* Custom HTTP headers to include with requests
|
|
146
|
+
*/
|
|
147
|
+
custom_headers?: {
|
|
148
|
+
[key: string]: string;
|
|
149
|
+
} | null;
|
|
150
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* A Stdio MCP server
|
|
155
|
+
*/
|
|
156
|
+
export type McpServerRetrieveResponse = McpServerRetrieveResponse.StdioMcpServer | McpServerRetrieveResponse.SsemcpServer | McpServerRetrieveResponse.StreamableHttpmcpServer;
|
|
157
|
+
export declare namespace McpServerRetrieveResponse {
|
|
158
|
+
/**
|
|
159
|
+
* A Stdio MCP server
|
|
160
|
+
*/
|
|
161
|
+
interface StdioMcpServer {
|
|
162
|
+
/**
|
|
163
|
+
* The arguments to pass to the command
|
|
164
|
+
*/
|
|
165
|
+
args: Array<string>;
|
|
166
|
+
/**
|
|
167
|
+
* The command to run (MCP 'local' client will run this command)
|
|
168
|
+
*/
|
|
169
|
+
command: string;
|
|
170
|
+
/**
|
|
171
|
+
* The name of the server
|
|
172
|
+
*/
|
|
173
|
+
server_name: string;
|
|
174
|
+
/**
|
|
175
|
+
* The human-friendly ID of the Mcp_server
|
|
176
|
+
*/
|
|
177
|
+
id?: string;
|
|
178
|
+
/**
|
|
179
|
+
* Environment variables to set
|
|
180
|
+
*/
|
|
181
|
+
env?: {
|
|
182
|
+
[key: string]: string;
|
|
183
|
+
} | null;
|
|
184
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* An SSE MCP server
|
|
188
|
+
*/
|
|
189
|
+
interface SsemcpServer {
|
|
190
|
+
/**
|
|
191
|
+
* The name of the server
|
|
192
|
+
*/
|
|
193
|
+
server_name: string;
|
|
194
|
+
/**
|
|
195
|
+
* The URL of the server
|
|
196
|
+
*/
|
|
197
|
+
server_url: string;
|
|
198
|
+
/**
|
|
199
|
+
* The human-friendly ID of the Mcp_server
|
|
200
|
+
*/
|
|
201
|
+
id?: string;
|
|
202
|
+
/**
|
|
203
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
204
|
+
*/
|
|
205
|
+
auth_header?: string | null;
|
|
206
|
+
/**
|
|
207
|
+
* The authentication token or API key value
|
|
208
|
+
*/
|
|
209
|
+
auth_token?: string | null;
|
|
210
|
+
/**
|
|
211
|
+
* Custom HTTP headers to include with requests
|
|
212
|
+
*/
|
|
213
|
+
custom_headers?: {
|
|
214
|
+
[key: string]: string;
|
|
215
|
+
} | null;
|
|
216
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* A Streamable HTTP MCP server
|
|
220
|
+
*/
|
|
221
|
+
interface StreamableHttpmcpServer {
|
|
222
|
+
/**
|
|
223
|
+
* The name of the server
|
|
224
|
+
*/
|
|
225
|
+
server_name: string;
|
|
226
|
+
/**
|
|
227
|
+
* The URL of the server
|
|
228
|
+
*/
|
|
229
|
+
server_url: string;
|
|
230
|
+
/**
|
|
231
|
+
* The human-friendly ID of the Mcp_server
|
|
232
|
+
*/
|
|
233
|
+
id?: string;
|
|
234
|
+
/**
|
|
235
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
236
|
+
*/
|
|
237
|
+
auth_header?: string | null;
|
|
238
|
+
/**
|
|
239
|
+
* The authentication token or API key value
|
|
240
|
+
*/
|
|
241
|
+
auth_token?: string | null;
|
|
242
|
+
/**
|
|
243
|
+
* Custom HTTP headers to include with requests
|
|
244
|
+
*/
|
|
245
|
+
custom_headers?: {
|
|
246
|
+
[key: string]: string;
|
|
247
|
+
} | null;
|
|
248
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
export type McpServerListResponse = Array<McpServerListResponse.StdioMcpServer | McpServerListResponse.SsemcpServer | McpServerListResponse.StreamableHttpmcpServer>;
|
|
252
|
+
export declare namespace McpServerListResponse {
|
|
253
|
+
/**
|
|
254
|
+
* A Stdio MCP server
|
|
255
|
+
*/
|
|
256
|
+
interface StdioMcpServer {
|
|
257
|
+
/**
|
|
258
|
+
* The arguments to pass to the command
|
|
259
|
+
*/
|
|
260
|
+
args: Array<string>;
|
|
261
|
+
/**
|
|
262
|
+
* The command to run (MCP 'local' client will run this command)
|
|
263
|
+
*/
|
|
264
|
+
command: string;
|
|
265
|
+
/**
|
|
266
|
+
* The name of the server
|
|
267
|
+
*/
|
|
268
|
+
server_name: string;
|
|
269
|
+
/**
|
|
270
|
+
* The human-friendly ID of the Mcp_server
|
|
271
|
+
*/
|
|
272
|
+
id?: string;
|
|
273
|
+
/**
|
|
274
|
+
* Environment variables to set
|
|
275
|
+
*/
|
|
276
|
+
env?: {
|
|
277
|
+
[key: string]: string;
|
|
278
|
+
} | null;
|
|
279
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* An SSE MCP server
|
|
283
|
+
*/
|
|
284
|
+
interface SsemcpServer {
|
|
285
|
+
/**
|
|
286
|
+
* The name of the server
|
|
287
|
+
*/
|
|
288
|
+
server_name: string;
|
|
289
|
+
/**
|
|
290
|
+
* The URL of the server
|
|
291
|
+
*/
|
|
292
|
+
server_url: string;
|
|
293
|
+
/**
|
|
294
|
+
* The human-friendly ID of the Mcp_server
|
|
295
|
+
*/
|
|
296
|
+
id?: string;
|
|
297
|
+
/**
|
|
298
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
299
|
+
*/
|
|
300
|
+
auth_header?: string | null;
|
|
301
|
+
/**
|
|
302
|
+
* The authentication token or API key value
|
|
303
|
+
*/
|
|
304
|
+
auth_token?: string | null;
|
|
305
|
+
/**
|
|
306
|
+
* Custom HTTP headers to include with requests
|
|
307
|
+
*/
|
|
308
|
+
custom_headers?: {
|
|
309
|
+
[key: string]: string;
|
|
310
|
+
} | null;
|
|
311
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* A Streamable HTTP MCP server
|
|
315
|
+
*/
|
|
316
|
+
interface StreamableHttpmcpServer {
|
|
317
|
+
/**
|
|
318
|
+
* The name of the server
|
|
319
|
+
*/
|
|
320
|
+
server_name: string;
|
|
321
|
+
/**
|
|
322
|
+
* The URL of the server
|
|
323
|
+
*/
|
|
324
|
+
server_url: string;
|
|
325
|
+
/**
|
|
326
|
+
* The human-friendly ID of the Mcp_server
|
|
327
|
+
*/
|
|
328
|
+
id?: string;
|
|
329
|
+
/**
|
|
330
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
331
|
+
*/
|
|
332
|
+
auth_header?: string | null;
|
|
333
|
+
/**
|
|
334
|
+
* The authentication token or API key value
|
|
335
|
+
*/
|
|
336
|
+
auth_token?: string | null;
|
|
337
|
+
/**
|
|
338
|
+
* Custom HTTP headers to include with requests
|
|
339
|
+
*/
|
|
340
|
+
custom_headers?: {
|
|
341
|
+
[key: string]: string;
|
|
342
|
+
} | null;
|
|
343
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
export type McpServerConnectResponse = unknown;
|
|
347
|
+
/**
|
|
348
|
+
* A Stdio MCP server
|
|
349
|
+
*/
|
|
350
|
+
export type McpServerModifyResponse = McpServerModifyResponse.StdioMcpServer | McpServerModifyResponse.SsemcpServer | McpServerModifyResponse.StreamableHttpmcpServer;
|
|
351
|
+
export declare namespace McpServerModifyResponse {
|
|
352
|
+
/**
|
|
353
|
+
* A Stdio MCP server
|
|
354
|
+
*/
|
|
355
|
+
interface StdioMcpServer {
|
|
356
|
+
/**
|
|
357
|
+
* The arguments to pass to the command
|
|
358
|
+
*/
|
|
359
|
+
args: Array<string>;
|
|
360
|
+
/**
|
|
361
|
+
* The command to run (MCP 'local' client will run this command)
|
|
362
|
+
*/
|
|
363
|
+
command: string;
|
|
364
|
+
/**
|
|
365
|
+
* The name of the server
|
|
366
|
+
*/
|
|
367
|
+
server_name: string;
|
|
368
|
+
/**
|
|
369
|
+
* The human-friendly ID of the Mcp_server
|
|
370
|
+
*/
|
|
371
|
+
id?: string;
|
|
372
|
+
/**
|
|
373
|
+
* Environment variables to set
|
|
374
|
+
*/
|
|
375
|
+
env?: {
|
|
376
|
+
[key: string]: string;
|
|
377
|
+
} | null;
|
|
378
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
379
|
+
}
|
|
380
|
+
/**
|
|
381
|
+
* An SSE MCP server
|
|
382
|
+
*/
|
|
383
|
+
interface SsemcpServer {
|
|
384
|
+
/**
|
|
385
|
+
* The name of the server
|
|
386
|
+
*/
|
|
387
|
+
server_name: string;
|
|
388
|
+
/**
|
|
389
|
+
* The URL of the server
|
|
390
|
+
*/
|
|
391
|
+
server_url: string;
|
|
392
|
+
/**
|
|
393
|
+
* The human-friendly ID of the Mcp_server
|
|
394
|
+
*/
|
|
395
|
+
id?: string;
|
|
396
|
+
/**
|
|
397
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
398
|
+
*/
|
|
399
|
+
auth_header?: string | null;
|
|
400
|
+
/**
|
|
401
|
+
* The authentication token or API key value
|
|
402
|
+
*/
|
|
403
|
+
auth_token?: string | null;
|
|
404
|
+
/**
|
|
405
|
+
* Custom HTTP headers to include with requests
|
|
406
|
+
*/
|
|
407
|
+
custom_headers?: {
|
|
408
|
+
[key: string]: string;
|
|
409
|
+
} | null;
|
|
410
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* A Streamable HTTP MCP server
|
|
414
|
+
*/
|
|
415
|
+
interface StreamableHttpmcpServer {
|
|
416
|
+
/**
|
|
417
|
+
* The name of the server
|
|
418
|
+
*/
|
|
419
|
+
server_name: string;
|
|
420
|
+
/**
|
|
421
|
+
* The URL of the server
|
|
422
|
+
*/
|
|
423
|
+
server_url: string;
|
|
424
|
+
/**
|
|
425
|
+
* The human-friendly ID of the Mcp_server
|
|
426
|
+
*/
|
|
427
|
+
id?: string;
|
|
428
|
+
/**
|
|
429
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
430
|
+
*/
|
|
431
|
+
auth_header?: string | null;
|
|
432
|
+
/**
|
|
433
|
+
* The authentication token or API key value
|
|
434
|
+
*/
|
|
435
|
+
auth_token?: string | null;
|
|
436
|
+
/**
|
|
437
|
+
* Custom HTTP headers to include with requests
|
|
438
|
+
*/
|
|
439
|
+
custom_headers?: {
|
|
440
|
+
[key: string]: string;
|
|
441
|
+
} | null;
|
|
442
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
export type McpServerCreateParams = McpServerCreateParams.CreateStdioMcpServer | McpServerCreateParams.CreateSsemcpServer | McpServerCreateParams.CreateStreamableHttpmcpServer;
|
|
446
|
+
export declare namespace McpServerCreateParams {
|
|
447
|
+
interface CreateStdioMcpServer {
|
|
448
|
+
/**
|
|
449
|
+
* The arguments to pass to the command
|
|
450
|
+
*/
|
|
451
|
+
args: Array<string>;
|
|
452
|
+
/**
|
|
453
|
+
* The command to run (MCP 'local' client will run this command)
|
|
454
|
+
*/
|
|
455
|
+
command: string;
|
|
456
|
+
/**
|
|
457
|
+
* The name of the server
|
|
458
|
+
*/
|
|
459
|
+
server_name: string;
|
|
460
|
+
/**
|
|
461
|
+
* Environment variables to set
|
|
462
|
+
*/
|
|
463
|
+
env?: {
|
|
464
|
+
[key: string]: string;
|
|
465
|
+
} | null;
|
|
466
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
467
|
+
}
|
|
468
|
+
interface CreateSsemcpServer {
|
|
469
|
+
/**
|
|
470
|
+
* The name of the server
|
|
471
|
+
*/
|
|
472
|
+
server_name: string;
|
|
473
|
+
/**
|
|
474
|
+
* The URL of the server
|
|
475
|
+
*/
|
|
476
|
+
server_url: string;
|
|
477
|
+
/**
|
|
478
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
479
|
+
*/
|
|
480
|
+
auth_header?: string | null;
|
|
481
|
+
/**
|
|
482
|
+
* The authentication token or API key value
|
|
483
|
+
*/
|
|
484
|
+
auth_token?: string | null;
|
|
485
|
+
/**
|
|
486
|
+
* Custom HTTP headers to include with requests
|
|
487
|
+
*/
|
|
488
|
+
custom_headers?: {
|
|
489
|
+
[key: string]: string;
|
|
490
|
+
} | null;
|
|
491
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
492
|
+
}
|
|
493
|
+
interface CreateStreamableHttpmcpServer {
|
|
494
|
+
/**
|
|
495
|
+
* The name of the server
|
|
496
|
+
*/
|
|
497
|
+
server_name: string;
|
|
498
|
+
/**
|
|
499
|
+
* The URL of the server
|
|
500
|
+
*/
|
|
501
|
+
server_url: string;
|
|
502
|
+
/**
|
|
503
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
504
|
+
*/
|
|
505
|
+
auth_header?: string | null;
|
|
506
|
+
/**
|
|
507
|
+
* The authentication token or API key value
|
|
508
|
+
*/
|
|
509
|
+
auth_token?: string | null;
|
|
510
|
+
/**
|
|
511
|
+
* Custom HTTP headers to include with requests
|
|
512
|
+
*/
|
|
513
|
+
custom_headers?: {
|
|
514
|
+
[key: string]: string;
|
|
515
|
+
} | null;
|
|
516
|
+
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
export type McpServerModifyParams = McpServerModifyParams.LettaSchemasMcpServerUpdateStdioMcpServer | McpServerModifyParams.LettaSchemasMcpServerUpdateSsemcpServer | McpServerModifyParams.LettaSchemasMcpServerUpdateStreamableHttpmcpServer;
|
|
520
|
+
export declare namespace McpServerModifyParams {
|
|
521
|
+
interface LettaSchemasMcpServerUpdateStdioMcpServer {
|
|
522
|
+
/**
|
|
523
|
+
* The arguments to pass to the command
|
|
524
|
+
*/
|
|
525
|
+
args?: Array<string> | null;
|
|
526
|
+
/**
|
|
527
|
+
* The command to run the MCP server
|
|
528
|
+
*/
|
|
529
|
+
command?: string | null;
|
|
530
|
+
/**
|
|
531
|
+
* Environment variables to set
|
|
532
|
+
*/
|
|
533
|
+
env?: {
|
|
534
|
+
[key: string]: string;
|
|
535
|
+
} | null;
|
|
536
|
+
/**
|
|
537
|
+
* The name of the MCP server
|
|
538
|
+
*/
|
|
539
|
+
server_name?: string | null;
|
|
540
|
+
}
|
|
541
|
+
interface LettaSchemasMcpServerUpdateSsemcpServer {
|
|
542
|
+
/**
|
|
543
|
+
* The authentication token (internal)
|
|
544
|
+
*/
|
|
545
|
+
token?: string | null;
|
|
546
|
+
/**
|
|
547
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
548
|
+
*/
|
|
549
|
+
auth_header?: string | null;
|
|
550
|
+
/**
|
|
551
|
+
* The authentication token or API key value
|
|
552
|
+
*/
|
|
553
|
+
auth_token?: string | null;
|
|
554
|
+
/**
|
|
555
|
+
* Custom headers to send with requests
|
|
556
|
+
*/
|
|
557
|
+
custom_headers?: {
|
|
558
|
+
[key: string]: string;
|
|
559
|
+
} | null;
|
|
560
|
+
/**
|
|
561
|
+
* The name of the MCP server
|
|
562
|
+
*/
|
|
563
|
+
server_name?: string | null;
|
|
564
|
+
/**
|
|
565
|
+
* The URL of the SSE MCP server
|
|
566
|
+
*/
|
|
567
|
+
server_url?: string | null;
|
|
568
|
+
}
|
|
569
|
+
interface LettaSchemasMcpServerUpdateStreamableHttpmcpServer {
|
|
570
|
+
/**
|
|
571
|
+
* The authentication token (internal)
|
|
572
|
+
*/
|
|
573
|
+
token?: string | null;
|
|
574
|
+
/**
|
|
575
|
+
* The name of the authentication header (e.g., 'Authorization')
|
|
576
|
+
*/
|
|
577
|
+
auth_header?: string | null;
|
|
578
|
+
/**
|
|
579
|
+
* The authentication token or API key value
|
|
580
|
+
*/
|
|
581
|
+
auth_token?: string | null;
|
|
582
|
+
/**
|
|
583
|
+
* Custom headers to send with requests
|
|
584
|
+
*/
|
|
585
|
+
custom_headers?: {
|
|
586
|
+
[key: string]: string;
|
|
587
|
+
} | null;
|
|
588
|
+
/**
|
|
589
|
+
* The name of the MCP server
|
|
590
|
+
*/
|
|
591
|
+
server_name?: string | null;
|
|
592
|
+
/**
|
|
593
|
+
* The URL of the Streamable HTTP MCP server
|
|
594
|
+
*/
|
|
595
|
+
server_url?: string | null;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
export declare namespace McpServers {
|
|
599
|
+
export { type McpServerSchema as McpServerSchema, type McpServerCreateResponse as McpServerCreateResponse, type McpServerRetrieveResponse as McpServerRetrieveResponse, type McpServerListResponse as McpServerListResponse, type McpServerConnectResponse as McpServerConnectResponse, type McpServerModifyResponse as McpServerModifyResponse, type McpServerCreateParams as McpServerCreateParams, type McpServerModifyParams as McpServerModifyParams, };
|
|
600
|
+
export { Tools as Tools, type ToolListResponse as ToolListResponse, type ToolRunResponse as ToolRunResponse, type ToolRetrieveParams as ToolRetrieveParams, type ToolRunParams as ToolRunParams, };
|
|
601
|
+
export { Refresh as Refresh, type RefreshTriggerResponse as RefreshTriggerResponse, type RefreshTriggerParams as RefreshTriggerParams, };
|
|
602
|
+
}
|
|
603
|
+
//# sourceMappingURL=mcp-servers.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mcp-servers.d.mts","sourceRoot":"","sources":["../../src/resources/mcp-servers/mcp-servers.ts"],"names":[],"mappings":"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"}
|