agents 0.0.0-ca44ae8 → 0.0.0-cac66b8
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/dist/ai-chat-agent.d.ts +27 -1
- package/dist/ai-chat-agent.js +99 -103
- package/dist/ai-chat-agent.js.map +1 -1
- package/dist/ai-react.d.ts +13 -0
- package/dist/ai-react.js +0 -2
- package/dist/ai-react.js.map +1 -1
- package/dist/chunk-BZXOAZUX.js +106 -0
- package/dist/chunk-BZXOAZUX.js.map +1 -0
- package/dist/{chunk-MDL3W36D.js → chunk-DVT5CDUP.js} +260 -98
- package/dist/chunk-DVT5CDUP.js.map +1 -0
- package/dist/{chunk-Q5ZBHY4Z.js → chunk-IFXSRTKF.js} +33 -24
- package/dist/chunk-IFXSRTKF.js.map +1 -0
- package/dist/chunk-VCSB47AK.js +116 -0
- package/dist/chunk-VCSB47AK.js.map +1 -0
- package/dist/client.d.ts +15 -1
- package/dist/client.js +6 -126
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +97 -4
- package/dist/index.js +4 -3
- package/dist/mcp/client.d.ts +21 -15
- package/dist/mcp/client.js +1 -2
- package/dist/mcp/do-oauth-client-provider.d.ts +3 -3
- package/dist/mcp/do-oauth-client-provider.js +3 -103
- package/dist/mcp/do-oauth-client-provider.js.map +1 -1
- package/dist/mcp/index.d.ts +11 -1
- package/dist/mcp/index.js +109 -137
- package/dist/mcp/index.js.map +1 -1
- package/dist/react.d.ts +85 -5
- package/dist/react.js +14 -2
- package/dist/react.js.map +1 -1
- package/dist/schedule.js +0 -2
- package/dist/schedule.js.map +1 -1
- package/dist/serializable.d.ts +32 -0
- package/dist/serializable.js +1 -0
- package/package.json +9 -7
- package/src/index.ts +336 -42
- package/dist/chunk-HMLY7DHA.js +0 -16
- package/dist/chunk-MDL3W36D.js.map +0 -1
- package/dist/chunk-Q5ZBHY4Z.js.map +0 -1
- /package/dist/{chunk-HMLY7DHA.js.map → serializable.js.map} +0 -0
package/src/index.ts
CHANGED
|
@@ -13,6 +13,21 @@ import { nanoid } from "nanoid";
|
|
|
13
13
|
|
|
14
14
|
import { AsyncLocalStorage } from "node:async_hooks";
|
|
15
15
|
import { MCPClientManager } from "./mcp/client";
|
|
16
|
+
import {
|
|
17
|
+
DurableObjectOAuthClientProvider,
|
|
18
|
+
type AgentsOAuthProvider,
|
|
19
|
+
} from "./mcp/do-oauth-client-provider";
|
|
20
|
+
import type {
|
|
21
|
+
Tool,
|
|
22
|
+
Resource,
|
|
23
|
+
Prompt,
|
|
24
|
+
ServerCapabilities,
|
|
25
|
+
} from "@modelcontextprotocol/sdk/types.js";
|
|
26
|
+
|
|
27
|
+
import type { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
28
|
+
import type { SSEClientTransportOptions } from "@modelcontextprotocol/sdk/client/sse.js";
|
|
29
|
+
|
|
30
|
+
import { camelCaseToKebabCase } from "./client";
|
|
16
31
|
|
|
17
32
|
export type { Connection, WSMessage, ConnectionContext } from "partyserver";
|
|
18
33
|
|
|
@@ -98,7 +113,6 @@ export type CallableMetadata = {
|
|
|
98
113
|
streaming?: boolean;
|
|
99
114
|
};
|
|
100
115
|
|
|
101
|
-
// biome-ignore lint/complexity/noBannedTypes: <explanation>
|
|
102
116
|
const callableMetadata = new Map<Function, CallableMetadata>();
|
|
103
117
|
|
|
104
118
|
/**
|
|
@@ -159,6 +173,45 @@ function getNextCronTime(cron: string) {
|
|
|
159
173
|
return interval.getNextDate();
|
|
160
174
|
}
|
|
161
175
|
|
|
176
|
+
/**
|
|
177
|
+
* MCP Server state update message from server -> Client
|
|
178
|
+
*/
|
|
179
|
+
export type MCPServerMessage = {
|
|
180
|
+
type: "cf_agent_mcp_servers";
|
|
181
|
+
mcp: MCPServersState;
|
|
182
|
+
};
|
|
183
|
+
|
|
184
|
+
export type MCPServersState = {
|
|
185
|
+
servers: {
|
|
186
|
+
[id: string]: MCPServer;
|
|
187
|
+
};
|
|
188
|
+
tools: Tool[];
|
|
189
|
+
prompts: Prompt[];
|
|
190
|
+
resources: Resource[];
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
export type MCPServer = {
|
|
194
|
+
name: string;
|
|
195
|
+
server_url: string;
|
|
196
|
+
auth_url: string | null;
|
|
197
|
+
state: "authenticating" | "connecting" | "ready" | "discovering" | "failed";
|
|
198
|
+
instructions: string | null;
|
|
199
|
+
capabilities: ServerCapabilities | null;
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* MCP Server data stored in DO SQL for resuming MCP Server connections
|
|
204
|
+
*/
|
|
205
|
+
type MCPServerRow = {
|
|
206
|
+
id: string;
|
|
207
|
+
name: string;
|
|
208
|
+
server_url: string;
|
|
209
|
+
client_id: string | null;
|
|
210
|
+
auth_url: string | null;
|
|
211
|
+
callback_url: string;
|
|
212
|
+
server_options: string;
|
|
213
|
+
};
|
|
214
|
+
|
|
162
215
|
const STATE_ROW_ID = "cf_state_row_id";
|
|
163
216
|
const STATE_WAS_CHANGED = "cf_state_was_changed";
|
|
164
217
|
|
|
@@ -200,12 +253,12 @@ export function getCurrentAgent<
|
|
|
200
253
|
* @template State State type to store within the Agent
|
|
201
254
|
*/
|
|
202
255
|
export class Agent<Env, State = unknown> extends Server<Env> {
|
|
203
|
-
|
|
256
|
+
private _state = DEFAULT_STATE as State;
|
|
204
257
|
|
|
205
|
-
|
|
258
|
+
private _ParentClass: typeof Agent<Env, State> =
|
|
206
259
|
Object.getPrototypeOf(this).constructor;
|
|
207
260
|
|
|
208
|
-
mcp: MCPClientManager = new MCPClientManager(this
|
|
261
|
+
mcp: MCPClientManager = new MCPClientManager(this._ParentClass.name, "0.0.1");
|
|
209
262
|
|
|
210
263
|
/**
|
|
211
264
|
* Initial state for the Agent
|
|
@@ -217,9 +270,9 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
217
270
|
* Current state of the Agent
|
|
218
271
|
*/
|
|
219
272
|
get state(): State {
|
|
220
|
-
if (this
|
|
273
|
+
if (this._state !== DEFAULT_STATE) {
|
|
221
274
|
// state was previously set, and populated internal state
|
|
222
|
-
return this
|
|
275
|
+
return this._state;
|
|
223
276
|
}
|
|
224
277
|
// looks like this is the first time the state is being accessed
|
|
225
278
|
// check if the state was set in a previous life
|
|
@@ -239,8 +292,8 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
239
292
|
) {
|
|
240
293
|
const state = result[0]?.state as string; // could be null?
|
|
241
294
|
|
|
242
|
-
this
|
|
243
|
-
return this
|
|
295
|
+
this._state = JSON.parse(state);
|
|
296
|
+
return this._state;
|
|
244
297
|
}
|
|
245
298
|
|
|
246
299
|
// ok, this is the first time the state is being accessed
|
|
@@ -301,7 +354,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
301
354
|
`;
|
|
302
355
|
|
|
303
356
|
void this.ctx.blockConcurrencyWhile(async () => {
|
|
304
|
-
return this
|
|
357
|
+
return this._tryCatch(async () => {
|
|
305
358
|
// Create alarms table if it doesn't exist
|
|
306
359
|
this.sql`
|
|
307
360
|
CREATE TABLE IF NOT EXISTS cf_agents_schedules (
|
|
@@ -321,12 +374,42 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
321
374
|
});
|
|
322
375
|
});
|
|
323
376
|
|
|
377
|
+
this.sql`
|
|
378
|
+
CREATE TABLE IF NOT EXISTS cf_agents_mcp_servers (
|
|
379
|
+
id TEXT PRIMARY KEY NOT NULL,
|
|
380
|
+
name TEXT NOT NULL,
|
|
381
|
+
server_url TEXT NOT NULL,
|
|
382
|
+
callback_url TEXT NOT NULL,
|
|
383
|
+
client_id TEXT,
|
|
384
|
+
auth_url TEXT,
|
|
385
|
+
server_options TEXT
|
|
386
|
+
)
|
|
387
|
+
`;
|
|
388
|
+
|
|
324
389
|
const _onRequest = this.onRequest.bind(this);
|
|
325
390
|
this.onRequest = (request: Request) => {
|
|
326
391
|
return agentContext.run(
|
|
327
392
|
{ agent: this, connection: undefined, request },
|
|
328
393
|
async () => {
|
|
329
|
-
|
|
394
|
+
if (this.mcp.isCallbackRequest(request)) {
|
|
395
|
+
await this.mcp.handleCallbackRequest(request);
|
|
396
|
+
|
|
397
|
+
// after the MCP connection handshake, we can send updated mcp state
|
|
398
|
+
this.broadcast(
|
|
399
|
+
JSON.stringify({
|
|
400
|
+
type: "cf_agent_mcp_servers",
|
|
401
|
+
mcp: this.getMcpServers(),
|
|
402
|
+
})
|
|
403
|
+
);
|
|
404
|
+
|
|
405
|
+
// We probably should let the user configure this response/redirect, but this is fine for now.
|
|
406
|
+
return new Response("<script>window.close();</script>", {
|
|
407
|
+
status: 200,
|
|
408
|
+
headers: { "content-type": "text/html" },
|
|
409
|
+
});
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
return this._tryCatch(() => _onRequest(request));
|
|
330
413
|
}
|
|
331
414
|
);
|
|
332
415
|
};
|
|
@@ -337,7 +420,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
337
420
|
{ agent: this, connection, request: undefined },
|
|
338
421
|
async () => {
|
|
339
422
|
if (typeof message !== "string") {
|
|
340
|
-
return this
|
|
423
|
+
return this._tryCatch(() => _onMessage(connection, message));
|
|
341
424
|
}
|
|
342
425
|
|
|
343
426
|
let parsed: unknown;
|
|
@@ -345,11 +428,11 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
345
428
|
parsed = JSON.parse(message);
|
|
346
429
|
} catch (e) {
|
|
347
430
|
// silently fail and let the onMessage handler handle it
|
|
348
|
-
return this
|
|
431
|
+
return this._tryCatch(() => _onMessage(connection, message));
|
|
349
432
|
}
|
|
350
433
|
|
|
351
434
|
if (isStateUpdateMessage(parsed)) {
|
|
352
|
-
this
|
|
435
|
+
this._setStateInternal(parsed.state as State, connection);
|
|
353
436
|
return;
|
|
354
437
|
}
|
|
355
438
|
|
|
@@ -363,11 +446,10 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
363
446
|
throw new Error(`Method ${method} does not exist`);
|
|
364
447
|
}
|
|
365
448
|
|
|
366
|
-
if (!this
|
|
449
|
+
if (!this._isCallable(method)) {
|
|
367
450
|
throw new Error(`Method ${method} is not callable`);
|
|
368
451
|
}
|
|
369
452
|
|
|
370
|
-
// biome-ignore lint/complexity/noBannedTypes: <explanation>
|
|
371
453
|
const metadata = callableMetadata.get(methodFn as Function);
|
|
372
454
|
|
|
373
455
|
// For streaming methods, pass a StreamingResponse object
|
|
@@ -402,7 +484,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
402
484
|
return;
|
|
403
485
|
}
|
|
404
486
|
|
|
405
|
-
return this
|
|
487
|
+
return this._tryCatch(() => _onMessage(connection, message));
|
|
406
488
|
}
|
|
407
489
|
);
|
|
408
490
|
};
|
|
@@ -423,15 +505,65 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
423
505
|
})
|
|
424
506
|
);
|
|
425
507
|
}
|
|
426
|
-
|
|
508
|
+
|
|
509
|
+
connection.send(
|
|
510
|
+
JSON.stringify({
|
|
511
|
+
type: "cf_agent_mcp_servers",
|
|
512
|
+
mcp: this.getMcpServers(),
|
|
513
|
+
})
|
|
514
|
+
);
|
|
515
|
+
|
|
516
|
+
return this._tryCatch(() => _onConnect(connection, ctx));
|
|
427
517
|
}, 20);
|
|
428
518
|
}
|
|
429
519
|
);
|
|
430
520
|
};
|
|
521
|
+
|
|
522
|
+
const _onStart = this.onStart.bind(this);
|
|
523
|
+
this.onStart = async () => {
|
|
524
|
+
return agentContext.run(
|
|
525
|
+
{ agent: this, connection: undefined, request: undefined },
|
|
526
|
+
async () => {
|
|
527
|
+
const servers = this.sql<MCPServerRow>`
|
|
528
|
+
SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
|
|
529
|
+
`;
|
|
530
|
+
|
|
531
|
+
// from DO storage, reconnect to all servers using our saved auth information
|
|
532
|
+
await Promise.allSettled(
|
|
533
|
+
servers.map((server) => {
|
|
534
|
+
return this._connectToMcpServerInternal(
|
|
535
|
+
server.name,
|
|
536
|
+
server.server_url,
|
|
537
|
+
server.callback_url,
|
|
538
|
+
server.server_options
|
|
539
|
+
? JSON.parse(server.server_options)
|
|
540
|
+
: undefined,
|
|
541
|
+
{
|
|
542
|
+
id: server.id,
|
|
543
|
+
oauthClientId: server.client_id ?? undefined,
|
|
544
|
+
}
|
|
545
|
+
);
|
|
546
|
+
})
|
|
547
|
+
);
|
|
548
|
+
|
|
549
|
+
this.broadcast(
|
|
550
|
+
JSON.stringify({
|
|
551
|
+
type: "cf_agent_mcp_servers",
|
|
552
|
+
mcp: this.getMcpServers(),
|
|
553
|
+
})
|
|
554
|
+
);
|
|
555
|
+
|
|
556
|
+
await this._tryCatch(() => _onStart());
|
|
557
|
+
}
|
|
558
|
+
);
|
|
559
|
+
};
|
|
431
560
|
}
|
|
432
561
|
|
|
433
|
-
|
|
434
|
-
|
|
562
|
+
private _setStateInternal(
|
|
563
|
+
state: State,
|
|
564
|
+
source: Connection | "server" = "server"
|
|
565
|
+
) {
|
|
566
|
+
this._state = state;
|
|
435
567
|
this.sql`
|
|
436
568
|
INSERT OR REPLACE INTO cf_agents_state (id, state)
|
|
437
569
|
VALUES (${STATE_ROW_ID}, ${JSON.stringify(state)})
|
|
@@ -447,7 +579,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
447
579
|
}),
|
|
448
580
|
source !== "server" ? [source.id] : []
|
|
449
581
|
);
|
|
450
|
-
return this
|
|
582
|
+
return this._tryCatch(() => {
|
|
451
583
|
const { connection, request } = agentContext.getStore() || {};
|
|
452
584
|
return agentContext.run(
|
|
453
585
|
{ agent: this, connection, request },
|
|
@@ -463,7 +595,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
463
595
|
* @param state New state to set
|
|
464
596
|
*/
|
|
465
597
|
setState(state: State) {
|
|
466
|
-
this
|
|
598
|
+
this._setStateInternal(state, "server");
|
|
467
599
|
}
|
|
468
600
|
|
|
469
601
|
/**
|
|
@@ -488,7 +620,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
488
620
|
);
|
|
489
621
|
}
|
|
490
622
|
|
|
491
|
-
async
|
|
623
|
+
private async _tryCatch<T>(fn: () => T | Promise<T>) {
|
|
492
624
|
try {
|
|
493
625
|
return await fn();
|
|
494
626
|
} catch (e) {
|
|
@@ -562,7 +694,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
562
694
|
)}, 'scheduled', ${timestamp})
|
|
563
695
|
`;
|
|
564
696
|
|
|
565
|
-
await this
|
|
697
|
+
await this._scheduleNextAlarm();
|
|
566
698
|
|
|
567
699
|
return {
|
|
568
700
|
id,
|
|
@@ -583,7 +715,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
583
715
|
)}, 'delayed', ${when}, ${timestamp})
|
|
584
716
|
`;
|
|
585
717
|
|
|
586
|
-
await this
|
|
718
|
+
await this._scheduleNextAlarm();
|
|
587
719
|
|
|
588
720
|
return {
|
|
589
721
|
id,
|
|
@@ -605,7 +737,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
605
737
|
)}, 'cron', ${when}, ${timestamp})
|
|
606
738
|
`;
|
|
607
739
|
|
|
608
|
-
await this
|
|
740
|
+
await this._scheduleNextAlarm();
|
|
609
741
|
|
|
610
742
|
return {
|
|
611
743
|
id,
|
|
@@ -692,11 +824,11 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
692
824
|
async cancelSchedule(id: string): Promise<boolean> {
|
|
693
825
|
this.sql`DELETE FROM cf_agents_schedules WHERE id = ${id}`;
|
|
694
826
|
|
|
695
|
-
await this
|
|
827
|
+
await this._scheduleNextAlarm();
|
|
696
828
|
return true;
|
|
697
829
|
}
|
|
698
830
|
|
|
699
|
-
async
|
|
831
|
+
private async _scheduleNextAlarm() {
|
|
700
832
|
// Find the next schedule that needs to be executed
|
|
701
833
|
const result = this.sql`
|
|
702
834
|
SELECT time FROM cf_agents_schedules
|
|
@@ -766,7 +898,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
766
898
|
}
|
|
767
899
|
|
|
768
900
|
// Schedule the next alarm
|
|
769
|
-
await this
|
|
901
|
+
await this._scheduleNextAlarm();
|
|
770
902
|
};
|
|
771
903
|
|
|
772
904
|
/**
|
|
@@ -776,6 +908,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
776
908
|
// drop all tables
|
|
777
909
|
this.sql`DROP TABLE IF EXISTS cf_agents_state`;
|
|
778
910
|
this.sql`DROP TABLE IF EXISTS cf_agents_schedules`;
|
|
911
|
+
this.sql`DROP TABLE IF EXISTS cf_agents_mcp_servers`;
|
|
779
912
|
|
|
780
913
|
// delete all alarms
|
|
781
914
|
await this.ctx.storage.deleteAlarm();
|
|
@@ -786,10 +919,171 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
786
919
|
* Get all methods marked as callable on this Agent
|
|
787
920
|
* @returns A map of method names to their metadata
|
|
788
921
|
*/
|
|
789
|
-
|
|
790
|
-
// biome-ignore lint/complexity/noBannedTypes: <explanation>
|
|
922
|
+
private _isCallable(method: string): boolean {
|
|
791
923
|
return callableMetadata.has(this[method as keyof this] as Function);
|
|
792
924
|
}
|
|
925
|
+
|
|
926
|
+
/**
|
|
927
|
+
* Connect to a new MCP Server
|
|
928
|
+
*
|
|
929
|
+
* @param url MCP Server SSE URL
|
|
930
|
+
* @param callbackHost Base host for the agent, used for the redirect URI.
|
|
931
|
+
* @param agentsPrefix agents routing prefix if not using `agents`
|
|
932
|
+
* @param options MCP client and transport (header) options
|
|
933
|
+
* @returns authUrl
|
|
934
|
+
*/
|
|
935
|
+
async addMcpServer(
|
|
936
|
+
serverName: string,
|
|
937
|
+
url: string,
|
|
938
|
+
callbackHost: string,
|
|
939
|
+
agentsPrefix = "agents",
|
|
940
|
+
options?: {
|
|
941
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
942
|
+
transport?: {
|
|
943
|
+
headers: HeadersInit;
|
|
944
|
+
};
|
|
945
|
+
}
|
|
946
|
+
): Promise<{ id: string; authUrl: string | undefined }> {
|
|
947
|
+
const callbackUrl = `${callbackHost}/${agentsPrefix}/${camelCaseToKebabCase(this._ParentClass.name)}/${this.name}/callback`;
|
|
948
|
+
|
|
949
|
+
const result = await this._connectToMcpServerInternal(
|
|
950
|
+
serverName,
|
|
951
|
+
url,
|
|
952
|
+
callbackUrl,
|
|
953
|
+
options
|
|
954
|
+
);
|
|
955
|
+
|
|
956
|
+
this.broadcast(
|
|
957
|
+
JSON.stringify({
|
|
958
|
+
type: "cf_agent_mcp_servers",
|
|
959
|
+
mcp: this.getMcpServers(),
|
|
960
|
+
})
|
|
961
|
+
);
|
|
962
|
+
|
|
963
|
+
return result;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
async _connectToMcpServerInternal(
|
|
967
|
+
serverName: string,
|
|
968
|
+
url: string,
|
|
969
|
+
callbackUrl: string,
|
|
970
|
+
// it's important that any options here are serializable because we put them into our sqlite DB for reconnection purposes
|
|
971
|
+
options?: {
|
|
972
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
973
|
+
/**
|
|
974
|
+
* We don't expose the normal set of transport options because:
|
|
975
|
+
* 1) we can't serialize things like the auth provider or a fetch function into the DB for reconnection purposes
|
|
976
|
+
* 2) We probably want these options to be agnostic to the transport type (SSE vs Streamable)
|
|
977
|
+
*
|
|
978
|
+
* This has the limitation that you can't override fetch, but I think headers should handle nearly all cases needed (i.e. non-standard bearer auth).
|
|
979
|
+
*/
|
|
980
|
+
transport?: {
|
|
981
|
+
headers?: HeadersInit;
|
|
982
|
+
};
|
|
983
|
+
},
|
|
984
|
+
reconnect?: {
|
|
985
|
+
id: string;
|
|
986
|
+
oauthClientId?: string;
|
|
987
|
+
}
|
|
988
|
+
): Promise<{ id: string; authUrl: string | undefined }> {
|
|
989
|
+
const authProvider = new DurableObjectOAuthClientProvider(
|
|
990
|
+
this.ctx.storage,
|
|
991
|
+
this.name,
|
|
992
|
+
callbackUrl
|
|
993
|
+
);
|
|
994
|
+
|
|
995
|
+
if (reconnect) {
|
|
996
|
+
authProvider.serverId = reconnect.id;
|
|
997
|
+
if (reconnect.oauthClientId) {
|
|
998
|
+
authProvider.clientId = reconnect.oauthClientId;
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
// allows passing through transport headers if necessary
|
|
1003
|
+
// this handles some non-standard bearer auth setups (i.e. MCP server behind CF access instead of OAuth)
|
|
1004
|
+
let headerTransportOpts: SSEClientTransportOptions = {};
|
|
1005
|
+
if (options?.transport?.headers) {
|
|
1006
|
+
headerTransportOpts = {
|
|
1007
|
+
eventSourceInit: {
|
|
1008
|
+
fetch: (url, init) =>
|
|
1009
|
+
fetch(url, {
|
|
1010
|
+
...init,
|
|
1011
|
+
headers: options?.transport?.headers,
|
|
1012
|
+
}),
|
|
1013
|
+
},
|
|
1014
|
+
requestInit: {
|
|
1015
|
+
headers: options?.transport?.headers,
|
|
1016
|
+
},
|
|
1017
|
+
};
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
const { id, authUrl, clientId } = await this.mcp.connect(url, {
|
|
1021
|
+
reconnect,
|
|
1022
|
+
transport: {
|
|
1023
|
+
...headerTransportOpts,
|
|
1024
|
+
authProvider,
|
|
1025
|
+
},
|
|
1026
|
+
client: options?.client,
|
|
1027
|
+
});
|
|
1028
|
+
|
|
1029
|
+
this.sql`
|
|
1030
|
+
INSERT OR REPLACE INTO cf_agents_mcp_servers (id, name, server_url, client_id, auth_url, callback_url, server_options)
|
|
1031
|
+
VALUES (
|
|
1032
|
+
${id},
|
|
1033
|
+
${serverName},
|
|
1034
|
+
${url},
|
|
1035
|
+
${clientId ?? null},
|
|
1036
|
+
${authUrl ?? null},
|
|
1037
|
+
${callbackUrl},
|
|
1038
|
+
${options ? JSON.stringify(options) : null}
|
|
1039
|
+
);
|
|
1040
|
+
`;
|
|
1041
|
+
|
|
1042
|
+
return {
|
|
1043
|
+
id,
|
|
1044
|
+
authUrl,
|
|
1045
|
+
};
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
async removeMcpServer(id: string) {
|
|
1049
|
+
this.mcp.closeConnection(id);
|
|
1050
|
+
this.sql`
|
|
1051
|
+
DELETE FROM cf_agents_mcp_servers WHERE id = ${id};
|
|
1052
|
+
`;
|
|
1053
|
+
this.broadcast(
|
|
1054
|
+
JSON.stringify({
|
|
1055
|
+
type: "cf_agent_mcp_servers",
|
|
1056
|
+
mcp: this.getMcpServers(),
|
|
1057
|
+
})
|
|
1058
|
+
);
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
getMcpServers(): MCPServersState {
|
|
1062
|
+
const mcpState: MCPServersState = {
|
|
1063
|
+
servers: {},
|
|
1064
|
+
tools: this.mcp.listTools(),
|
|
1065
|
+
prompts: this.mcp.listPrompts(),
|
|
1066
|
+
resources: this.mcp.listResources(),
|
|
1067
|
+
};
|
|
1068
|
+
|
|
1069
|
+
const servers = this.sql<MCPServerRow>`
|
|
1070
|
+
SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
|
|
1071
|
+
`;
|
|
1072
|
+
|
|
1073
|
+
for (const server of servers) {
|
|
1074
|
+
mcpState.servers[server.id] = {
|
|
1075
|
+
name: server.name,
|
|
1076
|
+
server_url: server.server_url,
|
|
1077
|
+
auth_url: server.auth_url,
|
|
1078
|
+
state: this.mcp.mcpConnections[server.id].connectionState,
|
|
1079
|
+
instructions: this.mcp.mcpConnections[server.id].instructions ?? null,
|
|
1080
|
+
capabilities:
|
|
1081
|
+
this.mcp.mcpConnections[server.id].serverCapabilities ?? null,
|
|
1082
|
+
};
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
return mcpState;
|
|
1086
|
+
}
|
|
793
1087
|
}
|
|
794
1088
|
|
|
795
1089
|
/**
|
|
@@ -908,13 +1202,13 @@ export async function getAgentByName<Env, T extends Agent<Env>>(
|
|
|
908
1202
|
* A wrapper for streaming responses in callable methods
|
|
909
1203
|
*/
|
|
910
1204
|
export class StreamingResponse {
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
1205
|
+
private _connection: Connection;
|
|
1206
|
+
private _id: string;
|
|
1207
|
+
private _closed = false;
|
|
914
1208
|
|
|
915
1209
|
constructor(connection: Connection, id: string) {
|
|
916
|
-
this
|
|
917
|
-
this
|
|
1210
|
+
this._connection = connection;
|
|
1211
|
+
this._id = id;
|
|
918
1212
|
}
|
|
919
1213
|
|
|
920
1214
|
/**
|
|
@@ -922,17 +1216,17 @@ export class StreamingResponse {
|
|
|
922
1216
|
* @param chunk The data to send
|
|
923
1217
|
*/
|
|
924
1218
|
send(chunk: unknown) {
|
|
925
|
-
if (this
|
|
1219
|
+
if (this._closed) {
|
|
926
1220
|
throw new Error("StreamingResponse is already closed");
|
|
927
1221
|
}
|
|
928
1222
|
const response: RPCResponse = {
|
|
929
1223
|
type: "rpc",
|
|
930
|
-
id: this
|
|
1224
|
+
id: this._id,
|
|
931
1225
|
success: true,
|
|
932
1226
|
result: chunk,
|
|
933
1227
|
done: false,
|
|
934
1228
|
};
|
|
935
|
-
this
|
|
1229
|
+
this._connection.send(JSON.stringify(response));
|
|
936
1230
|
}
|
|
937
1231
|
|
|
938
1232
|
/**
|
|
@@ -940,17 +1234,17 @@ export class StreamingResponse {
|
|
|
940
1234
|
* @param finalChunk Optional final chunk of data to send
|
|
941
1235
|
*/
|
|
942
1236
|
end(finalChunk?: unknown) {
|
|
943
|
-
if (this
|
|
1237
|
+
if (this._closed) {
|
|
944
1238
|
throw new Error("StreamingResponse is already closed");
|
|
945
1239
|
}
|
|
946
|
-
this
|
|
1240
|
+
this._closed = true;
|
|
947
1241
|
const response: RPCResponse = {
|
|
948
1242
|
type: "rpc",
|
|
949
|
-
id: this
|
|
1243
|
+
id: this._id,
|
|
950
1244
|
success: true,
|
|
951
1245
|
result: finalChunk,
|
|
952
1246
|
done: true,
|
|
953
1247
|
};
|
|
954
|
-
this
|
|
1248
|
+
this._connection.send(JSON.stringify(response));
|
|
955
1249
|
}
|
|
956
1250
|
}
|
package/dist/chunk-HMLY7DHA.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
var __typeError = (msg) => {
|
|
2
|
-
throw TypeError(msg);
|
|
3
|
-
};
|
|
4
|
-
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
5
|
-
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
6
|
-
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
7
|
-
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
|
8
|
-
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
9
|
-
|
|
10
|
-
export {
|
|
11
|
-
__privateGet,
|
|
12
|
-
__privateAdd,
|
|
13
|
-
__privateSet,
|
|
14
|
-
__privateMethod
|
|
15
|
-
};
|
|
16
|
-
//# sourceMappingURL=chunk-HMLY7DHA.js.map
|