agents 0.0.0-3471713 → 0.0.0-352d62c
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/README.md +131 -25
- package/dist/ai-chat-agent.d.ts +54 -4
- package/dist/ai-chat-agent.js +182 -86
- package/dist/ai-chat-agent.js.map +1 -1
- package/dist/ai-react.d.ts +22 -5
- package/dist/ai-react.js +54 -45
- package/dist/ai-react.js.map +1 -1
- package/dist/ai-types.d.ts +31 -8
- package/dist/ai-types.js +6 -0
- package/dist/chunk-EEKLJYON.js +17 -0
- package/dist/chunk-EEKLJYON.js.map +1 -0
- package/dist/chunk-EM3J4KV7.js +598 -0
- package/dist/chunk-EM3J4KV7.js.map +1 -0
- package/dist/chunk-ID62XSAS.js +1290 -0
- package/dist/chunk-ID62XSAS.js.map +1 -0
- package/dist/chunk-PVQZBKN7.js +106 -0
- package/dist/chunk-PVQZBKN7.js.map +1 -0
- package/dist/chunk-QEVM4BVL.js +116 -0
- package/dist/chunk-QEVM4BVL.js.map +1 -0
- package/dist/client-DgyzBU_8.d.ts +4601 -0
- package/dist/client.d.ts +16 -2
- package/dist/client.js +7 -126
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +266 -26
- package/dist/index.js +15 -8
- package/dist/mcp/client.d.ts +11 -675
- package/dist/mcp/client.js +3 -262
- package/dist/mcp/client.js.map +1 -1
- package/dist/mcp/do-oauth-client-provider.d.ts +41 -0
- package/dist/mcp/do-oauth-client-provider.js +7 -0
- package/dist/mcp/index.d.ts +73 -6
- package/dist/mcp/index.js +792 -179
- package/dist/mcp/index.js.map +1 -1
- package/dist/observability/index.d.ts +46 -0
- package/dist/observability/index.js +11 -0
- package/dist/observability/index.js.map +1 -0
- package/dist/react.d.ts +89 -5
- package/dist/react.js +40 -26
- package/dist/react.js.map +1 -1
- package/dist/schedule.d.ts +6 -6
- package/dist/schedule.js +4 -6
- package/dist/schedule.js.map +1 -1
- package/dist/serializable.d.ts +32 -0
- package/dist/serializable.js +1 -0
- package/dist/serializable.js.map +1 -0
- package/package.json +84 -51
- package/src/index.ts +1151 -149
- package/dist/chunk-HMLY7DHA.js +0 -16
- package/dist/chunk-YMUU7QHV.js +0 -595
- package/dist/chunk-YMUU7QHV.js.map +0 -1
- /package/dist/{chunk-HMLY7DHA.js.map → mcp/do-oauth-client-provider.js.map} +0 -0
package/dist/client.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PartySocketOptions,
|
|
3
3
|
PartyFetchOptions,
|
|
4
|
-
PartySocket
|
|
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,12 @@
|
|
|
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-QEVM4BVL.js";
|
|
6
|
+
import "./chunk-EEKLJYON.js";
|
|
127
7
|
export {
|
|
128
8
|
AgentClient,
|
|
129
|
-
agentFetch
|
|
9
|
+
agentFetch,
|
|
10
|
+
camelCaseToKebabCase
|
|
130
11
|
};
|
|
131
12
|
//# 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,7 +1,24 @@
|
|
|
1
|
+
import { env } from "cloudflare:workers";
|
|
2
|
+
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
3
|
+
import {
|
|
4
|
+
ServerCapabilities,
|
|
5
|
+
Tool,
|
|
6
|
+
Prompt,
|
|
7
|
+
Resource
|
|
8
|
+
} from "@modelcontextprotocol/sdk/types.js";
|
|
1
9
|
import { Server, Connection, PartyServerOptions } from "partyserver";
|
|
2
10
|
export { Connection, ConnectionContext, WSMessage } from "partyserver";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
11
|
+
import { M as MCPClientManager } from "./client-DgyzBU_8.js";
|
|
12
|
+
import { Observability } from "./observability/index.js";
|
|
13
|
+
import { MessageType } from "./ai-types.js";
|
|
14
|
+
import "zod";
|
|
15
|
+
import "@modelcontextprotocol/sdk/shared/protocol.js";
|
|
16
|
+
import "ai";
|
|
17
|
+
import "@modelcontextprotocol/sdk/client/sse.js";
|
|
18
|
+
import "@modelcontextprotocol/sdk/client/streamableHttp.js";
|
|
19
|
+
import "./mcp/do-oauth-client-provider.js";
|
|
20
|
+
import "@modelcontextprotocol/sdk/client/auth.js";
|
|
21
|
+
import "@modelcontextprotocol/sdk/shared/auth.js";
|
|
5
22
|
|
|
6
23
|
/**
|
|
7
24
|
* RPC request message from client
|
|
@@ -16,14 +33,14 @@ type RPCRequest = {
|
|
|
16
33
|
* State update message from client
|
|
17
34
|
*/
|
|
18
35
|
type StateUpdateMessage = {
|
|
19
|
-
type:
|
|
36
|
+
type: MessageType.CF_AGENT_STATE;
|
|
20
37
|
state: unknown;
|
|
21
38
|
};
|
|
22
39
|
/**
|
|
23
40
|
* RPC response message to client
|
|
24
41
|
*/
|
|
25
42
|
type RPCResponse = {
|
|
26
|
-
type:
|
|
43
|
+
type: MessageType.RPC;
|
|
27
44
|
id: string;
|
|
28
45
|
} & (
|
|
29
46
|
| {
|
|
@@ -60,10 +77,12 @@ declare function unstable_callable(
|
|
|
60
77
|
target: (this: This, ...args: Args) => Return,
|
|
61
78
|
context: ClassMethodDecoratorContext
|
|
62
79
|
) => (this: This, ...args: Args) => Return;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
80
|
+
type QueueItem<T = string> = {
|
|
81
|
+
id: string;
|
|
82
|
+
payload: T;
|
|
83
|
+
callback: keyof Agent<unknown>;
|
|
84
|
+
created_at: number;
|
|
85
|
+
};
|
|
67
86
|
/**
|
|
68
87
|
* Represents a scheduled task within an Agent
|
|
69
88
|
* @template T Type of the payload data
|
|
@@ -99,18 +118,46 @@ type Schedule<T = string> = {
|
|
|
99
118
|
cron: string;
|
|
100
119
|
}
|
|
101
120
|
);
|
|
102
|
-
|
|
103
|
-
|
|
121
|
+
/**
|
|
122
|
+
* MCP Server state update message from server -> Client
|
|
123
|
+
*/
|
|
124
|
+
type MCPServerMessage = {
|
|
125
|
+
type: MessageType.CF_AGENT_MCP_SERVERS;
|
|
126
|
+
mcp: MCPServersState;
|
|
127
|
+
};
|
|
128
|
+
type MCPServersState = {
|
|
129
|
+
servers: {
|
|
130
|
+
[id: string]: MCPServer;
|
|
131
|
+
};
|
|
132
|
+
tools: Tool[];
|
|
133
|
+
prompts: Prompt[];
|
|
134
|
+
resources: Resource[];
|
|
135
|
+
};
|
|
136
|
+
type MCPServer = {
|
|
137
|
+
name: string;
|
|
138
|
+
server_url: string;
|
|
139
|
+
auth_url: string | null;
|
|
140
|
+
state: "authenticating" | "connecting" | "ready" | "discovering" | "failed";
|
|
141
|
+
instructions: string | null;
|
|
142
|
+
capabilities: ServerCapabilities | null;
|
|
143
|
+
};
|
|
144
|
+
declare function getCurrentAgent<
|
|
145
|
+
T extends Agent<unknown, unknown> = Agent<unknown, unknown>
|
|
146
|
+
>(): {
|
|
147
|
+
agent: T | undefined;
|
|
104
148
|
connection: Connection | undefined;
|
|
105
149
|
request: Request | undefined;
|
|
106
|
-
|
|
150
|
+
email: AgentEmail | undefined;
|
|
151
|
+
};
|
|
107
152
|
/**
|
|
108
153
|
* Base class for creating Agent implementations
|
|
109
154
|
* @template Env Environment type containing bindings
|
|
110
155
|
* @template State State type to store within the Agent
|
|
111
156
|
*/
|
|
112
|
-
declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
113
|
-
|
|
157
|
+
declare class Agent<Env = typeof env, State = unknown> extends Server<Env> {
|
|
158
|
+
private _state;
|
|
159
|
+
private _ParentClass;
|
|
160
|
+
mcp: MCPClientManager;
|
|
114
161
|
/**
|
|
115
162
|
* Initial state for the Agent
|
|
116
163
|
* Override to provide default state values
|
|
@@ -127,6 +174,10 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
127
174
|
/** Whether the Agent should hibernate when inactive */
|
|
128
175
|
hibernate: boolean;
|
|
129
176
|
};
|
|
177
|
+
/**
|
|
178
|
+
* The observability implementation to use for the Agent
|
|
179
|
+
*/
|
|
180
|
+
observability?: Observability;
|
|
130
181
|
/**
|
|
131
182
|
* Execute SQL queries against the Agent's database
|
|
132
183
|
* @template T Type of the returned rows
|
|
@@ -139,6 +190,7 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
139
190
|
...values: (string | number | boolean | null)[]
|
|
140
191
|
): T[];
|
|
141
192
|
constructor(ctx: AgentContext, env: Env);
|
|
193
|
+
private _setStateInternal;
|
|
142
194
|
/**
|
|
143
195
|
* Update the Agent's state
|
|
144
196
|
* @param state New state to set
|
|
@@ -151,16 +203,75 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
151
203
|
*/
|
|
152
204
|
onStateUpdate(state: State | undefined, source: Connection | "server"): void;
|
|
153
205
|
/**
|
|
154
|
-
* Called when the Agent receives an email
|
|
206
|
+
* Called when the Agent receives an email via routeAgentEmail()
|
|
207
|
+
* Override this method to handle incoming emails
|
|
155
208
|
* @param email Email message to process
|
|
156
209
|
*/
|
|
157
|
-
|
|
210
|
+
_onEmail(email: AgentEmail): Promise<void>;
|
|
211
|
+
/**
|
|
212
|
+
* Reply to an email
|
|
213
|
+
* @param email The email to reply to
|
|
214
|
+
* @param options Options for the reply
|
|
215
|
+
* @returns void
|
|
216
|
+
*/
|
|
217
|
+
replyToEmail(
|
|
218
|
+
email: AgentEmail,
|
|
219
|
+
options: {
|
|
220
|
+
fromName: string;
|
|
221
|
+
subject?: string | undefined;
|
|
222
|
+
body: string;
|
|
223
|
+
contentType?: string;
|
|
224
|
+
headers?: Record<string, string>;
|
|
225
|
+
}
|
|
226
|
+
): Promise<void>;
|
|
227
|
+
private _tryCatch;
|
|
228
|
+
/**
|
|
229
|
+
* Automatically wrap custom methods with agent context
|
|
230
|
+
* This ensures getCurrentAgent() works in all custom methods without decorators
|
|
231
|
+
*/
|
|
232
|
+
private _autoWrapCustomMethods;
|
|
158
233
|
onError(connection: Connection, error: unknown): void | Promise<void>;
|
|
159
234
|
onError(error: unknown): void | Promise<void>;
|
|
160
235
|
/**
|
|
161
236
|
* Render content (not implemented in base class)
|
|
162
237
|
*/
|
|
163
238
|
render(): void;
|
|
239
|
+
/**
|
|
240
|
+
* Queue a task to be executed in the future
|
|
241
|
+
* @param payload Payload to pass to the callback
|
|
242
|
+
* @param callback Name of the method to call
|
|
243
|
+
* @returns The ID of the queued task
|
|
244
|
+
*/
|
|
245
|
+
queue<T = unknown>(callback: keyof this, payload: T): Promise<string>;
|
|
246
|
+
private _flushingQueue;
|
|
247
|
+
private _flushQueue;
|
|
248
|
+
/**
|
|
249
|
+
* Dequeue a task by ID
|
|
250
|
+
* @param id ID of the task to dequeue
|
|
251
|
+
*/
|
|
252
|
+
dequeue(id: string): Promise<void>;
|
|
253
|
+
/**
|
|
254
|
+
* Dequeue all tasks
|
|
255
|
+
*/
|
|
256
|
+
dequeueAll(): Promise<void>;
|
|
257
|
+
/**
|
|
258
|
+
* Dequeue all tasks by callback
|
|
259
|
+
* @param callback Name of the callback to dequeue
|
|
260
|
+
*/
|
|
261
|
+
dequeueAllByCallback(callback: string): Promise<void>;
|
|
262
|
+
/**
|
|
263
|
+
* Get a queued task by ID
|
|
264
|
+
* @param id ID of the task to get
|
|
265
|
+
* @returns The task or undefined if not found
|
|
266
|
+
*/
|
|
267
|
+
getQueue(id: string): Promise<QueueItem<string> | undefined>;
|
|
268
|
+
/**
|
|
269
|
+
* Get all queues by key and value
|
|
270
|
+
* @param key Key to filter by
|
|
271
|
+
* @param value Value to filter by
|
|
272
|
+
* @returns Array of matching QueueItem objects
|
|
273
|
+
*/
|
|
274
|
+
getQueues(key: string, value: string): Promise<QueueItem<string>[]>;
|
|
164
275
|
/**
|
|
165
276
|
* Schedule a task to be executed in the future
|
|
166
277
|
* @template T Type of the payload data
|
|
@@ -201,15 +312,77 @@ declare class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
201
312
|
* @returns true if the task was cancelled, false otherwise
|
|
202
313
|
*/
|
|
203
314
|
cancelSchedule(id: string): Promise<boolean>;
|
|
315
|
+
private _scheduleNextAlarm;
|
|
204
316
|
/**
|
|
205
|
-
* Method called when an alarm fires
|
|
206
|
-
* Executes any scheduled tasks that are due
|
|
317
|
+
* Method called when an alarm fires.
|
|
318
|
+
* Executes any scheduled tasks that are due.
|
|
319
|
+
*
|
|
320
|
+
* @remarks
|
|
321
|
+
* To schedule a task, please use the `this.schedule` method instead.
|
|
322
|
+
* See {@link https://developers.cloudflare.com/agents/api-reference/schedule-tasks/}
|
|
207
323
|
*/
|
|
208
|
-
alarm()
|
|
324
|
+
readonly alarm: () => Promise<void>;
|
|
209
325
|
/**
|
|
210
326
|
* Destroy the Agent, removing all state and scheduled tasks
|
|
211
327
|
*/
|
|
212
328
|
destroy(): Promise<void>;
|
|
329
|
+
/**
|
|
330
|
+
* Get all methods marked as callable on this Agent
|
|
331
|
+
* @returns A map of method names to their metadata
|
|
332
|
+
*/
|
|
333
|
+
private _isCallable;
|
|
334
|
+
/**
|
|
335
|
+
* Connect to a new MCP Server
|
|
336
|
+
*
|
|
337
|
+
* @param url MCP Server SSE URL
|
|
338
|
+
* @param callbackHost Base host for the agent, used for the redirect URI.
|
|
339
|
+
* @param agentsPrefix agents routing prefix if not using `agents`
|
|
340
|
+
* @param options MCP client and transport (header) options
|
|
341
|
+
* @returns authUrl
|
|
342
|
+
*/
|
|
343
|
+
addMcpServer(
|
|
344
|
+
serverName: string,
|
|
345
|
+
url: string,
|
|
346
|
+
callbackHost: string,
|
|
347
|
+
agentsPrefix?: string,
|
|
348
|
+
options?: {
|
|
349
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
350
|
+
transport?: {
|
|
351
|
+
headers: HeadersInit;
|
|
352
|
+
};
|
|
353
|
+
}
|
|
354
|
+
): Promise<{
|
|
355
|
+
id: string;
|
|
356
|
+
authUrl: string | undefined;
|
|
357
|
+
}>;
|
|
358
|
+
_connectToMcpServerInternal(
|
|
359
|
+
_serverName: string,
|
|
360
|
+
url: string,
|
|
361
|
+
callbackUrl: string,
|
|
362
|
+
options?: {
|
|
363
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
364
|
+
/**
|
|
365
|
+
* We don't expose the normal set of transport options because:
|
|
366
|
+
* 1) we can't serialize things like the auth provider or a fetch function into the DB for reconnection purposes
|
|
367
|
+
* 2) We probably want these options to be agnostic to the transport type (SSE vs Streamable)
|
|
368
|
+
*
|
|
369
|
+
* 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).
|
|
370
|
+
*/
|
|
371
|
+
transport?: {
|
|
372
|
+
headers?: HeadersInit;
|
|
373
|
+
};
|
|
374
|
+
},
|
|
375
|
+
reconnect?: {
|
|
376
|
+
id: string;
|
|
377
|
+
oauthClientId?: string;
|
|
378
|
+
}
|
|
379
|
+
): Promise<{
|
|
380
|
+
id: string;
|
|
381
|
+
authUrl: string | undefined;
|
|
382
|
+
clientId: string | undefined;
|
|
383
|
+
}>;
|
|
384
|
+
removeMcpServer(id: string): Promise<void>;
|
|
385
|
+
getMcpServers(): MCPServersState;
|
|
213
386
|
}
|
|
214
387
|
/**
|
|
215
388
|
* Namespace for creating Agent instances
|
|
@@ -242,17 +415,72 @@ declare function routeAgentRequest<Env>(
|
|
|
242
415
|
env: Env,
|
|
243
416
|
options?: AgentOptions<Env>
|
|
244
417
|
): Promise<Response | null>;
|
|
418
|
+
type EmailResolver<Env> = (
|
|
419
|
+
email: ForwardableEmailMessage,
|
|
420
|
+
env: Env
|
|
421
|
+
) => Promise<{
|
|
422
|
+
agentName: string;
|
|
423
|
+
agentId: string;
|
|
424
|
+
} | null>;
|
|
425
|
+
/**
|
|
426
|
+
* Create a resolver that uses the message-id header to determine the agent to route the email to
|
|
427
|
+
* @returns A function that resolves the agent to route the email to
|
|
428
|
+
*/
|
|
429
|
+
declare function createHeaderBasedEmailResolver<Env>(): EmailResolver<Env>;
|
|
430
|
+
/**
|
|
431
|
+
* Create a resolver that uses the email address to determine the agent to route the email to
|
|
432
|
+
* @param defaultAgentName The default agent name to use if the email address does not contain a sub-address
|
|
433
|
+
* @returns A function that resolves the agent to route the email to
|
|
434
|
+
*/
|
|
435
|
+
declare function createAddressBasedEmailResolver<Env>(
|
|
436
|
+
defaultAgentName: string
|
|
437
|
+
): EmailResolver<Env>;
|
|
438
|
+
/**
|
|
439
|
+
* Create a resolver that uses the agentName and agentId to determine the agent to route the email to
|
|
440
|
+
* @param agentName The name of the agent to route the email to
|
|
441
|
+
* @param agentId The id of the agent to route the email to
|
|
442
|
+
* @returns A function that resolves the agent to route the email to
|
|
443
|
+
*/
|
|
444
|
+
declare function createCatchAllEmailResolver<Env>(
|
|
445
|
+
agentName: string,
|
|
446
|
+
agentId: string
|
|
447
|
+
): EmailResolver<Env>;
|
|
448
|
+
type EmailRoutingOptions<Env> = AgentOptions<Env> & {
|
|
449
|
+
resolver: EmailResolver<Env>;
|
|
450
|
+
};
|
|
245
451
|
/**
|
|
246
452
|
* Route an email to the appropriate Agent
|
|
247
|
-
* @param email
|
|
248
|
-
* @param env
|
|
249
|
-
* @param options
|
|
453
|
+
* @param email The email to route
|
|
454
|
+
* @param env The environment containing the Agent bindings
|
|
455
|
+
* @param options The options for routing the email
|
|
456
|
+
* @returns A promise that resolves when the email has been routed
|
|
250
457
|
*/
|
|
251
458
|
declare function routeAgentEmail<Env>(
|
|
252
459
|
email: ForwardableEmailMessage,
|
|
253
460
|
env: Env,
|
|
254
|
-
options
|
|
461
|
+
options: EmailRoutingOptions<Env>
|
|
255
462
|
): Promise<void>;
|
|
463
|
+
type AgentEmail = {
|
|
464
|
+
from: string;
|
|
465
|
+
to: string;
|
|
466
|
+
getRaw: () => Promise<Uint8Array>;
|
|
467
|
+
headers: Headers;
|
|
468
|
+
rawSize: number;
|
|
469
|
+
setReject: (reason: string) => void;
|
|
470
|
+
forward: (rcptTo: string, headers?: Headers) => Promise<void>;
|
|
471
|
+
reply: (options: { from: string; to: string; raw: string }) => Promise<void>;
|
|
472
|
+
};
|
|
473
|
+
type EmailSendOptions = {
|
|
474
|
+
to: string;
|
|
475
|
+
subject: string;
|
|
476
|
+
body: string;
|
|
477
|
+
contentType?: string;
|
|
478
|
+
headers?: Record<string, string>;
|
|
479
|
+
includeRoutingHeaders?: boolean;
|
|
480
|
+
agentName?: string;
|
|
481
|
+
agentId?: string;
|
|
482
|
+
domain?: string;
|
|
483
|
+
};
|
|
256
484
|
/**
|
|
257
485
|
* Get or create an Agent by name
|
|
258
486
|
* @template Env Environment type containing bindings
|
|
@@ -274,7 +502,9 @@ declare function getAgentByName<Env, T extends Agent<Env>>(
|
|
|
274
502
|
* A wrapper for streaming responses in callable methods
|
|
275
503
|
*/
|
|
276
504
|
declare class StreamingResponse {
|
|
277
|
-
|
|
505
|
+
private _connection;
|
|
506
|
+
private _id;
|
|
507
|
+
private _closed;
|
|
278
508
|
constructor(connection: Connection, id: string);
|
|
279
509
|
/**
|
|
280
510
|
* Send a chunk of data to the client
|
|
@@ -291,18 +521,28 @@ declare class StreamingResponse {
|
|
|
291
521
|
export {
|
|
292
522
|
Agent,
|
|
293
523
|
type AgentContext,
|
|
524
|
+
type AgentEmail,
|
|
294
525
|
type AgentNamespace,
|
|
295
526
|
type AgentOptions,
|
|
296
527
|
type CallableMetadata,
|
|
528
|
+
type EmailResolver,
|
|
529
|
+
type EmailRoutingOptions,
|
|
530
|
+
type EmailSendOptions,
|
|
531
|
+
type MCPServer,
|
|
532
|
+
type MCPServerMessage,
|
|
533
|
+
type MCPServersState,
|
|
534
|
+
type QueueItem,
|
|
297
535
|
type RPCRequest,
|
|
298
536
|
type RPCResponse,
|
|
299
537
|
type Schedule,
|
|
300
538
|
type StateUpdateMessage,
|
|
301
539
|
StreamingResponse,
|
|
302
|
-
|
|
540
|
+
createAddressBasedEmailResolver,
|
|
541
|
+
createCatchAllEmailResolver,
|
|
542
|
+
createHeaderBasedEmailResolver,
|
|
303
543
|
getAgentByName,
|
|
544
|
+
getCurrentAgent,
|
|
304
545
|
routeAgentEmail,
|
|
305
546
|
routeAgentRequest,
|
|
306
|
-
unstable_callable
|
|
307
|
-
unstable_context,
|
|
547
|
+
unstable_callable
|
|
308
548
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Agent,
|
|
3
3
|
StreamingResponse,
|
|
4
|
-
|
|
4
|
+
createAddressBasedEmailResolver,
|
|
5
|
+
createCatchAllEmailResolver,
|
|
6
|
+
createHeaderBasedEmailResolver,
|
|
5
7
|
getAgentByName,
|
|
8
|
+
getCurrentAgent,
|
|
6
9
|
routeAgentEmail,
|
|
7
10
|
routeAgentRequest,
|
|
8
|
-
unstable_callable
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import "./chunk-
|
|
11
|
+
unstable_callable
|
|
12
|
+
} from "./chunk-ID62XSAS.js";
|
|
13
|
+
import "./chunk-EM3J4KV7.js";
|
|
14
|
+
import "./chunk-PVQZBKN7.js";
|
|
15
|
+
import "./chunk-QEVM4BVL.js";
|
|
16
|
+
import "./chunk-EEKLJYON.js";
|
|
12
17
|
export {
|
|
13
18
|
Agent,
|
|
14
19
|
StreamingResponse,
|
|
15
|
-
|
|
20
|
+
createAddressBasedEmailResolver,
|
|
21
|
+
createCatchAllEmailResolver,
|
|
22
|
+
createHeaderBasedEmailResolver,
|
|
16
23
|
getAgentByName,
|
|
24
|
+
getCurrentAgent,
|
|
17
25
|
routeAgentEmail,
|
|
18
26
|
routeAgentRequest,
|
|
19
|
-
unstable_callable
|
|
20
|
-
unstable_context
|
|
27
|
+
unstable_callable
|
|
21
28
|
};
|
|
22
29
|
//# sourceMappingURL=index.js.map
|