agents 0.0.0-b30ffda → 0.0.0-b57e1d9
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 +45 -3
- package/dist/ai-chat-agent.js +117 -55
- package/dist/ai-chat-agent.js.map +1 -1
- package/dist/ai-react.d.ts +13 -0
- package/dist/ai-react.js +24 -13
- package/dist/ai-react.js.map +1 -1
- package/dist/ai-types.d.ts +5 -0
- package/dist/chunk-BZXOAZUX.js +106 -0
- package/dist/chunk-BZXOAZUX.js.map +1 -0
- package/dist/{chunk-XG52S6YY.js → chunk-MXJNY43J.js} +330 -136
- package/dist/chunk-MXJNY43J.js.map +1 -0
- package/dist/chunk-OYJXQRRH.js +465 -0
- package/dist/chunk-OYJXQRRH.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 +120 -11
- package/dist/index.js +8 -6
- package/dist/mcp/client.d.ts +33 -13
- package/dist/mcp/client.js +3 -402
- package/dist/mcp/client.js.map +1 -1
- 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 +44 -5
- package/dist/mcp/index.js +591 -158
- 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 +20 -5
- package/src/index.ts +396 -54
- package/dist/chunk-HMLY7DHA.js +0 -16
- package/dist/chunk-XG52S6YY.js.map +0 -1
- /package/dist/{chunk-HMLY7DHA.js.map → serializable.js.map} +0 -0
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// src/client.ts
|
|
2
|
+
import {
|
|
3
|
+
PartySocket
|
|
4
|
+
} from "partysocket";
|
|
5
|
+
function camelCaseToKebabCase(str) {
|
|
6
|
+
if (str === str.toUpperCase() && str !== str.toLowerCase()) {
|
|
7
|
+
return str.toLowerCase().replace(/_/g, "-");
|
|
8
|
+
}
|
|
9
|
+
let kebabified = str.replace(
|
|
10
|
+
/[A-Z]/g,
|
|
11
|
+
(letter) => `-${letter.toLowerCase()}`
|
|
12
|
+
);
|
|
13
|
+
kebabified = kebabified.startsWith("-") ? kebabified.slice(1) : kebabified;
|
|
14
|
+
return kebabified.replace(/_/g, "-").replace(/-$/, "");
|
|
15
|
+
}
|
|
16
|
+
var AgentClient = class extends PartySocket {
|
|
17
|
+
constructor(options) {
|
|
18
|
+
const agentNamespace = camelCaseToKebabCase(options.agent);
|
|
19
|
+
super({
|
|
20
|
+
prefix: "agents",
|
|
21
|
+
party: agentNamespace,
|
|
22
|
+
room: options.name || "default",
|
|
23
|
+
...options
|
|
24
|
+
});
|
|
25
|
+
this._pendingCalls = /* @__PURE__ */ new Map();
|
|
26
|
+
this.agent = agentNamespace;
|
|
27
|
+
this.name = options.name || "default";
|
|
28
|
+
this.options = options;
|
|
29
|
+
this.addEventListener("message", (event) => {
|
|
30
|
+
if (typeof event.data === "string") {
|
|
31
|
+
let parsedMessage;
|
|
32
|
+
try {
|
|
33
|
+
parsedMessage = JSON.parse(event.data);
|
|
34
|
+
} catch (error) {
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
if (parsedMessage.type === "cf_agent_state") {
|
|
38
|
+
this.options.onStateUpdate?.(parsedMessage.state, "server");
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
if (parsedMessage.type === "rpc") {
|
|
42
|
+
const response = parsedMessage;
|
|
43
|
+
const pending = this._pendingCalls.get(response.id);
|
|
44
|
+
if (!pending) return;
|
|
45
|
+
if (!response.success) {
|
|
46
|
+
pending.reject(new Error(response.error));
|
|
47
|
+
this._pendingCalls.delete(response.id);
|
|
48
|
+
pending.stream?.onError?.(response.error);
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
if ("done" in response) {
|
|
52
|
+
if (response.done) {
|
|
53
|
+
pending.resolve(response.result);
|
|
54
|
+
this._pendingCalls.delete(response.id);
|
|
55
|
+
pending.stream?.onDone?.(response.result);
|
|
56
|
+
} else {
|
|
57
|
+
pending.stream?.onChunk?.(response.result);
|
|
58
|
+
}
|
|
59
|
+
} else {
|
|
60
|
+
pending.resolve(response.result);
|
|
61
|
+
this._pendingCalls.delete(response.id);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated Use agentFetch instead
|
|
69
|
+
*/
|
|
70
|
+
static fetch(_opts) {
|
|
71
|
+
throw new Error(
|
|
72
|
+
"AgentClient.fetch is not implemented, use agentFetch instead"
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
setState(state) {
|
|
76
|
+
this.send(JSON.stringify({ type: "cf_agent_state", state }));
|
|
77
|
+
this.options.onStateUpdate?.(state, "client");
|
|
78
|
+
}
|
|
79
|
+
async call(method, args = [], streamOptions) {
|
|
80
|
+
return new Promise((resolve, reject) => {
|
|
81
|
+
const id = Math.random().toString(36).slice(2);
|
|
82
|
+
this._pendingCalls.set(id, {
|
|
83
|
+
resolve: (value) => resolve(value),
|
|
84
|
+
reject,
|
|
85
|
+
stream: streamOptions,
|
|
86
|
+
type: null
|
|
87
|
+
});
|
|
88
|
+
const request = {
|
|
89
|
+
type: "rpc",
|
|
90
|
+
id,
|
|
91
|
+
method,
|
|
92
|
+
args
|
|
93
|
+
};
|
|
94
|
+
this.send(JSON.stringify(request));
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
function agentFetch(opts, init) {
|
|
99
|
+
const agentNamespace = camelCaseToKebabCase(opts.agent);
|
|
100
|
+
return PartySocket.fetch(
|
|
101
|
+
{
|
|
102
|
+
prefix: "agents",
|
|
103
|
+
party: agentNamespace,
|
|
104
|
+
room: opts.name || "default",
|
|
105
|
+
...opts
|
|
106
|
+
},
|
|
107
|
+
init
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export {
|
|
112
|
+
camelCaseToKebabCase,
|
|
113
|
+
AgentClient,
|
|
114
|
+
agentFetch
|
|
115
|
+
};
|
|
116
|
+
//# sourceMappingURL=chunk-VCSB47AK.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/client.ts"],"sourcesContent":["import {\n PartySocket,\n type PartySocketOptions,\n type PartyFetchOptions,\n} from \"partysocket\";\nimport type { RPCRequest, RPCResponse } from \"./\";\nimport type {\n SerializableReturnValue,\n SerializableValue,\n} from \"./serializable\";\n\n/**\n * Options for creating an AgentClient\n */\nexport type AgentClientOptions<State = unknown> = Omit<\n PartySocketOptions,\n \"party\" | \"room\"\n> & {\n /** Name of the agent to connect to */\n agent: string;\n /** Name of the specific Agent instance */\n name?: string;\n /** Called when the Agent's state is updated */\n onStateUpdate?: (state: State, source: \"server\" | \"client\") => void;\n};\n\n/**\n * Options for streaming RPC calls\n */\nexport type StreamOptions = {\n /** Called when a chunk of data is received */\n onChunk?: (chunk: unknown) => void;\n /** Called when the stream ends */\n onDone?: (finalChunk: unknown) => void;\n /** Called when an error occurs */\n onError?: (error: string) => void;\n};\n\n/**\n * Options for the agentFetch function\n */\nexport type AgentClientFetchOptions = Omit<\n PartyFetchOptions,\n \"party\" | \"room\"\n> & {\n /** Name of the agent to connect to */\n agent: string;\n /** Name of the specific Agent instance */\n name?: string;\n};\n\n/**\n * Convert a camelCase string to a kebab-case string\n * @param str The string to convert\n * @returns The kebab-case string\n */\nexport function camelCaseToKebabCase(str: string): string {\n // If string is all uppercase, convert to lowercase\n if (str === str.toUpperCase() && str !== str.toLowerCase()) {\n return str.toLowerCase().replace(/_/g, \"-\");\n }\n\n // Otherwise handle camelCase to kebab-case\n let kebabified = str.replace(\n /[A-Z]/g,\n (letter) => `-${letter.toLowerCase()}`\n );\n kebabified = kebabified.startsWith(\"-\") ? kebabified.slice(1) : kebabified;\n // Convert any remaining underscores to hyphens and remove trailing -'s\n return kebabified.replace(/_/g, \"-\").replace(/-$/, \"\");\n}\n\n/**\n * WebSocket client for connecting to an Agent\n */\nexport class AgentClient<State = unknown> extends PartySocket {\n /**\n * @deprecated Use agentFetch instead\n */\n static fetch(_opts: PartyFetchOptions): Promise<Response> {\n throw new Error(\n \"AgentClient.fetch is not implemented, use agentFetch instead\"\n );\n }\n agent: string;\n name: string;\n private options: AgentClientOptions<State>;\n private _pendingCalls = new Map<\n string,\n {\n resolve: (value: unknown) => void;\n reject: (error: Error) => void;\n stream?: StreamOptions;\n type?: unknown;\n }\n >();\n\n constructor(options: AgentClientOptions<State>) {\n const agentNamespace = camelCaseToKebabCase(options.agent);\n super({\n prefix: \"agents\",\n party: agentNamespace,\n room: options.name || \"default\",\n ...options,\n });\n this.agent = agentNamespace;\n this.name = options.name || \"default\";\n this.options = options;\n\n this.addEventListener(\"message\", (event) => {\n if (typeof event.data === \"string\") {\n let parsedMessage: Record<string, unknown>;\n try {\n parsedMessage = JSON.parse(event.data);\n } catch (error) {\n // silently ignore invalid messages for now\n // TODO: log errors with log levels\n return;\n }\n if (parsedMessage.type === \"cf_agent_state\") {\n this.options.onStateUpdate?.(parsedMessage.state as State, \"server\");\n return;\n }\n if (parsedMessage.type === \"rpc\") {\n const response = parsedMessage as RPCResponse;\n const pending = this._pendingCalls.get(response.id);\n if (!pending) return;\n\n if (!response.success) {\n pending.reject(new Error(response.error));\n this._pendingCalls.delete(response.id);\n pending.stream?.onError?.(response.error);\n return;\n }\n\n // Handle streaming responses\n if (\"done\" in response) {\n if (response.done) {\n pending.resolve(response.result);\n this._pendingCalls.delete(response.id);\n pending.stream?.onDone?.(response.result);\n } else {\n pending.stream?.onChunk?.(response.result);\n }\n } else {\n // Non-streaming response\n pending.resolve(response.result);\n this._pendingCalls.delete(response.id);\n }\n }\n }\n });\n }\n\n setState(state: State) {\n this.send(JSON.stringify({ type: \"cf_agent_state\", state }));\n this.options.onStateUpdate?.(state, \"client\");\n }\n\n /**\n * Call a method on the Agent\n * @param method Name of the method to call\n * @param args Arguments to pass to the method\n * @param streamOptions Options for handling streaming responses\n * @returns Promise that resolves with the method's return value\n */\n call<T extends SerializableReturnValue>(\n method: string,\n args?: SerializableValue[],\n streamOptions?: StreamOptions\n ): Promise<T>;\n call<T = unknown>(\n method: string,\n args?: unknown[],\n streamOptions?: StreamOptions\n ): Promise<T>;\n async call<T>(\n method: string,\n args: unknown[] = [],\n streamOptions?: StreamOptions\n ): Promise<T> {\n return new Promise<T>((resolve, reject) => {\n const id = Math.random().toString(36).slice(2);\n this._pendingCalls.set(id, {\n resolve: (value: unknown) => resolve(value as T),\n reject,\n stream: streamOptions,\n type: null as T,\n });\n\n const request: RPCRequest = {\n type: \"rpc\",\n id,\n method,\n args,\n };\n\n this.send(JSON.stringify(request));\n });\n }\n}\n\n/**\n * Make an HTTP request to an Agent\n * @param opts Connection options\n * @param init Request initialization options\n * @returns Promise resolving to a Response\n */\nexport function agentFetch(opts: AgentClientFetchOptions, init?: RequestInit) {\n const agentNamespace = camelCaseToKebabCase(opts.agent);\n\n return PartySocket.fetch(\n {\n prefix: \"agents\",\n party: agentNamespace,\n room: opts.name || \"default\",\n ...opts,\n },\n init\n );\n}\n"],"mappings":"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","names":[]}
|
package/dist/client.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
PartyFetchOptions,
|
|
4
4
|
PartySocket,
|
|
5
5
|
} from "partysocket";
|
|
6
|
+
import { SerializableReturnValue, SerializableValue } from "./serializable.js";
|
|
6
7
|
|
|
7
8
|
/**
|
|
8
9
|
* Options for creating an AgentClient
|
|
@@ -38,17 +39,24 @@ type AgentClientFetchOptions = Omit<PartyFetchOptions, "party" | "room"> & {
|
|
|
38
39
|
/** Name of the specific Agent instance */
|
|
39
40
|
name?: string;
|
|
40
41
|
};
|
|
42
|
+
/**
|
|
43
|
+
* Convert a camelCase string to a kebab-case string
|
|
44
|
+
* @param str The string to convert
|
|
45
|
+
* @returns The kebab-case string
|
|
46
|
+
*/
|
|
47
|
+
declare function camelCaseToKebabCase(str: string): string;
|
|
41
48
|
/**
|
|
42
49
|
* WebSocket client for connecting to an Agent
|
|
43
50
|
*/
|
|
44
51
|
declare class AgentClient<State = unknown> extends PartySocket {
|
|
45
|
-
#private;
|
|
46
52
|
/**
|
|
47
53
|
* @deprecated Use agentFetch instead
|
|
48
54
|
*/
|
|
49
55
|
static fetch(_opts: PartyFetchOptions): Promise<Response>;
|
|
50
56
|
agent: string;
|
|
51
57
|
name: string;
|
|
58
|
+
private options;
|
|
59
|
+
private _pendingCalls;
|
|
52
60
|
constructor(options: AgentClientOptions<State>);
|
|
53
61
|
setState(state: State): void;
|
|
54
62
|
/**
|
|
@@ -58,6 +66,11 @@ declare class AgentClient<State = unknown> extends PartySocket {
|
|
|
58
66
|
* @param streamOptions Options for handling streaming responses
|
|
59
67
|
* @returns Promise that resolves with the method's return value
|
|
60
68
|
*/
|
|
69
|
+
call<T extends SerializableReturnValue>(
|
|
70
|
+
method: string,
|
|
71
|
+
args?: SerializableValue[],
|
|
72
|
+
streamOptions?: StreamOptions
|
|
73
|
+
): Promise<T>;
|
|
61
74
|
call<T = unknown>(
|
|
62
75
|
method: string,
|
|
63
76
|
args?: unknown[],
|
|
@@ -81,4 +94,5 @@ export {
|
|
|
81
94
|
type AgentClientOptions,
|
|
82
95
|
type StreamOptions,
|
|
83
96
|
agentFetch,
|
|
97
|
+
camelCaseToKebabCase,
|
|
84
98
|
};
|
package/dist/client.js
CHANGED
|
@@ -1,131 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
|
|
7
|
-
// src/client.ts
|
|
8
|
-
import {
|
|
9
|
-
PartySocket
|
|
10
|
-
} from "partysocket";
|
|
11
|
-
function camelCaseToKebabCase(str) {
|
|
12
|
-
if (str === str.toUpperCase() && str !== str.toLowerCase()) {
|
|
13
|
-
return str.toLowerCase().replace(/_/g, "-");
|
|
14
|
-
}
|
|
15
|
-
let kebabified = str.replace(
|
|
16
|
-
/[A-Z]/g,
|
|
17
|
-
(letter) => `-${letter.toLowerCase()}`
|
|
18
|
-
);
|
|
19
|
-
kebabified = kebabified.startsWith("-") ? kebabified.slice(1) : kebabified;
|
|
20
|
-
return kebabified.replace(/_/g, "-").replace(/-$/, "");
|
|
21
|
-
}
|
|
22
|
-
var _options, _pendingCalls;
|
|
23
|
-
var AgentClient = class extends PartySocket {
|
|
24
|
-
constructor(options) {
|
|
25
|
-
const agentNamespace = camelCaseToKebabCase(options.agent);
|
|
26
|
-
super({
|
|
27
|
-
prefix: "agents",
|
|
28
|
-
party: agentNamespace,
|
|
29
|
-
room: options.name || "default",
|
|
30
|
-
...options
|
|
31
|
-
});
|
|
32
|
-
__privateAdd(this, _options);
|
|
33
|
-
__privateAdd(this, _pendingCalls, /* @__PURE__ */ new Map());
|
|
34
|
-
this.agent = agentNamespace;
|
|
35
|
-
this.name = options.name || "default";
|
|
36
|
-
__privateSet(this, _options, options);
|
|
37
|
-
this.addEventListener("message", (event) => {
|
|
38
|
-
if (typeof event.data === "string") {
|
|
39
|
-
let parsedMessage;
|
|
40
|
-
try {
|
|
41
|
-
parsedMessage = JSON.parse(event.data);
|
|
42
|
-
} catch (error) {
|
|
43
|
-
return;
|
|
44
|
-
}
|
|
45
|
-
if (parsedMessage.type === "cf_agent_state") {
|
|
46
|
-
__privateGet(this, _options).onStateUpdate?.(parsedMessage.state, "server");
|
|
47
|
-
return;
|
|
48
|
-
}
|
|
49
|
-
if (parsedMessage.type === "rpc") {
|
|
50
|
-
const response = parsedMessage;
|
|
51
|
-
const pending = __privateGet(this, _pendingCalls).get(response.id);
|
|
52
|
-
if (!pending) return;
|
|
53
|
-
if (!response.success) {
|
|
54
|
-
pending.reject(new Error(response.error));
|
|
55
|
-
__privateGet(this, _pendingCalls).delete(response.id);
|
|
56
|
-
pending.stream?.onError?.(response.error);
|
|
57
|
-
return;
|
|
58
|
-
}
|
|
59
|
-
if ("done" in response) {
|
|
60
|
-
if (response.done) {
|
|
61
|
-
pending.resolve(response.result);
|
|
62
|
-
__privateGet(this, _pendingCalls).delete(response.id);
|
|
63
|
-
pending.stream?.onDone?.(response.result);
|
|
64
|
-
} else {
|
|
65
|
-
pending.stream?.onChunk?.(response.result);
|
|
66
|
-
}
|
|
67
|
-
} else {
|
|
68
|
-
pending.resolve(response.result);
|
|
69
|
-
__privateGet(this, _pendingCalls).delete(response.id);
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
});
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* @deprecated Use agentFetch instead
|
|
77
|
-
*/
|
|
78
|
-
static fetch(_opts) {
|
|
79
|
-
throw new Error(
|
|
80
|
-
"AgentClient.fetch is not implemented, use agentFetch instead"
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
setState(state) {
|
|
84
|
-
this.send(JSON.stringify({ type: "cf_agent_state", state }));
|
|
85
|
-
__privateGet(this, _options).onStateUpdate?.(state, "client");
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* Call a method on the Agent
|
|
89
|
-
* @param method Name of the method to call
|
|
90
|
-
* @param args Arguments to pass to the method
|
|
91
|
-
* @param streamOptions Options for handling streaming responses
|
|
92
|
-
* @returns Promise that resolves with the method's return value
|
|
93
|
-
*/
|
|
94
|
-
async call(method, args = [], streamOptions) {
|
|
95
|
-
return new Promise((resolve, reject) => {
|
|
96
|
-
const id = Math.random().toString(36).slice(2);
|
|
97
|
-
__privateGet(this, _pendingCalls).set(id, {
|
|
98
|
-
resolve: (value) => resolve(value),
|
|
99
|
-
reject,
|
|
100
|
-
stream: streamOptions,
|
|
101
|
-
type: null
|
|
102
|
-
});
|
|
103
|
-
const request = {
|
|
104
|
-
type: "rpc",
|
|
105
|
-
id,
|
|
106
|
-
method,
|
|
107
|
-
args
|
|
108
|
-
};
|
|
109
|
-
this.send(JSON.stringify(request));
|
|
110
|
-
});
|
|
111
|
-
}
|
|
112
|
-
};
|
|
113
|
-
_options = new WeakMap();
|
|
114
|
-
_pendingCalls = new WeakMap();
|
|
115
|
-
function agentFetch(opts, init) {
|
|
116
|
-
const agentNamespace = camelCaseToKebabCase(opts.agent);
|
|
117
|
-
return PartySocket.fetch(
|
|
118
|
-
{
|
|
119
|
-
prefix: "agents",
|
|
120
|
-
party: agentNamespace,
|
|
121
|
-
room: opts.name || "default",
|
|
122
|
-
...opts
|
|
123
|
-
},
|
|
124
|
-
init
|
|
125
|
-
);
|
|
126
|
-
}
|
|
2
|
+
AgentClient,
|
|
3
|
+
agentFetch,
|
|
4
|
+
camelCaseToKebabCase
|
|
5
|
+
} from "./chunk-VCSB47AK.js";
|
|
127
6
|
export {
|
|
128
7
|
AgentClient,
|
|
129
|
-
agentFetch
|
|
8
|
+
agentFetch,
|
|
9
|
+
camelCaseToKebabCase
|
|
130
10
|
};
|
|
131
11
|
//# sourceMappingURL=client.js.map
|
package/dist/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
import { Server, Connection, PartyServerOptions } from "partyserver";
|
|
2
2
|
export { Connection, ConnectionContext, WSMessage } from "partyserver";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
ServerCapabilities,
|
|
5
|
+
Tool,
|
|
6
|
+
Prompt,
|
|
7
|
+
Resource,
|
|
8
|
+
} from "@modelcontextprotocol/sdk/types.js";
|
|
9
|
+
import { MCPClientManager } from "./mcp/client.js";
|
|
10
|
+
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
11
|
+
import "zod";
|
|
12
|
+
import "@modelcontextprotocol/sdk/client/sse.js";
|
|
13
|
+
import "./mcp/do-oauth-client-provider.js";
|
|
14
|
+
import "@modelcontextprotocol/sdk/client/auth.js";
|
|
15
|
+
import "@modelcontextprotocol/sdk/shared/auth.js";
|
|
16
|
+
import "@modelcontextprotocol/sdk/shared/protocol.js";
|
|
17
|
+
import "ai";
|
|
4
18
|
|
|
5
19
|
/**
|
|
6
20
|
* RPC request message from client
|
|
@@ -94,18 +108,45 @@ type Schedule<T = string> = {
|
|
|
94
108
|
cron: string;
|
|
95
109
|
}
|
|
96
110
|
);
|
|
97
|
-
|
|
98
|
-
|
|
111
|
+
/**
|
|
112
|
+
* MCP Server state update message from server -> Client
|
|
113
|
+
*/
|
|
114
|
+
type MCPServerMessage = {
|
|
115
|
+
type: "cf_agent_mcp_servers";
|
|
116
|
+
mcp: MCPServersState;
|
|
117
|
+
};
|
|
118
|
+
type MCPServersState = {
|
|
119
|
+
servers: {
|
|
120
|
+
[id: string]: MCPServer;
|
|
121
|
+
};
|
|
122
|
+
tools: Tool[];
|
|
123
|
+
prompts: Prompt[];
|
|
124
|
+
resources: Resource[];
|
|
125
|
+
};
|
|
126
|
+
type MCPServer = {
|
|
127
|
+
name: string;
|
|
128
|
+
server_url: string;
|
|
129
|
+
auth_url: string | null;
|
|
130
|
+
state: "authenticating" | "connecting" | "ready" | "discovering" | "failed";
|
|
131
|
+
instructions: string | null;
|
|
132
|
+
capabilities: ServerCapabilities | null;
|
|
133
|
+
};
|
|
134
|
+
declare function getCurrentAgent<
|
|
135
|
+
T extends Agent<unknown, unknown> = Agent<unknown, unknown>,
|
|
136
|
+
>(): {
|
|
137
|
+
agent: T | undefined;
|
|
99
138
|
connection: Connection | undefined;
|
|
100
|
-
request: Request | undefined;
|
|
101
|
-
}
|
|
139
|
+
request: Request<unknown, CfProperties<unknown>> | undefined;
|
|
140
|
+
};
|
|
102
141
|
/**
|
|
103
142
|
* Base class for creating Agent implementations
|
|
104
143
|
* @template Env Environment type containing bindings
|
|
105
144
|
* @template State State type to store within the Agent
|
|
106
145
|
*/
|
|
107
146
|
declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
108
|
-
|
|
147
|
+
private _state;
|
|
148
|
+
private _ParentClass;
|
|
149
|
+
mcp: MCPClientManager;
|
|
109
150
|
/**
|
|
110
151
|
* Initial state for the Agent
|
|
111
152
|
* Override to provide default state values
|
|
@@ -134,6 +175,7 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
134
175
|
...values: (string | number | boolean | null)[]
|
|
135
176
|
): T[];
|
|
136
177
|
constructor(ctx: AgentContext, env: Env);
|
|
178
|
+
private _setStateInternal;
|
|
137
179
|
/**
|
|
138
180
|
* Update the Agent's state
|
|
139
181
|
* @param state New state to set
|
|
@@ -150,6 +192,7 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
150
192
|
* @param email Email message to process
|
|
151
193
|
*/
|
|
152
194
|
onEmail(email: ForwardableEmailMessage): Promise<void>;
|
|
195
|
+
private _tryCatch;
|
|
153
196
|
onError(connection: Connection, error: unknown): void | Promise<void>;
|
|
154
197
|
onError(error: unknown): void | Promise<void>;
|
|
155
198
|
/**
|
|
@@ -196,15 +239,76 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
196
239
|
* @returns true if the task was cancelled, false otherwise
|
|
197
240
|
*/
|
|
198
241
|
cancelSchedule(id: string): Promise<boolean>;
|
|
242
|
+
private _scheduleNextAlarm;
|
|
199
243
|
/**
|
|
200
|
-
* Method called when an alarm fires
|
|
201
|
-
* Executes any scheduled tasks that are due
|
|
244
|
+
* Method called when an alarm fires.
|
|
245
|
+
* Executes any scheduled tasks that are due.
|
|
246
|
+
*
|
|
247
|
+
* @remarks
|
|
248
|
+
* To schedule a task, please use the `this.schedule` method instead.
|
|
249
|
+
* See {@link https://developers.cloudflare.com/agents/api-reference/schedule-tasks/}
|
|
202
250
|
*/
|
|
203
|
-
alarm()
|
|
251
|
+
readonly alarm: () => Promise<void>;
|
|
204
252
|
/**
|
|
205
253
|
* Destroy the Agent, removing all state and scheduled tasks
|
|
206
254
|
*/
|
|
207
255
|
destroy(): Promise<void>;
|
|
256
|
+
/**
|
|
257
|
+
* Get all methods marked as callable on this Agent
|
|
258
|
+
* @returns A map of method names to their metadata
|
|
259
|
+
*/
|
|
260
|
+
private _isCallable;
|
|
261
|
+
/**
|
|
262
|
+
* Connect to a new MCP Server
|
|
263
|
+
*
|
|
264
|
+
* @param url MCP Server SSE URL
|
|
265
|
+
* @param callbackHost Base host for the agent, used for the redirect URI.
|
|
266
|
+
* @param agentsPrefix agents routing prefix if not using `agents`
|
|
267
|
+
* @param options MCP client and transport (header) options
|
|
268
|
+
* @returns authUrl
|
|
269
|
+
*/
|
|
270
|
+
addMcpServer(
|
|
271
|
+
serverName: string,
|
|
272
|
+
url: string,
|
|
273
|
+
callbackHost: string,
|
|
274
|
+
agentsPrefix?: string,
|
|
275
|
+
options?: {
|
|
276
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
277
|
+
transport?: {
|
|
278
|
+
headers: HeadersInit;
|
|
279
|
+
};
|
|
280
|
+
}
|
|
281
|
+
): Promise<{
|
|
282
|
+
id: string;
|
|
283
|
+
authUrl: string | undefined;
|
|
284
|
+
}>;
|
|
285
|
+
_connectToMcpServerInternal(
|
|
286
|
+
serverName: string,
|
|
287
|
+
url: string,
|
|
288
|
+
callbackUrl: string,
|
|
289
|
+
options?: {
|
|
290
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
291
|
+
/**
|
|
292
|
+
* We don't expose the normal set of transport options because:
|
|
293
|
+
* 1) we can't serialize things like the auth provider or a fetch function into the DB for reconnection purposes
|
|
294
|
+
* 2) We probably want these options to be agnostic to the transport type (SSE vs Streamable)
|
|
295
|
+
*
|
|
296
|
+
* 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).
|
|
297
|
+
*/
|
|
298
|
+
transport?: {
|
|
299
|
+
headers?: HeadersInit;
|
|
300
|
+
};
|
|
301
|
+
},
|
|
302
|
+
reconnect?: {
|
|
303
|
+
id: string;
|
|
304
|
+
oauthClientId?: string;
|
|
305
|
+
}
|
|
306
|
+
): Promise<{
|
|
307
|
+
id: string;
|
|
308
|
+
authUrl: string | undefined;
|
|
309
|
+
}>;
|
|
310
|
+
removeMcpServer(id: string): Promise<void>;
|
|
311
|
+
getMcpServers(): MCPServersState;
|
|
208
312
|
}
|
|
209
313
|
/**
|
|
210
314
|
* Namespace for creating Agent instances
|
|
@@ -269,7 +373,9 @@ declare function getAgentByName<Env, T extends Agent<Env>>(
|
|
|
269
373
|
* A wrapper for streaming responses in callable methods
|
|
270
374
|
*/
|
|
271
375
|
declare class StreamingResponse {
|
|
272
|
-
|
|
376
|
+
private _connection;
|
|
377
|
+
private _id;
|
|
378
|
+
private _closed;
|
|
273
379
|
constructor(connection: Connection, id: string);
|
|
274
380
|
/**
|
|
275
381
|
* Send a chunk of data to the client
|
|
@@ -289,14 +395,17 @@ export {
|
|
|
289
395
|
type AgentNamespace,
|
|
290
396
|
type AgentOptions,
|
|
291
397
|
type CallableMetadata,
|
|
398
|
+
type MCPServer,
|
|
399
|
+
type MCPServerMessage,
|
|
400
|
+
type MCPServersState,
|
|
292
401
|
type RPCRequest,
|
|
293
402
|
type RPCResponse,
|
|
294
403
|
type Schedule,
|
|
295
404
|
type StateUpdateMessage,
|
|
296
405
|
StreamingResponse,
|
|
297
406
|
getAgentByName,
|
|
407
|
+
getCurrentAgent,
|
|
298
408
|
routeAgentEmail,
|
|
299
409
|
routeAgentRequest,
|
|
300
410
|
unstable_callable,
|
|
301
|
-
unstable_context,
|
|
302
411
|
};
|
package/dist/index.js
CHANGED
|
@@ -2,19 +2,21 @@ import {
|
|
|
2
2
|
Agent,
|
|
3
3
|
StreamingResponse,
|
|
4
4
|
getAgentByName,
|
|
5
|
+
getCurrentAgent,
|
|
5
6
|
routeAgentEmail,
|
|
6
7
|
routeAgentRequest,
|
|
7
|
-
unstable_callable
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import "./chunk-
|
|
8
|
+
unstable_callable
|
|
9
|
+
} from "./chunk-MXJNY43J.js";
|
|
10
|
+
import "./chunk-OYJXQRRH.js";
|
|
11
|
+
import "./chunk-BZXOAZUX.js";
|
|
12
|
+
import "./chunk-VCSB47AK.js";
|
|
11
13
|
export {
|
|
12
14
|
Agent,
|
|
13
15
|
StreamingResponse,
|
|
14
16
|
getAgentByName,
|
|
17
|
+
getCurrentAgent,
|
|
15
18
|
routeAgentEmail,
|
|
16
19
|
routeAgentRequest,
|
|
17
|
-
unstable_callable
|
|
18
|
-
unstable_context
|
|
20
|
+
unstable_callable
|
|
19
21
|
};
|
|
20
22
|
//# sourceMappingURL=index.js.map
|