agents 0.0.65 → 0.0.66

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.
@@ -0,0 +1,435 @@
1
+ // src/mcp/sse-edge.ts
2
+ import {
3
+ SSEClientTransport
4
+ } from "@modelcontextprotocol/sdk/client/sse.js";
5
+ var SSEEdgeClientTransport = class extends SSEClientTransport {
6
+ /**
7
+ * Creates a new EdgeSSEClientTransport, which overrides fetch to be compatible with the CF workers environment
8
+ */
9
+ constructor(url, options) {
10
+ const fetchOverride = async (fetchUrl, fetchInit = {}) => {
11
+ const headers = await this.authHeaders();
12
+ const workerOptions = {
13
+ ...fetchInit,
14
+ headers: {
15
+ ...fetchInit?.headers,
16
+ ...headers
17
+ }
18
+ };
19
+ delete workerOptions.mode;
20
+ return fetch(fetchUrl, workerOptions);
21
+ };
22
+ super(url, {
23
+ ...options,
24
+ eventSourceInit: {
25
+ fetch: fetchOverride
26
+ }
27
+ });
28
+ this.authProvider = options.authProvider;
29
+ }
30
+ async authHeaders() {
31
+ if (this.authProvider) {
32
+ const tokens = await this.authProvider.tokens();
33
+ if (tokens) {
34
+ return {
35
+ Authorization: `Bearer ${tokens.access_token}`
36
+ };
37
+ }
38
+ }
39
+ }
40
+ };
41
+
42
+ // src/mcp/client-connection.ts
43
+ import {
44
+ ToolListChangedNotificationSchema,
45
+ ResourceListChangedNotificationSchema,
46
+ PromptListChangedNotificationSchema
47
+ } from "@modelcontextprotocol/sdk/types.js";
48
+ import { Client } from "@modelcontextprotocol/sdk/client/index.js";
49
+ var MCPClientConnection = class {
50
+ constructor(url, info, options = { transport: {}, client: {}, capabilities: {} }) {
51
+ this.url = url;
52
+ this.options = options;
53
+ this.connectionState = "connecting";
54
+ this.tools = [];
55
+ this.prompts = [];
56
+ this.resources = [];
57
+ this.resourceTemplates = [];
58
+ this.client = new Client(info, options.client);
59
+ this.client.registerCapabilities(options.capabilities);
60
+ }
61
+ /**
62
+ * Initialize a client connection
63
+ *
64
+ * @param code Optional OAuth code to initialize the connection with if auth hasn't been initialized
65
+ * @returns
66
+ */
67
+ async init(code, clientId) {
68
+ try {
69
+ const transport = new SSEEdgeClientTransport(
70
+ this.url,
71
+ this.options.transport
72
+ );
73
+ if (code) {
74
+ await transport.finishAuth(code);
75
+ }
76
+ await this.client.connect(transport);
77
+ } catch (e) {
78
+ if (e.toString().includes("Unauthorized")) {
79
+ this.connectionState = "authenticating";
80
+ return;
81
+ }
82
+ this.connectionState = "failed";
83
+ throw e;
84
+ }
85
+ this.connectionState = "discovering";
86
+ this.serverCapabilities = await this.client.getServerCapabilities();
87
+ if (!this.serverCapabilities) {
88
+ throw new Error("The MCP Server failed to return server capabilities");
89
+ }
90
+ const [instructions, tools, resources, prompts, resourceTemplates] = await Promise.all([
91
+ this.client.getInstructions(),
92
+ this.registerTools(),
93
+ this.registerResources(),
94
+ this.registerPrompts(),
95
+ this.registerResourceTemplates()
96
+ ]);
97
+ this.instructions = instructions;
98
+ this.tools = tools;
99
+ this.resources = resources;
100
+ this.prompts = prompts;
101
+ this.resourceTemplates = resourceTemplates;
102
+ this.connectionState = "ready";
103
+ }
104
+ /**
105
+ * Notification handler registration
106
+ */
107
+ async registerTools() {
108
+ if (!this.serverCapabilities || !this.serverCapabilities.tools) {
109
+ return [];
110
+ }
111
+ if (this.serverCapabilities.tools.listChanged) {
112
+ this.client.setNotificationHandler(
113
+ ToolListChangedNotificationSchema,
114
+ async (_notification) => {
115
+ this.tools = await this.fetchTools();
116
+ }
117
+ );
118
+ }
119
+ return this.fetchTools();
120
+ }
121
+ async registerResources() {
122
+ if (!this.serverCapabilities || !this.serverCapabilities.resources) {
123
+ return [];
124
+ }
125
+ if (this.serverCapabilities.resources.listChanged) {
126
+ this.client.setNotificationHandler(
127
+ ResourceListChangedNotificationSchema,
128
+ async (_notification) => {
129
+ this.resources = await this.fetchResources();
130
+ }
131
+ );
132
+ }
133
+ return this.fetchResources();
134
+ }
135
+ async registerPrompts() {
136
+ if (!this.serverCapabilities || !this.serverCapabilities.prompts) {
137
+ return [];
138
+ }
139
+ if (this.serverCapabilities.prompts.listChanged) {
140
+ this.client.setNotificationHandler(
141
+ PromptListChangedNotificationSchema,
142
+ async (_notification) => {
143
+ this.prompts = await this.fetchPrompts();
144
+ }
145
+ );
146
+ }
147
+ return this.fetchPrompts();
148
+ }
149
+ async registerResourceTemplates() {
150
+ if (!this.serverCapabilities || !this.serverCapabilities.resources) {
151
+ return [];
152
+ }
153
+ return this.fetchResourceTemplates();
154
+ }
155
+ async fetchTools() {
156
+ let toolsAgg = [];
157
+ let toolsResult = { tools: [] };
158
+ do {
159
+ toolsResult = await this.client.listTools({
160
+ cursor: toolsResult.nextCursor
161
+ }).catch(capabilityErrorHandler({ tools: [] }, "tools/list"));
162
+ toolsAgg = toolsAgg.concat(toolsResult.tools);
163
+ } while (toolsResult.nextCursor);
164
+ return toolsAgg;
165
+ }
166
+ async fetchResources() {
167
+ let resourcesAgg = [];
168
+ let resourcesResult = { resources: [] };
169
+ do {
170
+ resourcesResult = await this.client.listResources({
171
+ cursor: resourcesResult.nextCursor
172
+ }).catch(capabilityErrorHandler({ resources: [] }, "resources/list"));
173
+ resourcesAgg = resourcesAgg.concat(resourcesResult.resources);
174
+ } while (resourcesResult.nextCursor);
175
+ return resourcesAgg;
176
+ }
177
+ async fetchPrompts() {
178
+ let promptsAgg = [];
179
+ let promptsResult = { prompts: [] };
180
+ do {
181
+ promptsResult = await this.client.listPrompts({
182
+ cursor: promptsResult.nextCursor
183
+ }).catch(capabilityErrorHandler({ prompts: [] }, "prompts/list"));
184
+ promptsAgg = promptsAgg.concat(promptsResult.prompts);
185
+ } while (promptsResult.nextCursor);
186
+ return promptsAgg;
187
+ }
188
+ async fetchResourceTemplates() {
189
+ let templatesAgg = [];
190
+ let templatesResult = {
191
+ resourceTemplates: []
192
+ };
193
+ do {
194
+ templatesResult = await this.client.listResourceTemplates({
195
+ cursor: templatesResult.nextCursor
196
+ }).catch(
197
+ capabilityErrorHandler(
198
+ { resourceTemplates: [] },
199
+ "resources/templates/list"
200
+ )
201
+ );
202
+ templatesAgg = templatesAgg.concat(templatesResult.resourceTemplates);
203
+ } while (templatesResult.nextCursor);
204
+ return templatesAgg;
205
+ }
206
+ };
207
+ function capabilityErrorHandler(empty, method) {
208
+ return (e) => {
209
+ if (e.code === -32601) {
210
+ console.error(
211
+ `The server advertised support for the capability ${method.split("/")[0]}, but returned "Method not found" for '${method}'.`
212
+ );
213
+ return empty;
214
+ }
215
+ throw e;
216
+ };
217
+ }
218
+
219
+ // src/mcp/client.ts
220
+ import { jsonSchema } from "ai";
221
+ var MCPClientManager = class {
222
+ /**
223
+ * @param name Name of the MCP client
224
+ * @param version Version of the MCP Client
225
+ * @param auth Auth paramters if being used to create a DurableObjectOAuthClientProvider
226
+ */
227
+ constructor(name, version) {
228
+ this.name = name;
229
+ this.version = version;
230
+ this.mcpConnections = {};
231
+ this.callbackUrls = [];
232
+ }
233
+ /**
234
+ * Connect to and register an MCP server
235
+ *
236
+ * @param transportConfig Transport config
237
+ * @param clientConfig Client config
238
+ * @param capabilities Client capabilities (i.e. if the client supports roots/sampling)
239
+ */
240
+ async connect(url, options = {}) {
241
+ const id = options.reconnect?.id ?? crypto.randomUUID();
242
+ if (!options.transport?.authProvider) {
243
+ console.warn(
244
+ "No authProvider provided in the transport options. This client will only support unauthenticated remote MCP Servers"
245
+ );
246
+ } else {
247
+ options.transport.authProvider.serverId = id;
248
+ }
249
+ this.mcpConnections[id] = new MCPClientConnection(
250
+ new URL(url),
251
+ {
252
+ name: this.name,
253
+ version: this.version
254
+ },
255
+ {
256
+ transport: options.transport ?? {},
257
+ client: options.client ?? {},
258
+ capabilities: options.client ?? {}
259
+ }
260
+ );
261
+ await this.mcpConnections[id].init(
262
+ options.reconnect?.oauthCode,
263
+ options.reconnect?.oauthClientId
264
+ );
265
+ const authUrl = options.transport?.authProvider?.authUrl;
266
+ if (authUrl && options.transport?.authProvider?.redirectUrl) {
267
+ this.callbackUrls.push(
268
+ options.transport.authProvider.redirectUrl.toString()
269
+ );
270
+ }
271
+ return {
272
+ id,
273
+ authUrl
274
+ };
275
+ }
276
+ isCallbackRequest(req) {
277
+ return req.method === "GET" && !!this.callbackUrls.find((url) => {
278
+ return req.url.startsWith(url);
279
+ });
280
+ }
281
+ async handleCallbackRequest(req) {
282
+ const url = new URL(req.url);
283
+ const urlMatch = this.callbackUrls.find((url2) => {
284
+ return req.url.startsWith(url2);
285
+ });
286
+ if (!urlMatch) {
287
+ throw new Error(
288
+ `No callback URI match found for the request url: ${req.url}. Was the request matched with \`isCallbackRequest()\`?`
289
+ );
290
+ }
291
+ const code = url.searchParams.get("code");
292
+ const clientId = url.searchParams.get("state");
293
+ const urlParams = urlMatch.split("/");
294
+ const serverId = urlParams[urlParams.length - 1];
295
+ if (!code) {
296
+ throw new Error("Unauthorized: no code provided");
297
+ }
298
+ if (!clientId) {
299
+ throw new Error("Unauthorized: no state provided");
300
+ }
301
+ if (this.mcpConnections[serverId] === void 0) {
302
+ throw new Error(`Could not find serverId: ${serverId}`);
303
+ }
304
+ if (this.mcpConnections[serverId].connectionState !== "authenticating") {
305
+ throw new Error(
306
+ "Failed to authenticate: the client isn't in the `authenticating` state"
307
+ );
308
+ }
309
+ const conn = this.mcpConnections[serverId];
310
+ if (!conn.options.transport.authProvider) {
311
+ throw new Error(
312
+ "Trying to finalize authentication for a server connection without an authProvider"
313
+ );
314
+ }
315
+ conn.options.transport.authProvider.clientId = clientId;
316
+ conn.options.transport.authProvider.serverId = serverId;
317
+ const serverUrl = conn.url.toString();
318
+ await this.connect(serverUrl, {
319
+ reconnect: {
320
+ id: serverId,
321
+ oauthClientId: clientId,
322
+ oauthCode: code
323
+ },
324
+ ...conn.options
325
+ });
326
+ if (this.mcpConnections[serverId].connectionState === "authenticating") {
327
+ throw new Error("Failed to authenticate: client failed to initialize");
328
+ }
329
+ return { serverId };
330
+ }
331
+ /**
332
+ * @returns namespaced list of tools
333
+ */
334
+ listTools() {
335
+ return getNamespacedData(this.mcpConnections, "tools");
336
+ }
337
+ /**
338
+ * @returns a set of tools that you can use with the AI SDK
339
+ */
340
+ unstable_getAITools() {
341
+ return Object.fromEntries(
342
+ getNamespacedData(this.mcpConnections, "tools").map((tool) => {
343
+ return [
344
+ tool.name,
345
+ {
346
+ parameters: jsonSchema(tool.inputSchema),
347
+ description: tool.description,
348
+ execute: async (args) => {
349
+ const result = await this.callTool({
350
+ name: tool.name,
351
+ arguments: args,
352
+ serverId: tool.serverId
353
+ });
354
+ if (result.isError) {
355
+ throw new Error(result.content[0].text);
356
+ }
357
+ return result;
358
+ }
359
+ }
360
+ ];
361
+ })
362
+ );
363
+ }
364
+ /**
365
+ * @returns namespaced list of prompts
366
+ */
367
+ listPrompts() {
368
+ return getNamespacedData(this.mcpConnections, "prompts");
369
+ }
370
+ /**
371
+ * @returns namespaced list of tools
372
+ */
373
+ listResources() {
374
+ return getNamespacedData(this.mcpConnections, "resources");
375
+ }
376
+ /**
377
+ * @returns namespaced list of resource templates
378
+ */
379
+ listResourceTemplates() {
380
+ return getNamespacedData(this.mcpConnections, "resourceTemplates");
381
+ }
382
+ /**
383
+ * Namespaced version of callTool
384
+ */
385
+ callTool(params, resultSchema, options) {
386
+ const unqualifiedName = params.name.replace(`${params.serverId}.`, "");
387
+ return this.mcpConnections[params.serverId].client.callTool(
388
+ {
389
+ ...params,
390
+ name: unqualifiedName
391
+ },
392
+ resultSchema,
393
+ options
394
+ );
395
+ }
396
+ /**
397
+ * Namespaced version of readResource
398
+ */
399
+ readResource(params, options) {
400
+ return this.mcpConnections[params.serverId].client.readResource(
401
+ params,
402
+ options
403
+ );
404
+ }
405
+ /**
406
+ * Namespaced version of getPrompt
407
+ */
408
+ getPrompt(params, options) {
409
+ return this.mcpConnections[params.serverId].client.getPrompt(
410
+ params,
411
+ options
412
+ );
413
+ }
414
+ };
415
+ function getNamespacedData(mcpClients, type) {
416
+ const sets = Object.entries(mcpClients).map(([name, conn]) => {
417
+ return { name, data: conn[type] };
418
+ });
419
+ const namespacedData = sets.flatMap(({ name: serverId, data }) => {
420
+ return data.map((item) => {
421
+ return {
422
+ ...item,
423
+ // we add a serverId so we can easily pull it out and send the tool call to the right server
424
+ serverId
425
+ };
426
+ });
427
+ });
428
+ return namespacedData;
429
+ }
430
+
431
+ export {
432
+ MCPClientManager,
433
+ getNamespacedData
434
+ };
435
+ //# sourceMappingURL=chunk-YZNSS675.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/mcp/sse-edge.ts","../src/mcp/client-connection.ts","../src/mcp/client.ts"],"sourcesContent":["import {\n SSEClientTransport,\n type SSEClientTransportOptions,\n} from \"@modelcontextprotocol/sdk/client/sse.js\";\nimport type { OAuthClientProvider } from \"@modelcontextprotocol/sdk/client/auth.js\";\n\nexport class SSEEdgeClientTransport extends SSEClientTransport {\n private authProvider: OAuthClientProvider | undefined;\n /**\n * Creates a new EdgeSSEClientTransport, which overrides fetch to be compatible with the CF workers environment\n */\n constructor(url: URL, options: SSEClientTransportOptions) {\n const fetchOverride: typeof fetch = async (\n fetchUrl: RequestInfo | URL,\n fetchInit: RequestInit = {}\n ) => {\n // add auth headers\n const headers = await this.authHeaders();\n const workerOptions = {\n ...fetchInit,\n headers: {\n ...fetchInit?.headers,\n ...headers,\n },\n };\n\n // Remove unsupported properties\n // biome-ignore lint/performance/noDelete: workaround for workers environment\n delete workerOptions.mode;\n\n // Call the original fetch with fixed options\n return fetch(fetchUrl, workerOptions);\n };\n\n super(url, {\n ...options,\n eventSourceInit: {\n fetch: fetchOverride,\n },\n });\n this.authProvider = options.authProvider;\n }\n\n async authHeaders() {\n if (this.authProvider) {\n const tokens = await this.authProvider.tokens();\n if (tokens) {\n return {\n Authorization: `Bearer ${tokens.access_token}`,\n };\n }\n }\n }\n}\n","import { SSEEdgeClientTransport } from \"./sse-edge\";\n\nimport {\n ToolListChangedNotificationSchema,\n type ClientCapabilities,\n type Resource,\n type Tool,\n type Prompt,\n ResourceListChangedNotificationSchema,\n PromptListChangedNotificationSchema,\n type ListToolsResult,\n type ListResourcesResult,\n type ListPromptsResult,\n type ServerCapabilities,\n type ResourceTemplate,\n type ListResourceTemplatesResult,\n} from \"@modelcontextprotocol/sdk/types.js\";\nimport { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport type { SSEClientTransportOptions } from \"@modelcontextprotocol/sdk/client/sse.js\";\nimport type { AgentsOAuthProvider } from \"./do-oauth-client-provider\";\n\nexport class MCPClientConnection {\n client: Client;\n connectionState:\n | \"authenticating\"\n | \"connecting\"\n | \"ready\"\n | \"discovering\"\n | \"failed\" = \"connecting\";\n instructions?: string;\n tools: Tool[] = [];\n prompts: Prompt[] = [];\n resources: Resource[] = [];\n resourceTemplates: ResourceTemplate[] = [];\n serverCapabilities: ServerCapabilities | undefined;\n\n constructor(\n public url: URL,\n info: ConstructorParameters<typeof Client>[0],\n public options: {\n transport: SSEClientTransportOptions & {\n authProvider?: AgentsOAuthProvider;\n };\n client: ConstructorParameters<typeof Client>[1];\n capabilities: ClientCapabilities;\n } = { transport: {}, client: {}, capabilities: {} }\n ) {\n this.client = new Client(info, options.client);\n this.client.registerCapabilities(options.capabilities);\n }\n\n /**\n * Initialize a client connection\n *\n * @param code Optional OAuth code to initialize the connection with if auth hasn't been initialized\n * @returns\n */\n async init(code?: string, clientId?: string) {\n try {\n const transport = new SSEEdgeClientTransport(\n this.url,\n this.options.transport\n );\n if (code) {\n await transport.finishAuth(code);\n }\n\n await this.client.connect(transport);\n // biome-ignore lint/suspicious/noExplicitAny: allow for the error check here\n } catch (e: any) {\n if (e.toString().includes(\"Unauthorized\")) {\n // unauthorized, we should wait for the user to authenticate\n this.connectionState = \"authenticating\";\n return;\n }\n this.connectionState = \"failed\";\n throw e;\n }\n\n this.connectionState = \"discovering\";\n\n this.serverCapabilities = await this.client.getServerCapabilities();\n if (!this.serverCapabilities) {\n throw new Error(\"The MCP Server failed to return server capabilities\");\n }\n\n const [instructions, tools, resources, prompts, resourceTemplates] =\n await Promise.all([\n this.client.getInstructions(),\n this.registerTools(),\n this.registerResources(),\n this.registerPrompts(),\n this.registerResourceTemplates(),\n ]);\n\n this.instructions = instructions;\n this.tools = tools;\n this.resources = resources;\n this.prompts = prompts;\n this.resourceTemplates = resourceTemplates;\n\n this.connectionState = \"ready\";\n }\n\n /**\n * Notification handler registration\n */\n async registerTools(): Promise<Tool[]> {\n if (!this.serverCapabilities || !this.serverCapabilities.tools) {\n return [];\n }\n\n if (this.serverCapabilities.tools.listChanged) {\n this.client.setNotificationHandler(\n ToolListChangedNotificationSchema,\n async (_notification) => {\n this.tools = await this.fetchTools();\n }\n );\n }\n\n return this.fetchTools();\n }\n\n async registerResources(): Promise<Resource[]> {\n if (!this.serverCapabilities || !this.serverCapabilities.resources) {\n return [];\n }\n\n if (this.serverCapabilities.resources.listChanged) {\n this.client.setNotificationHandler(\n ResourceListChangedNotificationSchema,\n async (_notification) => {\n this.resources = await this.fetchResources();\n }\n );\n }\n\n return this.fetchResources();\n }\n\n async registerPrompts(): Promise<Prompt[]> {\n if (!this.serverCapabilities || !this.serverCapabilities.prompts) {\n return [];\n }\n\n if (this.serverCapabilities.prompts.listChanged) {\n this.client.setNotificationHandler(\n PromptListChangedNotificationSchema,\n async (_notification) => {\n this.prompts = await this.fetchPrompts();\n }\n );\n }\n\n return this.fetchPrompts();\n }\n\n async registerResourceTemplates(): Promise<ResourceTemplate[]> {\n if (!this.serverCapabilities || !this.serverCapabilities.resources) {\n return [];\n }\n\n return this.fetchResourceTemplates();\n }\n\n async fetchTools() {\n let toolsAgg: Tool[] = [];\n let toolsResult: ListToolsResult = { tools: [] };\n do {\n toolsResult = await this.client\n .listTools({\n cursor: toolsResult.nextCursor,\n })\n .catch(capabilityErrorHandler({ tools: [] }, \"tools/list\"));\n toolsAgg = toolsAgg.concat(toolsResult.tools);\n } while (toolsResult.nextCursor);\n return toolsAgg;\n }\n\n async fetchResources() {\n let resourcesAgg: Resource[] = [];\n let resourcesResult: ListResourcesResult = { resources: [] };\n do {\n resourcesResult = await this.client\n .listResources({\n cursor: resourcesResult.nextCursor,\n })\n .catch(capabilityErrorHandler({ resources: [] }, \"resources/list\"));\n resourcesAgg = resourcesAgg.concat(resourcesResult.resources);\n } while (resourcesResult.nextCursor);\n return resourcesAgg;\n }\n\n async fetchPrompts() {\n let promptsAgg: Prompt[] = [];\n let promptsResult: ListPromptsResult = { prompts: [] };\n do {\n promptsResult = await this.client\n .listPrompts({\n cursor: promptsResult.nextCursor,\n })\n .catch(capabilityErrorHandler({ prompts: [] }, \"prompts/list\"));\n promptsAgg = promptsAgg.concat(promptsResult.prompts);\n } while (promptsResult.nextCursor);\n return promptsAgg;\n }\n\n async fetchResourceTemplates() {\n let templatesAgg: ResourceTemplate[] = [];\n let templatesResult: ListResourceTemplatesResult = {\n resourceTemplates: [],\n };\n do {\n templatesResult = await this.client\n .listResourceTemplates({\n cursor: templatesResult.nextCursor,\n })\n .catch(\n capabilityErrorHandler(\n { resourceTemplates: [] },\n \"resources/templates/list\"\n )\n );\n templatesAgg = templatesAgg.concat(templatesResult.resourceTemplates);\n } while (templatesResult.nextCursor);\n return templatesAgg;\n }\n}\n\nfunction capabilityErrorHandler<T>(empty: T, method: string) {\n return (e: { code: number }) => {\n // server is badly behaved and returning invalid capabilities. This commonly occurs for resource templates\n if (e.code === -32601) {\n console.error(\n `The server advertised support for the capability ${method.split(\"/\")[0]}, but returned \"Method not found\" for '${method}'.`\n );\n return empty;\n }\n throw e;\n };\n}\n","import { MCPClientConnection } from \"./client-connection\";\n\nimport type {\n ClientCapabilities,\n CallToolRequest,\n CallToolResultSchema,\n CompatibilityCallToolResultSchema,\n ReadResourceRequest,\n GetPromptRequest,\n Tool,\n Resource,\n Prompt,\n ResourceTemplate,\n} from \"@modelcontextprotocol/sdk/types.js\";\nimport type { SSEClientTransportOptions } from \"@modelcontextprotocol/sdk/client/sse.js\";\nimport type { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport type { RequestOptions } from \"@modelcontextprotocol/sdk/shared/protocol.js\";\nimport type { AgentsOAuthProvider } from \"./do-oauth-client-provider\";\nimport { jsonSchema, type ToolSet } from \"ai\";\n\n/**\n * Utility class that aggregates multiple MCP clients into one\n */\nexport class MCPClientManager {\n public mcpConnections: Record<string, MCPClientConnection> = {};\n private callbackUrls: string[] = [];\n\n /**\n * @param name Name of the MCP client\n * @param version Version of the MCP Client\n * @param auth Auth paramters if being used to create a DurableObjectOAuthClientProvider\n */\n constructor(\n private name: string,\n private version: string\n ) {}\n\n /**\n * Connect to and register an MCP server\n *\n * @param transportConfig Transport config\n * @param clientConfig Client config\n * @param capabilities Client capabilities (i.e. if the client supports roots/sampling)\n */\n async connect(\n url: string,\n options: {\n // Allows you to reconnect to a server (in the case of a auth reconnect)\n // Doesn't handle session reconnection\n reconnect?: {\n id: string;\n oauthClientId?: string;\n oauthCode?: string;\n };\n // we're overriding authProvider here because we want to be able to access the auth URL\n transport?: SSEClientTransportOptions & {\n authProvider?: AgentsOAuthProvider;\n };\n client?: ConstructorParameters<typeof Client>[1];\n capabilities?: ClientCapabilities;\n } = {}\n ): Promise<{ id: string; authUrl: string | undefined }> {\n const id = options.reconnect?.id ?? crypto.randomUUID();\n\n if (!options.transport?.authProvider) {\n console.warn(\n \"No authProvider provided in the transport options. This client will only support unauthenticated remote MCP Servers\"\n );\n } else {\n options.transport.authProvider.serverId = id;\n }\n\n this.mcpConnections[id] = new MCPClientConnection(\n new URL(url),\n {\n name: this.name,\n version: this.version,\n },\n {\n transport: options.transport ?? {},\n client: options.client ?? {},\n capabilities: options.client ?? {},\n }\n );\n\n await this.mcpConnections[id].init(\n options.reconnect?.oauthCode,\n options.reconnect?.oauthClientId\n );\n\n const authUrl = options.transport?.authProvider?.authUrl;\n if (authUrl && options.transport?.authProvider?.redirectUrl) {\n this.callbackUrls.push(\n options.transport.authProvider.redirectUrl.toString()\n );\n }\n\n return {\n id,\n authUrl,\n };\n }\n\n isCallbackRequest(req: Request): boolean {\n return (\n req.method === \"GET\" &&\n !!this.callbackUrls.find((url) => {\n return req.url.startsWith(url);\n })\n );\n }\n\n async handleCallbackRequest(req: Request) {\n const url = new URL(req.url);\n const urlMatch = this.callbackUrls.find((url) => {\n return req.url.startsWith(url);\n });\n if (!urlMatch) {\n throw new Error(\n `No callback URI match found for the request url: ${req.url}. Was the request matched with \\`isCallbackRequest()\\`?`\n );\n }\n const code = url.searchParams.get(\"code\");\n const clientId = url.searchParams.get(\"state\");\n const urlParams = urlMatch.split(\"/\");\n const serverId = urlParams[urlParams.length - 1];\n if (!code) {\n throw new Error(\"Unauthorized: no code provided\");\n }\n if (!clientId) {\n throw new Error(\"Unauthorized: no state provided\");\n }\n\n if (this.mcpConnections[serverId] === undefined) {\n throw new Error(`Could not find serverId: ${serverId}`);\n }\n\n if (this.mcpConnections[serverId].connectionState !== \"authenticating\") {\n throw new Error(\n \"Failed to authenticate: the client isn't in the `authenticating` state\"\n );\n }\n\n const conn = this.mcpConnections[serverId];\n if (!conn.options.transport.authProvider) {\n throw new Error(\n \"Trying to finalize authentication for a server connection without an authProvider\"\n );\n }\n\n conn.options.transport.authProvider.clientId = clientId;\n conn.options.transport.authProvider.serverId = serverId;\n\n // reconnect to server with authorization\n const serverUrl = conn.url.toString();\n await this.connect(serverUrl, {\n reconnect: {\n id: serverId,\n oauthClientId: clientId,\n oauthCode: code,\n },\n ...conn.options,\n });\n\n if (this.mcpConnections[serverId].connectionState === \"authenticating\") {\n throw new Error(\"Failed to authenticate: client failed to initialize\");\n }\n\n return { serverId };\n }\n\n /**\n * @returns namespaced list of tools\n */\n listTools(): NamespacedData[\"tools\"] {\n return getNamespacedData(this.mcpConnections, \"tools\");\n }\n\n /**\n * @returns a set of tools that you can use with the AI SDK\n */\n unstable_getAITools(): ToolSet {\n return Object.fromEntries(\n getNamespacedData(this.mcpConnections, \"tools\").map((tool) => {\n return [\n tool.name,\n {\n parameters: jsonSchema(tool.inputSchema),\n description: tool.description,\n execute: async (args) => {\n const result = await this.callTool({\n name: tool.name,\n arguments: args,\n serverId: tool.serverId,\n });\n if (result.isError) {\n // @ts-expect-error TODO we should fix this\n throw new Error(result.content[0].text);\n }\n return result;\n },\n },\n ];\n })\n );\n }\n\n /**\n * @returns namespaced list of prompts\n */\n listPrompts(): NamespacedData[\"prompts\"] {\n return getNamespacedData(this.mcpConnections, \"prompts\");\n }\n\n /**\n * @returns namespaced list of tools\n */\n listResources(): NamespacedData[\"resources\"] {\n return getNamespacedData(this.mcpConnections, \"resources\");\n }\n\n /**\n * @returns namespaced list of resource templates\n */\n listResourceTemplates(): NamespacedData[\"resourceTemplates\"] {\n return getNamespacedData(this.mcpConnections, \"resourceTemplates\");\n }\n\n /**\n * Namespaced version of callTool\n */\n callTool(\n params: CallToolRequest[\"params\"] & { serverId: string },\n resultSchema?:\n | typeof CallToolResultSchema\n | typeof CompatibilityCallToolResultSchema,\n options?: RequestOptions\n ) {\n const unqualifiedName = params.name.replace(`${params.serverId}.`, \"\");\n return this.mcpConnections[params.serverId].client.callTool(\n {\n ...params,\n name: unqualifiedName,\n },\n resultSchema,\n options\n );\n }\n\n /**\n * Namespaced version of readResource\n */\n readResource(\n params: ReadResourceRequest[\"params\"] & { serverId: string },\n options: RequestOptions\n ) {\n return this.mcpConnections[params.serverId].client.readResource(\n params,\n options\n );\n }\n\n /**\n * Namespaced version of getPrompt\n */\n getPrompt(\n params: GetPromptRequest[\"params\"] & { serverId: string },\n options: RequestOptions\n ) {\n return this.mcpConnections[params.serverId].client.getPrompt(\n params,\n options\n );\n }\n}\n\ntype NamespacedData = {\n tools: (Tool & { serverId: string })[];\n prompts: (Prompt & { serverId: string })[];\n resources: (Resource & { serverId: string })[];\n resourceTemplates: (ResourceTemplate & { serverId: string })[];\n};\n\nexport function getNamespacedData<T extends keyof NamespacedData>(\n mcpClients: Record<string, MCPClientConnection>,\n type: T\n): NamespacedData[T] {\n const sets = Object.entries(mcpClients).map(([name, conn]) => {\n return { name, data: conn[type] };\n });\n\n const namespacedData = sets.flatMap(({ name: serverId, data }) => {\n return data.map((item) => {\n return {\n ...item,\n // we add a serverId so we can easily pull it out and send the tool call to the right server\n serverId,\n };\n });\n });\n\n return namespacedData as NamespacedData[T]; // Type assertion needed due to TS limitations with conditional return types\n}\n"],"mappings":"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","names":["url"]}
package/dist/index.d.ts CHANGED
@@ -1,6 +1,16 @@
1
1
  import { Server, Connection, PartyServerOptions } from "partyserver";
