@decocms/bindings 0.2.4-beta.1 → 0.2.4-beta.3
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 +5 -5
- package/dist/core/binder.d.ts +3 -0
- package/dist/core/binder.js +81 -0
- package/dist/core/binder.js.map +1 -0
- package/dist/{client.js → core/client/http-client-transport.js} +9 -9
- package/dist/core/client/http-client-transport.js.map +1 -0
- package/dist/core/client/index.d.ts +3 -0
- package/dist/core/client/index.js +5 -0
- package/dist/core/client/index.js.map +1 -0
- package/dist/core/client/mcp-client.d.ts +233 -0
- package/dist/core/client/mcp-client.js +99 -0
- package/dist/core/client/mcp-client.js.map +1 -0
- package/dist/core/client/mcp.d.ts +3 -0
- package/dist/core/client/mcp.js +29 -0
- package/dist/core/client/mcp.js.map +1 -0
- package/dist/core/client/proxy.d.ts +10 -0
- package/dist/core/client/proxy.js +104 -0
- package/dist/core/client/proxy.js.map +1 -0
- package/dist/core/connection.js +1 -0
- package/dist/core/connection.js.map +1 -0
- package/dist/core/subset.d.ts +17 -0
- package/dist/core/subset.js +321 -0
- package/dist/core/subset.js.map +1 -0
- package/dist/index-D0aUdNls.d.ts +153 -0
- package/dist/index.d.ts +3 -94
- package/dist/index.js +5 -340
- package/dist/index.js.map +1 -1
- package/dist/{node → well-known}/agents.d.ts +64 -64
- package/dist/well-known/agents.js +28 -0
- package/dist/well-known/agents.js.map +1 -0
- package/dist/{node → well-known}/collections.d.ts +1 -1
- package/dist/{collections.js → well-known/collections.js} +24 -13
- package/dist/well-known/collections.js.map +1 -0
- package/dist/{node → well-known}/language-model.d.ts +387 -391
- package/dist/{node → well-known}/language-model.js +27 -21
- package/dist/well-known/language-model.js.map +1 -0
- package/package.json +17 -37
- package/dist/browser/agents.js +0 -29
- package/dist/browser/agents.js.map +0 -1
- package/dist/browser/chunk-6QEXJ7XW.js +0 -48564
- package/dist/browser/chunk-6QEXJ7XW.js.map +0 -1
- package/dist/browser/chunk-WKNVAFKE.js +0 -2176
- package/dist/browser/chunk-WKNVAFKE.js.map +0 -1
- package/dist/browser/chunk-XWLBKKHZ.js +0 -127
- package/dist/browser/chunk-XWLBKKHZ.js.map +0 -1
- package/dist/browser/chunk-ZX4ZDU2T.js +0 -58
- package/dist/browser/chunk-ZX4ZDU2T.js.map +0 -1
- package/dist/browser/client.js +0 -9
- package/dist/browser/client.js.map +0 -1
- package/dist/browser/collections.js +0 -4
- package/dist/browser/collections.js.map +0 -1
- package/dist/browser/connection.js +0 -8
- package/dist/browser/connection.js.map +0 -1
- package/dist/browser/index.js +0 -10
- package/dist/browser/index.js.map +0 -1
- package/dist/browser/language-model.js +0 -205
- package/dist/browser/language-model.js.map +0 -1
- package/dist/client.js.map +0 -1
- package/dist/collections.d.ts +0 -537
- package/dist/collections.js.map +0 -1
- package/dist/connection.js +0 -3
- package/dist/connection.js.map +0 -1
- package/dist/language-model.d.ts +0 -3228
- package/dist/language-model.js +0 -628
- package/dist/language-model.js.map +0 -1
- package/dist/models.d.ts +0 -2071
- package/dist/models.js +0 -111
- package/dist/models.js.map +0 -1
- package/dist/node/agents.js +0 -27
- package/dist/node/agents.js.map +0 -1
- package/dist/node/chunk-BLCFITZG.js +0 -56
- package/dist/node/chunk-BLCFITZG.js.map +0 -1
- package/dist/node/chunk-QMQMPK7Q.js +0 -50
- package/dist/node/chunk-QMQMPK7Q.js.map +0 -1
- package/dist/node/chunk-QP7AQCEP.js +0 -23478
- package/dist/node/chunk-QP7AQCEP.js.map +0 -1
- package/dist/node/chunk-T2DG7334.js +0 -125
- package/dist/node/chunk-T2DG7334.js.map +0 -1
- package/dist/node/client.d.ts +0 -12
- package/dist/node/client.js +0 -7
- package/dist/node/client.js.map +0 -1
- package/dist/node/collections.js +0 -4
- package/dist/node/collections.js.map +0 -1
- package/dist/node/connection.d.ts +0 -30
- package/dist/node/connection.js +0 -6
- package/dist/node/connection.js.map +0 -1
- package/dist/node/index.d.ts +0 -94
- package/dist/node/index.js +0 -8
- package/dist/node/index.js.map +0 -1
- package/dist/node/language-model.js.map +0 -1
- /package/dist/{client.d.ts → core/client/http-client-transport.d.ts} +0 -0
- /package/dist/{connection.d.ts → core/connection.d.ts} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CollectionListInputSchema, CollectionGetInputSchema, CollectionDeleteInputSchema } from './collections.js';
|
|
2
|
-
import { z } from 'zod';
|
|
2
|
+
import { z } from 'zod/v3';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Agent entity schema for AI agents
|
|
@@ -19,22 +19,22 @@ declare const AgentSchema: z.ZodObject<{
|
|
|
19
19
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
20
20
|
avatar: z.ZodString;
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
|
22
|
+
description: string;
|
|
22
23
|
id: string;
|
|
23
24
|
title: string;
|
|
24
25
|
created_at: string;
|
|
25
26
|
updated_at: string;
|
|
26
|
-
description: string;
|
|
27
27
|
instructions: string;
|
|
28
28
|
tool_set: Record<string, string[]>;
|
|
29
29
|
avatar: string;
|
|
30
30
|
created_by?: string | undefined;
|
|
31
31
|
updated_by?: string | undefined;
|
|
32
32
|
}, {
|
|
33
|
+
description: string;
|
|
33
34
|
id: string;
|
|
34
35
|
title: string;
|
|
35
36
|
created_at: string;
|
|
36
37
|
updated_at: string;
|
|
37
|
-
description: string;
|
|
38
38
|
instructions: string;
|
|
39
39
|
tool_set: Record<string, string[]>;
|
|
40
40
|
avatar: string;
|
|
@@ -42,13 +42,13 @@ declare const AgentSchema: z.ZodObject<{
|
|
|
42
42
|
updated_by?: string | undefined;
|
|
43
43
|
}>;
|
|
44
44
|
/**
|
|
45
|
-
*
|
|
45
|
+
* AGENT Collection Binding
|
|
46
46
|
*
|
|
47
47
|
* Collection bindings for agents (read-only).
|
|
48
48
|
* Provides LIST and GET operations for AI agents.
|
|
49
49
|
*/
|
|
50
50
|
declare const AGENTS_COLLECTION_BINDING: ({
|
|
51
|
-
name: "
|
|
51
|
+
name: "COLLECTION_AGENT_LIST";
|
|
52
52
|
inputSchema: typeof CollectionListInputSchema;
|
|
53
53
|
outputSchema: z.ZodObject<{
|
|
54
54
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -64,22 +64,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
64
64
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
65
65
|
avatar: z.ZodString;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
+
description: string;
|
|
67
68
|
id: string;
|
|
68
69
|
title: string;
|
|
69
70
|
created_at: string;
|
|
70
71
|
updated_at: string;
|
|
71
|
-
description: string;
|
|
72
72
|
instructions: string;
|
|
73
73
|
tool_set: Record<string, string[]>;
|
|
74
74
|
avatar: string;
|
|
75
75
|
created_by?: string | undefined;
|
|
76
76
|
updated_by?: string | undefined;
|
|
77
77
|
}, {
|
|
78
|
+
description: string;
|
|
78
79
|
id: string;
|
|
79
80
|
title: string;
|
|
80
81
|
created_at: string;
|
|
81
82
|
updated_at: string;
|
|
82
|
-
description: string;
|
|
83
83
|
instructions: string;
|
|
84
84
|
tool_set: Record<string, string[]>;
|
|
85
85
|
avatar: string;
|
|
@@ -90,11 +90,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
90
90
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
92
|
items: {
|
|
93
|
+
description: string;
|
|
93
94
|
id: string;
|
|
94
95
|
title: string;
|
|
95
96
|
created_at: string;
|
|
96
97
|
updated_at: string;
|
|
97
|
-
description: string;
|
|
98
98
|
instructions: string;
|
|
99
99
|
tool_set: Record<string, string[]>;
|
|
100
100
|
avatar: string;
|
|
@@ -105,11 +105,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
105
105
|
hasMore?: boolean | undefined;
|
|
106
106
|
}, {
|
|
107
107
|
items: {
|
|
108
|
+
description: string;
|
|
108
109
|
id: string;
|
|
109
110
|
title: string;
|
|
110
111
|
created_at: string;
|
|
111
112
|
updated_at: string;
|
|
112
|
-
description: string;
|
|
113
113
|
instructions: string;
|
|
114
114
|
tool_set: Record<string, string[]>;
|
|
115
115
|
avatar: string;
|
|
@@ -120,7 +120,7 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
120
120
|
hasMore?: boolean | undefined;
|
|
121
121
|
}>;
|
|
122
122
|
} | {
|
|
123
|
-
name: "
|
|
123
|
+
name: "COLLECTION_AGENT_GET";
|
|
124
124
|
inputSchema: typeof CollectionGetInputSchema;
|
|
125
125
|
outputSchema: z.ZodObject<{
|
|
126
126
|
item: z.ZodNullable<z.ZodObject<{
|
|
@@ -136,22 +136,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
136
136
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
137
137
|
avatar: z.ZodString;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
|
+
description: string;
|
|
139
140
|
id: string;
|
|
140
141
|
title: string;
|
|
141
142
|
created_at: string;
|
|
142
143
|
updated_at: string;
|
|
143
|
-
description: string;
|
|
144
144
|
instructions: string;
|
|
145
145
|
tool_set: Record<string, string[]>;
|
|
146
146
|
avatar: string;
|
|
147
147
|
created_by?: string | undefined;
|
|
148
148
|
updated_by?: string | undefined;
|
|
149
149
|
}, {
|
|
150
|
+
description: string;
|
|
150
151
|
id: string;
|
|
151
152
|
title: string;
|
|
152
153
|
created_at: string;
|
|
153
154
|
updated_at: string;
|
|
154
|
-
description: string;
|
|
155
155
|
instructions: string;
|
|
156
156
|
tool_set: Record<string, string[]>;
|
|
157
157
|
avatar: string;
|
|
@@ -160,11 +160,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
160
160
|
}>>;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
item: {
|
|
163
|
+
description: string;
|
|
163
164
|
id: string;
|
|
164
165
|
title: string;
|
|
165
166
|
created_at: string;
|
|
166
167
|
updated_at: string;
|
|
167
|
-
description: string;
|
|
168
168
|
instructions: string;
|
|
169
169
|
tool_set: Record<string, string[]>;
|
|
170
170
|
avatar: string;
|
|
@@ -173,11 +173,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
173
173
|
} | null;
|
|
174
174
|
}, {
|
|
175
175
|
item: {
|
|
176
|
+
description: string;
|
|
176
177
|
id: string;
|
|
177
178
|
title: string;
|
|
178
179
|
created_at: string;
|
|
179
180
|
updated_at: string;
|
|
180
|
-
description: string;
|
|
181
181
|
instructions: string;
|
|
182
182
|
tool_set: Record<string, string[]>;
|
|
183
183
|
avatar: string;
|
|
@@ -186,7 +186,7 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
186
186
|
} | null;
|
|
187
187
|
}>;
|
|
188
188
|
} | {
|
|
189
|
-
name: "
|
|
189
|
+
name: "COLLECTION_AGENT_CREATE";
|
|
190
190
|
inputSchema: z.ZodObject<{
|
|
191
191
|
data: z.ZodObject<{
|
|
192
192
|
id: z.ZodString;
|
|
@@ -201,22 +201,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
201
201
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
202
202
|
avatar: z.ZodString;
|
|
203
203
|
}, "strip", z.ZodTypeAny, {
|
|
204
|
+
description: string;
|
|
204
205
|
id: string;
|
|
205
206
|
title: string;
|
|
206
207
|
created_at: string;
|
|
207
208
|
updated_at: string;
|
|
208
|
-
description: string;
|
|
209
209
|
instructions: string;
|
|
210
210
|
tool_set: Record<string, string[]>;
|
|
211
211
|
avatar: string;
|
|
212
212
|
created_by?: string | undefined;
|
|
213
213
|
updated_by?: string | undefined;
|
|
214
214
|
}, {
|
|
215
|
+
description: string;
|
|
215
216
|
id: string;
|
|
216
217
|
title: string;
|
|
217
218
|
created_at: string;
|
|
218
219
|
updated_at: string;
|
|
219
|
-
description: string;
|
|
220
220
|
instructions: string;
|
|
221
221
|
tool_set: Record<string, string[]>;
|
|
222
222
|
avatar: string;
|
|
@@ -225,11 +225,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
225
225
|
}>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
227
|
data: {
|
|
228
|
+
description: string;
|
|
228
229
|
id: string;
|
|
229
230
|
title: string;
|
|
230
231
|
created_at: string;
|
|
231
232
|
updated_at: string;
|
|
232
|
-
description: string;
|
|
233
233
|
instructions: string;
|
|
234
234
|
tool_set: Record<string, string[]>;
|
|
235
235
|
avatar: string;
|
|
@@ -238,11 +238,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
238
238
|
};
|
|
239
239
|
}, {
|
|
240
240
|
data: {
|
|
241
|
+
description: string;
|
|
241
242
|
id: string;
|
|
242
243
|
title: string;
|
|
243
244
|
created_at: string;
|
|
244
245
|
updated_at: string;
|
|
245
|
-
description: string;
|
|
246
246
|
instructions: string;
|
|
247
247
|
tool_set: Record<string, string[]>;
|
|
248
248
|
avatar: string;
|
|
@@ -264,22 +264,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
264
264
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
265
265
|
avatar: z.ZodString;
|
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
|
+
description: string;
|
|
267
268
|
id: string;
|
|
268
269
|
title: string;
|
|
269
270
|
created_at: string;
|
|
270
271
|
updated_at: string;
|
|
271
|
-
description: string;
|
|
272
272
|
instructions: string;
|
|
273
273
|
tool_set: Record<string, string[]>;
|
|
274
274
|
avatar: string;
|
|
275
275
|
created_by?: string | undefined;
|
|
276
276
|
updated_by?: string | undefined;
|
|
277
277
|
}, {
|
|
278
|
+
description: string;
|
|
278
279
|
id: string;
|
|
279
280
|
title: string;
|
|
280
281
|
created_at: string;
|
|
281
282
|
updated_at: string;
|
|
282
|
-
description: string;
|
|
283
283
|
instructions: string;
|
|
284
284
|
tool_set: Record<string, string[]>;
|
|
285
285
|
avatar: string;
|
|
@@ -288,11 +288,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
288
288
|
}>;
|
|
289
289
|
}, "strip", z.ZodTypeAny, {
|
|
290
290
|
item: {
|
|
291
|
+
description: string;
|
|
291
292
|
id: string;
|
|
292
293
|
title: string;
|
|
293
294
|
created_at: string;
|
|
294
295
|
updated_at: string;
|
|
295
|
-
description: string;
|
|
296
296
|
instructions: string;
|
|
297
297
|
tool_set: Record<string, string[]>;
|
|
298
298
|
avatar: string;
|
|
@@ -301,11 +301,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
301
301
|
};
|
|
302
302
|
}, {
|
|
303
303
|
item: {
|
|
304
|
+
description: string;
|
|
304
305
|
id: string;
|
|
305
306
|
title: string;
|
|
306
307
|
created_at: string;
|
|
307
308
|
updated_at: string;
|
|
308
|
-
description: string;
|
|
309
309
|
instructions: string;
|
|
310
310
|
tool_set: Record<string, string[]>;
|
|
311
311
|
avatar: string;
|
|
@@ -315,7 +315,7 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
315
315
|
}>;
|
|
316
316
|
opt: true;
|
|
317
317
|
} | {
|
|
318
|
-
name: "
|
|
318
|
+
name: "COLLECTION_AGENT_UPDATE";
|
|
319
319
|
inputSchema: z.ZodObject<{
|
|
320
320
|
id: z.ZodString;
|
|
321
321
|
data: z.ZodObject<{
|
|
@@ -350,22 +350,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
350
350
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
351
351
|
avatar: z.ZodString;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
+
description: string;
|
|
353
354
|
id: string;
|
|
354
355
|
title: string;
|
|
355
356
|
created_at: string;
|
|
356
357
|
updated_at: string;
|
|
357
|
-
description: string;
|
|
358
358
|
instructions: string;
|
|
359
359
|
tool_set: Record<string, string[]>;
|
|
360
360
|
avatar: string;
|
|
361
361
|
created_by?: string | undefined;
|
|
362
362
|
updated_by?: string | undefined;
|
|
363
363
|
}, {
|
|
364
|
+
description: string;
|
|
364
365
|
id: string;
|
|
365
366
|
title: string;
|
|
366
367
|
created_at: string;
|
|
367
368
|
updated_at: string;
|
|
368
|
-
description: string;
|
|
369
369
|
instructions: string;
|
|
370
370
|
tool_set: Record<string, string[]>;
|
|
371
371
|
avatar: string;
|
|
@@ -374,11 +374,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
374
374
|
}>;
|
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
|
376
376
|
item: {
|
|
377
|
+
description: string;
|
|
377
378
|
id: string;
|
|
378
379
|
title: string;
|
|
379
380
|
created_at: string;
|
|
380
381
|
updated_at: string;
|
|
381
|
-
description: string;
|
|
382
382
|
instructions: string;
|
|
383
383
|
tool_set: Record<string, string[]>;
|
|
384
384
|
avatar: string;
|
|
@@ -387,11 +387,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
387
387
|
};
|
|
388
388
|
}, {
|
|
389
389
|
item: {
|
|
390
|
+
description: string;
|
|
390
391
|
id: string;
|
|
391
392
|
title: string;
|
|
392
393
|
created_at: string;
|
|
393
394
|
updated_at: string;
|
|
394
|
-
description: string;
|
|
395
395
|
instructions: string;
|
|
396
396
|
tool_set: Record<string, string[]>;
|
|
397
397
|
avatar: string;
|
|
@@ -401,7 +401,7 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
401
401
|
}>;
|
|
402
402
|
opt: true;
|
|
403
403
|
} | {
|
|
404
|
-
name: "
|
|
404
|
+
name: "COLLECTION_AGENT_DELETE";
|
|
405
405
|
inputSchema: typeof CollectionDeleteInputSchema;
|
|
406
406
|
outputSchema: z.ZodObject<{
|
|
407
407
|
item: z.ZodObject<{
|
|
@@ -417,22 +417,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
417
417
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
418
418
|
avatar: z.ZodString;
|
|
419
419
|
}, "strip", z.ZodTypeAny, {
|
|
420
|
+
description: string;
|
|
420
421
|
id: string;
|
|
421
422
|
title: string;
|
|
422
423
|
created_at: string;
|
|
423
424
|
updated_at: string;
|
|
424
|
-
description: string;
|
|
425
425
|
instructions: string;
|
|
426
426
|
tool_set: Record<string, string[]>;
|
|
427
427
|
avatar: string;
|
|
428
428
|
created_by?: string | undefined;
|
|
429
429
|
updated_by?: string | undefined;
|
|
430
430
|
}, {
|
|
431
|
+
description: string;
|
|
431
432
|
id: string;
|
|
432
433
|
title: string;
|
|
433
434
|
created_at: string;
|
|
434
435
|
updated_at: string;
|
|
435
|
-
description: string;
|
|
436
436
|
instructions: string;
|
|
437
437
|
tool_set: Record<string, string[]>;
|
|
438
438
|
avatar: string;
|
|
@@ -441,11 +441,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
441
441
|
}>;
|
|
442
442
|
}, "strip", z.ZodTypeAny, {
|
|
443
443
|
item: {
|
|
444
|
+
description: string;
|
|
444
445
|
id: string;
|
|
445
446
|
title: string;
|
|
446
447
|
created_at: string;
|
|
447
448
|
updated_at: string;
|
|
448
|
-
description: string;
|
|
449
449
|
instructions: string;
|
|
450
450
|
tool_set: Record<string, string[]>;
|
|
451
451
|
avatar: string;
|
|
@@ -454,11 +454,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
454
454
|
};
|
|
455
455
|
}, {
|
|
456
456
|
item: {
|
|
457
|
+
description: string;
|
|
457
458
|
id: string;
|
|
458
459
|
title: string;
|
|
459
460
|
created_at: string;
|
|
460
461
|
updated_at: string;
|
|
461
|
-
description: string;
|
|
462
462
|
instructions: string;
|
|
463
463
|
tool_set: Record<string, string[]>;
|
|
464
464
|
avatar: string;
|
|
@@ -475,11 +475,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
475
475
|
* Any MCP that implements this binding can provide configurable AI agents.
|
|
476
476
|
*
|
|
477
477
|
* Required tools:
|
|
478
|
-
* -
|
|
479
|
-
* -
|
|
478
|
+
* - COLLECTION_AGENT_LIST: List available AI agents with their configurations
|
|
479
|
+
* - COLLECTION_AGENT_GET: Get a single agent by ID (includes instructions and tool_set)
|
|
480
480
|
*/
|
|
481
481
|
declare const AGENTS_BINDING: readonly ({
|
|
482
|
-
name: "
|
|
482
|
+
name: "COLLECTION_AGENT_LIST";
|
|
483
483
|
inputSchema: typeof CollectionListInputSchema;
|
|
484
484
|
outputSchema: z.ZodObject<{
|
|
485
485
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -495,22 +495,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
495
495
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
496
496
|
avatar: z.ZodString;
|
|
497
497
|
}, "strip", z.ZodTypeAny, {
|
|
498
|
+
description: string;
|
|
498
499
|
id: string;
|
|
499
500
|
title: string;
|
|
500
501
|
created_at: string;
|
|
501
502
|
updated_at: string;
|
|
502
|
-
description: string;
|
|
503
503
|
instructions: string;
|
|
504
504
|
tool_set: Record<string, string[]>;
|
|
505
505
|
avatar: string;
|
|
506
506
|
created_by?: string | undefined;
|
|
507
507
|
updated_by?: string | undefined;
|
|
508
508
|
}, {
|
|
509
|
+
description: string;
|
|
509
510
|
id: string;
|
|
510
511
|
title: string;
|
|
511
512
|
created_at: string;
|
|
512
513
|
updated_at: string;
|
|
513
|
-
description: string;
|
|
514
514
|
instructions: string;
|
|
515
515
|
tool_set: Record<string, string[]>;
|
|
516
516
|
avatar: string;
|
|
@@ -521,11 +521,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
521
521
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
522
522
|
}, "strip", z.ZodTypeAny, {
|
|
523
523
|
items: {
|
|
524
|
+
description: string;
|
|
524
525
|
id: string;
|
|
525
526
|
title: string;
|
|
526
527
|
created_at: string;
|
|
527
528
|
updated_at: string;
|
|
528
|
-
description: string;
|
|
529
529
|
instructions: string;
|
|
530
530
|
tool_set: Record<string, string[]>;
|
|
531
531
|
avatar: string;
|
|
@@ -536,11 +536,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
536
536
|
hasMore?: boolean | undefined;
|
|
537
537
|
}, {
|
|
538
538
|
items: {
|
|
539
|
+
description: string;
|
|
539
540
|
id: string;
|
|
540
541
|
title: string;
|
|
541
542
|
created_at: string;
|
|
542
543
|
updated_at: string;
|
|
543
|
-
description: string;
|
|
544
544
|
instructions: string;
|
|
545
545
|
tool_set: Record<string, string[]>;
|
|
546
546
|
avatar: string;
|
|
@@ -551,7 +551,7 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
551
551
|
hasMore?: boolean | undefined;
|
|
552
552
|
}>;
|
|
553
553
|
} | {
|
|
554
|
-
name: "
|
|
554
|
+
name: "COLLECTION_AGENT_GET";
|
|
555
555
|
inputSchema: typeof CollectionGetInputSchema;
|
|
556
556
|
outputSchema: z.ZodObject<{
|
|
557
557
|
item: z.ZodNullable<z.ZodObject<{
|
|
@@ -567,22 +567,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
567
567
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
568
568
|
avatar: z.ZodString;
|
|
569
569
|
}, "strip", z.ZodTypeAny, {
|
|
570
|
+
description: string;
|
|
570
571
|
id: string;
|
|
571
572
|
title: string;
|
|
572
573
|
created_at: string;
|
|
573
574
|
updated_at: string;
|
|
574
|
-
description: string;
|
|
575
575
|
instructions: string;
|
|
576
576
|
tool_set: Record<string, string[]>;
|
|
577
577
|
avatar: string;
|
|
578
578
|
created_by?: string | undefined;
|
|
579
579
|
updated_by?: string | undefined;
|
|
580
580
|
}, {
|
|
581
|
+
description: string;
|
|
581
582
|
id: string;
|
|
582
583
|
title: string;
|
|
583
584
|
created_at: string;
|
|
584
585
|
updated_at: string;
|
|
585
|
-
description: string;
|
|
586
586
|
instructions: string;
|
|
587
587
|
tool_set: Record<string, string[]>;
|
|
588
588
|
avatar: string;
|
|
@@ -591,11 +591,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
591
591
|
}>>;
|
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
|
593
593
|
item: {
|
|
594
|
+
description: string;
|
|
594
595
|
id: string;
|
|
595
596
|
title: string;
|
|
596
597
|
created_at: string;
|
|
597
598
|
updated_at: string;
|
|
598
|
-
description: string;
|
|
599
599
|
instructions: string;
|
|
600
600
|
tool_set: Record<string, string[]>;
|
|
601
601
|
avatar: string;
|
|
@@ -604,11 +604,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
604
604
|
} | null;
|
|
605
605
|
}, {
|
|
606
606
|
item: {
|
|
607
|
+
description: string;
|
|
607
608
|
id: string;
|
|
608
609
|
title: string;
|
|
609
610
|
created_at: string;
|
|
610
611
|
updated_at: string;
|
|
611
|
-
description: string;
|
|
612
612
|
instructions: string;
|
|
613
613
|
tool_set: Record<string, string[]>;
|
|
614
614
|
avatar: string;
|
|
@@ -617,7 +617,7 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
617
617
|
} | null;
|
|
618
618
|
}>;
|
|
619
619
|
} | {
|
|
620
|
-
name: "
|
|
620
|
+
name: "COLLECTION_AGENT_CREATE";
|
|
621
621
|
inputSchema: z.ZodObject<{
|
|
622
622
|
data: z.ZodObject<{
|
|
623
623
|
id: z.ZodString;
|
|
@@ -632,22 +632,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
632
632
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
633
633
|
avatar: z.ZodString;
|
|
634
634
|
}, "strip", z.ZodTypeAny, {
|
|
635
|
+
description: string;
|
|
635
636
|
id: string;
|
|
636
637
|
title: string;
|
|
637
638
|
created_at: string;
|
|
638
639
|
updated_at: string;
|
|
639
|
-
description: string;
|
|
640
640
|
instructions: string;
|
|
641
641
|
tool_set: Record<string, string[]>;
|
|
642
642
|
avatar: string;
|
|
643
643
|
created_by?: string | undefined;
|
|
644
644
|
updated_by?: string | undefined;
|
|
645
645
|
}, {
|
|
646
|
+
description: string;
|
|
646
647
|
id: string;
|
|
647
648
|
title: string;
|
|
648
649
|
created_at: string;
|
|
649
650
|
updated_at: string;
|
|
650
|
-
description: string;
|
|
651
651
|
instructions: string;
|
|
652
652
|
tool_set: Record<string, string[]>;
|
|
653
653
|
avatar: string;
|
|
@@ -656,11 +656,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
656
656
|
}>;
|
|
657
657
|
}, "strip", z.ZodTypeAny, {
|
|
658
658
|
data: {
|
|
659
|
+
description: string;
|
|
659
660
|
id: string;
|
|
660
661
|
title: string;
|
|
661
662
|
created_at: string;
|
|
662
663
|
updated_at: string;
|
|
663
|
-
description: string;
|
|
664
664
|
instructions: string;
|
|
665
665
|
tool_set: Record<string, string[]>;
|
|
666
666
|
avatar: string;
|
|
@@ -669,11 +669,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
669
669
|
};
|
|
670
670
|
}, {
|
|
671
671
|
data: {
|
|
672
|
+
description: string;
|
|
672
673
|
id: string;
|
|
673
674
|
title: string;
|
|
674
675
|
created_at: string;
|
|
675
676
|
updated_at: string;
|
|
676
|
-
description: string;
|
|
677
677
|
instructions: string;
|
|
678
678
|
tool_set: Record<string, string[]>;
|
|
679
679
|
avatar: string;
|
|
@@ -695,22 +695,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
695
695
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
696
696
|
avatar: z.ZodString;
|
|
697
697
|
}, "strip", z.ZodTypeAny, {
|
|
698
|
+
description: string;
|
|
698
699
|
id: string;
|
|
699
700
|
title: string;
|
|
700
701
|
created_at: string;
|
|
701
702
|
updated_at: string;
|
|
702
|
-
description: string;
|
|
703
703
|
instructions: string;
|
|
704
704
|
tool_set: Record<string, string[]>;
|
|
705
705
|
avatar: string;
|
|
706
706
|
created_by?: string | undefined;
|
|
707
707
|
updated_by?: string | undefined;
|
|
708
708
|
}, {
|
|
709
|
+
description: string;
|
|
709
710
|
id: string;
|
|
710
711
|
title: string;
|
|
711
712
|
created_at: string;
|
|
712
713
|
updated_at: string;
|
|
713
|
-
description: string;
|
|
714
714
|
instructions: string;
|
|
715
715
|
tool_set: Record<string, string[]>;
|
|
716
716
|
avatar: string;
|
|
@@ -719,11 +719,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
719
719
|
}>;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
721
|
item: {
|
|
722
|
+
description: string;
|
|
722
723
|
id: string;
|
|
723
724
|
title: string;
|
|
724
725
|
created_at: string;
|
|
725
726
|
updated_at: string;
|
|
726
|
-
description: string;
|
|
727
727
|
instructions: string;
|
|
728
728
|
tool_set: Record<string, string[]>;
|
|
729
729
|
avatar: string;
|
|
@@ -732,11 +732,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
732
732
|
};
|
|
733
733
|
}, {
|
|
734
734
|
item: {
|
|
735
|
+
description: string;
|
|
735
736
|
id: string;
|
|
736
737
|
title: string;
|
|
737
738
|
created_at: string;
|
|
738
739
|
updated_at: string;
|
|
739
|
-
description: string;
|
|
740
740
|
instructions: string;
|
|
741
741
|
tool_set: Record<string, string[]>;
|
|
742
742
|
avatar: string;
|
|
@@ -746,7 +746,7 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
746
746
|
}>;
|
|
747
747
|
opt: true;
|
|
748
748
|
} | {
|
|
749
|
-
name: "
|
|
749
|
+
name: "COLLECTION_AGENT_UPDATE";
|
|
750
750
|
inputSchema: z.ZodObject<{
|
|
751
751
|
id: z.ZodString;
|
|
752
752
|
data: z.ZodObject<{
|
|
@@ -781,22 +781,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
781
781
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
782
782
|
avatar: z.ZodString;
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
|
+
description: string;
|
|
784
785
|
id: string;
|
|
785
786
|
title: string;
|
|
786
787
|
created_at: string;
|
|
787
788
|
updated_at: string;
|
|
788
|
-
description: string;
|
|
789
789
|
instructions: string;
|
|
790
790
|
tool_set: Record<string, string[]>;
|
|
791
791
|
avatar: string;
|
|
792
792
|
created_by?: string | undefined;
|
|
793
793
|
updated_by?: string | undefined;
|
|
794
794
|
}, {
|
|
795
|
+
description: string;
|
|
795
796
|
id: string;
|
|
796
797
|
title: string;
|
|
797
798
|
created_at: string;
|
|
798
799
|
updated_at: string;
|
|
799
|
-
description: string;
|
|
800
800
|
instructions: string;
|
|
801
801
|
tool_set: Record<string, string[]>;
|
|
802
802
|
avatar: string;
|
|
@@ -805,11 +805,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
805
805
|
}>;
|
|
806
806
|
}, "strip", z.ZodTypeAny, {
|
|
807
807
|
item: {
|
|
808
|
+
description: string;
|
|
808
809
|
id: string;
|
|
809
810
|
title: string;
|
|
810
811
|
created_at: string;
|
|
811
812
|
updated_at: string;
|
|
812
|
-
description: string;
|
|
813
813
|
instructions: string;
|
|
814
814
|
tool_set: Record<string, string[]>;
|
|
815
815
|
avatar: string;
|
|
@@ -818,11 +818,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
818
818
|
};
|
|
819
819
|
}, {
|
|
820
820
|
item: {
|
|
821
|
+
description: string;
|
|
821
822
|
id: string;
|
|
822
823
|
title: string;
|
|
823
824
|
created_at: string;
|
|
824
825
|
updated_at: string;
|
|
825
|
-
description: string;
|
|
826
826
|
instructions: string;
|
|
827
827
|
tool_set: Record<string, string[]>;
|
|
828
828
|
avatar: string;
|
|
@@ -832,7 +832,7 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
832
832
|
}>;
|
|
833
833
|
opt: true;
|
|
834
834
|
} | {
|
|
835
|
-
name: "
|
|
835
|
+
name: "COLLECTION_AGENT_DELETE";
|
|
836
836
|
inputSchema: typeof CollectionDeleteInputSchema;
|
|
837
837
|
outputSchema: z.ZodObject<{
|
|
838
838
|
item: z.ZodObject<{
|
|
@@ -848,22 +848,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
848
848
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
849
849
|
avatar: z.ZodString;
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
|
+
description: string;
|
|
851
852
|
id: string;
|
|
852
853
|
title: string;
|
|
853
854
|
created_at: string;
|
|
854
855
|
updated_at: string;
|
|
855
|
-
description: string;
|
|
856
856
|
instructions: string;
|
|
857
857
|
tool_set: Record<string, string[]>;
|
|
858
858
|
avatar: string;
|
|
859
859
|
created_by?: string | undefined;
|
|
860
860
|
updated_by?: string | undefined;
|
|
861
861
|
}, {
|
|
862
|
+
description: string;
|
|
862
863
|
id: string;
|
|
863
864
|
title: string;
|
|
864
865
|
created_at: string;
|
|
865
866
|
updated_at: string;
|
|
866
|
-
description: string;
|
|
867
867
|
instructions: string;
|
|
868
868
|
tool_set: Record<string, string[]>;
|
|
869
869
|
avatar: string;
|
|
@@ -872,11 +872,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
872
872
|
}>;
|
|
873
873
|
}, "strip", z.ZodTypeAny, {
|
|
874
874
|
item: {
|
|
875
|
+
description: string;
|
|
875
876
|
id: string;
|
|
876
877
|
title: string;
|
|
877
878
|
created_at: string;
|
|
878
879
|
updated_at: string;
|
|
879
|
-
description: string;
|
|
880
880
|
instructions: string;
|
|
881
881
|
tool_set: Record<string, string[]>;
|
|
882
882
|
avatar: string;
|
|
@@ -885,11 +885,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
885
885
|
};
|
|
886
886
|
}, {
|
|
887
887
|
item: {
|
|
888
|
+
description: string;
|
|
888
889
|
id: string;
|
|
889
890
|
title: string;
|
|
890
891
|
created_at: string;
|
|
891
892
|
updated_at: string;
|
|
892
|
-
description: string;
|
|
893
893
|
instructions: string;
|
|
894
894
|
tool_set: Record<string, string[]>;
|
|
895
895
|
avatar: string;
|