2
2
  export { Connection, ConnectionContext, WSMessage } from "partyserver";
3
3
  import { AsyncLocalStorage } from "node:async_hooks";
4
+ import { MCPClientManager } from "./mcp/client.js";
5
+ import "zod";
6
+ import "@modelcontextprotocol/sdk/types.js";
7
+ import "@modelcontextprotocol/sdk/client/index.js";
8
+ import "@modelcontextprotocol/sdk/client/sse.js";
9
+ import "./mcp/do-oauth-client-provider.js";
10
+ import "@modelcontextprotocol/sdk/client/auth.js";
11
+ import "@modelcontextprotocol/sdk/shared/auth.js";
12
+ import "@modelcontextprotocol/sdk/shared/protocol.js";
13
+ import "ai";
4
14
 
5
15
  /**
6
16
  * RPC request message from client
@@ -106,6 +116,7 @@ declare const unstable_context: AsyncLocalStorage<{
106
116
  */
107
117
  declare class Agent<Env, State = unknown> extends Server<Env> {
108
118
  #private;
119
+ mcp: MCPClientManager;
109
120
  /**
110
121
  * Initial state for the Agent
111
122
  * Override to provide default state values
package/dist/index.js CHANGED
@@ -6,7 +6,8 @@ import {
6
6
  routeAgentRequest,
7
7
  unstable_callable,
8
8
  unstable_context
9
- } from "./chunk-XG52S6YY.js";
9
+ } from "./chunk-AV3OMRR4.js";
10
+ import "./chunk-YZNSS675.js";
10
11
  import "./chunk-HMLY7DHA.js";
11
12
  export {
12
13
  Agent,
@@ -4,6 +4,7 @@ import { Client } from '@modelcontextprotocol/sdk/client/index.js';
4
4
  import { SSEClientTransportOptions } from '@modelcontextprotocol/sdk/client/sse.js';
5
5
  import { AgentsOAuthProvider } from './do-oauth-client-provider.js';
6
6
  import { RequestOptions } from '@modelcontextprotocol/sdk/shared/protocol.js';
7
+ import { ToolSet } from 'ai';
7
8
  import '@modelcontextprotocol/sdk/client/auth.js';
8
9
  import '@modelcontextprotocol/sdk/shared/auth.js';
9
10
 
@@ -59,10 +60,10 @@ declare class MCPClientConnection {
59
60
  }[]>;
60
61
  fetchResources(): Promise<{
61
62
  [x: string]: unknown;
62
- name: string;
63
63
  uri: string;
64
- description?: string | undefined;
64
+ name: string;
65
65
  mimeType?: string | undefined;
66
+ description?: string | undefined;
66
67
  }[]>;
67
68
  fetchPrompts(): Promise<{
68
69
  [x: string]: unknown;
@@ -79,8 +80,8 @@ declare class MCPClientConnection {
79
80
  [x: string]: unknown;
80
81
  name: string;
81
82
  uriTemplate: string;
82
- description?: string | undefined;
83
83
  mimeType?: string | undefined;
84
+ description?: string | undefined;
84
85
  }[]>;
85
86
  }
86
87
 
@@ -128,6 +129,10 @@ declare class MCPClientManager {
128
129
  * @returns namespaced list of tools
129
130
  */
130
131
  listTools(): NamespacedData["tools"];
132
+ /**
133
+ * @returns a set of tools that you can use with the AI SDK
134
+ */
135
+ unstable_getAITools(): ToolSet;
131
136
  /**
132
137
  * @returns namespaced list of prompts
133
138
  */