@secondlayer/mcp 0.4.1 → 1.0.0
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 +2 -3
- package/dist/bin-http.js +414 -607
- package/dist/bin-http.js.map +11 -14
- package/dist/bin.js +414 -607
- package/dist/bin.js.map +11 -14
- package/dist/index.js +414 -607
- package/dist/index.js.map +11 -14
- package/package.json +8 -5
package/dist/bin.js
CHANGED
|
@@ -10,10 +10,94 @@ import { fileURLToPath } from "node:url";
|
|
|
10
10
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
11
11
|
|
|
12
12
|
// src/resources.ts
|
|
13
|
-
import { templates } from "@secondlayer/subgraphs/templates";
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
import { templates as subgraphTemplates } from "@secondlayer/subgraphs/templates";
|
|
14
|
+
import { templates as workflowTemplates } from "@secondlayer/workflows/templates";
|
|
15
|
+
var FILTERS_REFERENCE = [
|
|
16
|
+
{ type: "stx_transfer", fields: ["sender", "recipient", "minAmount", "maxAmount"] },
|
|
17
|
+
{ type: "stx_mint", fields: ["recipient", "minAmount"] },
|
|
18
|
+
{ type: "stx_burn", fields: ["sender", "minAmount"] },
|
|
19
|
+
{ type: "stx_lock", fields: ["lockedAddress", "minAmount"] },
|
|
20
|
+
{ type: "ft_transfer", fields: ["sender", "recipient", "assetIdentifier", "minAmount", "maxAmount"] },
|
|
21
|
+
{ type: "ft_mint", fields: ["recipient", "assetIdentifier", "minAmount"] },
|
|
22
|
+
{ type: "ft_burn", fields: ["sender", "assetIdentifier", "minAmount"] },
|
|
23
|
+
{ type: "nft_transfer", fields: ["sender", "recipient", "assetIdentifier", "tokenId"] },
|
|
24
|
+
{ type: "nft_mint", fields: ["recipient", "assetIdentifier", "tokenId"] },
|
|
25
|
+
{ type: "nft_burn", fields: ["sender", "assetIdentifier", "tokenId"] },
|
|
26
|
+
{ type: "contract_call", fields: ["contract", "function"] },
|
|
27
|
+
{ type: "contract_deploy", fields: ["contract"] },
|
|
28
|
+
{ type: "print_event", fields: ["contract", "event", "contains"] }
|
|
29
|
+
];
|
|
30
|
+
var COLUMN_TYPES = [
|
|
31
|
+
{
|
|
32
|
+
type: "uint",
|
|
33
|
+
sqlType: "bigint",
|
|
34
|
+
description: "Unsigned integer (Clarity uint)"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
type: "int",
|
|
38
|
+
sqlType: "bigint",
|
|
39
|
+
description: "Signed integer (Clarity int)"
|
|
40
|
+
},
|
|
41
|
+
{ type: "text", sqlType: "text", description: "UTF-8 string" },
|
|
42
|
+
{
|
|
43
|
+
type: "principal",
|
|
44
|
+
sqlType: "text",
|
|
45
|
+
description: "Stacks address (standard or contract)"
|
|
46
|
+
},
|
|
47
|
+
{ type: "bool", sqlType: "boolean", description: "Boolean value" },
|
|
48
|
+
{ type: "json", sqlType: "jsonb", description: "Arbitrary JSON data" },
|
|
49
|
+
{
|
|
50
|
+
options: ["nullable", "indexed", "search"],
|
|
51
|
+
description: "Column options: nullable allows NULL, indexed creates a B-tree index, search enables full-text search"
|
|
52
|
+
}
|
|
53
|
+
];
|
|
54
|
+
function registerResources(server) {
|
|
55
|
+
server.resource("filters", "secondlayer://filters", { description: "Event filter types and their available fields" }, async () => ({
|
|
56
|
+
contents: [
|
|
57
|
+
{
|
|
58
|
+
uri: "secondlayer://filters",
|
|
59
|
+
mimeType: "application/json",
|
|
60
|
+
text: JSON.stringify(FILTERS_REFERENCE, null, 2)
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
}));
|
|
64
|
+
server.resource("column-types", "secondlayer://column-types", { description: "Subgraph column types, SQL mappings, and options" }, async () => ({
|
|
65
|
+
contents: [
|
|
66
|
+
{
|
|
67
|
+
uri: "secondlayer://column-types",
|
|
68
|
+
mimeType: "application/json",
|
|
69
|
+
text: JSON.stringify(COLUMN_TYPES, null, 2)
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}));
|
|
73
|
+
server.resource("templates", "secondlayer://templates", {
|
|
74
|
+
description: "Available subgraph and workflow templates with descriptions and categories"
|
|
75
|
+
}, async () => ({
|
|
76
|
+
contents: [
|
|
77
|
+
{
|
|
78
|
+
uri: "secondlayer://templates",
|
|
79
|
+
mimeType: "application/json",
|
|
80
|
+
text: JSON.stringify([
|
|
81
|
+
...subgraphTemplates.map(({ id, name, description, category }) => ({
|
|
82
|
+
kind: "subgraph",
|
|
83
|
+
id,
|
|
84
|
+
name,
|
|
85
|
+
description,
|
|
86
|
+
category
|
|
87
|
+
})),
|
|
88
|
+
...workflowTemplates.map(({ id, name, description, category, trigger }) => ({
|
|
89
|
+
kind: "workflow",
|
|
90
|
+
id,
|
|
91
|
+
name,
|
|
92
|
+
description,
|
|
93
|
+
category,
|
|
94
|
+
trigger
|
|
95
|
+
}))
|
|
96
|
+
], null, 2)
|
|
97
|
+
}
|
|
98
|
+
]
|
|
99
|
+
}));
|
|
100
|
+
}
|
|
17
101
|
|
|
18
102
|
// src/lib/client.ts
|
|
19
103
|
import { SecondLayer } from "@secondlayer/sdk";
|
|
@@ -24,7 +108,12 @@ function getClient() {
|
|
|
24
108
|
if (!apiKey) {
|
|
25
109
|
throw new Error("SECONDLAYER_API_KEY environment variable is required. " + "Get your key at https://app.secondlayer.tools/settings/api-keys");
|
|
26
110
|
}
|
|
27
|
-
|
|
111
|
+
const baseUrl = process.env.SECONDLAYER_API_URL;
|
|
112
|
+
instance = new SecondLayer({
|
|
113
|
+
apiKey,
|
|
114
|
+
origin: "mcp",
|
|
115
|
+
...baseUrl ? { baseUrl } : {}
|
|
116
|
+
});
|
|
28
117
|
}
|
|
29
118
|
return instance;
|
|
30
119
|
}
|
|
@@ -53,16 +142,6 @@ async function apiRequest(method, path, body) {
|
|
|
53
142
|
}
|
|
54
143
|
|
|
55
144
|
// src/lib/format.ts
|
|
56
|
-
function formatStreamSummary(s) {
|
|
57
|
-
return {
|
|
58
|
-
id: s.id,
|
|
59
|
-
name: s.name,
|
|
60
|
-
status: s.status,
|
|
61
|
-
endpointUrl: s.endpointUrl,
|
|
62
|
-
totalDeliveries: s.totalDeliveries,
|
|
63
|
-
failedDeliveries: s.failedDeliveries
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
145
|
function formatSubgraphSummary(s) {
|
|
67
146
|
return {
|
|
68
147
|
name: s.name,
|
|
@@ -71,16 +150,6 @@ function formatSubgraphSummary(s) {
|
|
|
71
150
|
lastProcessedBlock: s.lastProcessedBlock
|
|
72
151
|
};
|
|
73
152
|
}
|
|
74
|
-
function formatDeliverySummary(d) {
|
|
75
|
-
return {
|
|
76
|
-
id: d.id,
|
|
77
|
-
blockHeight: d.blockHeight,
|
|
78
|
-
status: d.status,
|
|
79
|
-
statusCode: d.statusCode,
|
|
80
|
-
attempts: d.attempts,
|
|
81
|
-
createdAt: d.createdAt
|
|
82
|
-
};
|
|
83
|
-
}
|
|
84
153
|
function withCap(items, cap) {
|
|
85
154
|
return {
|
|
86
155
|
items: items.slice(0, cap),
|
|
@@ -88,6 +157,12 @@ function withCap(items, cap) {
|
|
|
88
157
|
total: items.length
|
|
89
158
|
};
|
|
90
159
|
}
|
|
160
|
+
function jsonResponse(data, isError) {
|
|
161
|
+
return {
|
|
162
|
+
content: [{ type: "text", text: JSON.stringify(data, null, 2) }],
|
|
163
|
+
...isError && { isError: true }
|
|
164
|
+
};
|
|
165
|
+
}
|
|
91
166
|
|
|
92
167
|
// src/lib/tool.ts
|
|
93
168
|
function defineTool(server, name, description, schema, handler) {
|
|
@@ -112,514 +187,17 @@ function defineTool(server, name, description, schema, handler) {
|
|
|
112
187
|
server.tool(name, description, schema, wrappedHandler);
|
|
113
188
|
}
|
|
114
189
|
|
|
115
|
-
// src/tools/streams.ts
|
|
116
|
-
var FilterSchema = z.discriminatedUnion("type", [
|
|
117
|
-
z.object({
|
|
118
|
-
type: z.literal("stx_transfer"),
|
|
119
|
-
sender: z.string().optional(),
|
|
120
|
-
recipient: z.string().optional(),
|
|
121
|
-
minAmount: z.number().optional(),
|
|
122
|
-
maxAmount: z.number().optional()
|
|
123
|
-
}),
|
|
124
|
-
z.object({
|
|
125
|
-
type: z.literal("stx_mint"),
|
|
126
|
-
recipient: z.string().optional(),
|
|
127
|
-
minAmount: z.number().optional()
|
|
128
|
-
}),
|
|
129
|
-
z.object({
|
|
130
|
-
type: z.literal("stx_burn"),
|
|
131
|
-
sender: z.string().optional(),
|
|
132
|
-
minAmount: z.number().optional()
|
|
133
|
-
}),
|
|
134
|
-
z.object({
|
|
135
|
-
type: z.literal("stx_lock"),
|
|
136
|
-
lockedAddress: z.string().optional(),
|
|
137
|
-
minAmount: z.number().optional()
|
|
138
|
-
}),
|
|
139
|
-
z.object({
|
|
140
|
-
type: z.literal("ft_transfer"),
|
|
141
|
-
sender: z.string().optional(),
|
|
142
|
-
recipient: z.string().optional(),
|
|
143
|
-
assetIdentifier: z.string().optional(),
|
|
144
|
-
minAmount: z.number().optional()
|
|
145
|
-
}),
|
|
146
|
-
z.object({
|
|
147
|
-
type: z.literal("ft_mint"),
|
|
148
|
-
recipient: z.string().optional(),
|
|
149
|
-
assetIdentifier: z.string().optional(),
|
|
150
|
-
minAmount: z.number().optional()
|
|
151
|
-
}),
|
|
152
|
-
z.object({
|
|
153
|
-
type: z.literal("ft_burn"),
|
|
154
|
-
sender: z.string().optional(),
|
|
155
|
-
assetIdentifier: z.string().optional(),
|
|
156
|
-
minAmount: z.number().optional()
|
|
157
|
-
}),
|
|
158
|
-
z.object({
|
|
159
|
-
type: z.literal("nft_transfer"),
|
|
160
|
-
sender: z.string().optional(),
|
|
161
|
-
recipient: z.string().optional(),
|
|
162
|
-
assetIdentifier: z.string().optional(),
|
|
163
|
-
tokenId: z.string().optional()
|
|
164
|
-
}),
|
|
165
|
-
z.object({
|
|
166
|
-
type: z.literal("nft_mint"),
|
|
167
|
-
recipient: z.string().optional(),
|
|
168
|
-
assetIdentifier: z.string().optional(),
|
|
169
|
-
tokenId: z.string().optional()
|
|
170
|
-
}),
|
|
171
|
-
z.object({
|
|
172
|
-
type: z.literal("nft_burn"),
|
|
173
|
-
sender: z.string().optional(),
|
|
174
|
-
assetIdentifier: z.string().optional(),
|
|
175
|
-
tokenId: z.string().optional()
|
|
176
|
-
}),
|
|
177
|
-
z.object({
|
|
178
|
-
type: z.literal("contract_call"),
|
|
179
|
-
contractId: z.string().optional(),
|
|
180
|
-
functionName: z.string().optional(),
|
|
181
|
-
caller: z.string().optional()
|
|
182
|
-
}),
|
|
183
|
-
z.object({
|
|
184
|
-
type: z.literal("contract_deploy"),
|
|
185
|
-
deployer: z.string().optional(),
|
|
186
|
-
contractName: z.string().optional()
|
|
187
|
-
}),
|
|
188
|
-
z.object({
|
|
189
|
-
type: z.literal("print_event"),
|
|
190
|
-
contractId: z.string().optional(),
|
|
191
|
-
topic: z.string().optional(),
|
|
192
|
-
contains: z.string().optional()
|
|
193
|
-
})
|
|
194
|
-
]);
|
|
195
|
-
function registerStreamTools(server) {
|
|
196
|
-
defineTool(server, "streams_list", "List all webhook streams. Returns summary fields only.", {
|
|
197
|
-
status: z.enum(["active", "inactive", "paused", "failed"]).optional().describe("Filter by status")
|
|
198
|
-
}, async ({ status }) => {
|
|
199
|
-
const { streams } = await getClient().streams.list(status ? { status } : undefined);
|
|
200
|
-
return {
|
|
201
|
-
content: [
|
|
202
|
-
{
|
|
203
|
-
type: "text",
|
|
204
|
-
text: JSON.stringify(streams.map(formatStreamSummary), null, 2)
|
|
205
|
-
}
|
|
206
|
-
]
|
|
207
|
-
};
|
|
208
|
-
});
|
|
209
|
-
defineTool(server, "streams_get", "Get full details of a stream by ID (accepts UUID prefix).", { id: z.string().describe("Stream UUID or prefix") }, async ({ id }) => {
|
|
210
|
-
const stream = await getClient().streams.get(id);
|
|
211
|
-
return {
|
|
212
|
-
content: [{ type: "text", text: JSON.stringify(stream, null, 2) }]
|
|
213
|
-
};
|
|
214
|
-
});
|
|
215
|
-
defineTool(server, "streams_create", "Create a new webhook stream with filters.", {
|
|
216
|
-
name: z.string().describe("Stream name"),
|
|
217
|
-
endpointUrl: z.string().describe("Webhook endpoint URL"),
|
|
218
|
-
filters: z.array(FilterSchema).min(1).describe("Event filters (at least one required)")
|
|
219
|
-
}, async ({ name, endpointUrl, filters }) => {
|
|
220
|
-
const result = await getClient().streams.create({
|
|
221
|
-
name,
|
|
222
|
-
endpointUrl,
|
|
223
|
-
filters
|
|
224
|
-
});
|
|
225
|
-
return {
|
|
226
|
-
content: [
|
|
227
|
-
{
|
|
228
|
-
type: "text",
|
|
229
|
-
text: JSON.stringify({ id: result.stream.id, signingSecret: result.signingSecret }, null, 2)
|
|
230
|
-
}
|
|
231
|
-
]
|
|
232
|
-
};
|
|
233
|
-
});
|
|
234
|
-
defineTool(server, "streams_update", "Update a stream's name, endpoint, or filters.", {
|
|
235
|
-
id: z.string().describe("Stream UUID or prefix"),
|
|
236
|
-
name: z.string().optional().describe("New name"),
|
|
237
|
-
endpointUrl: z.string().optional().describe("New endpoint URL"),
|
|
238
|
-
filters: z.array(FilterSchema).min(1).optional().describe("New filters")
|
|
239
|
-
}, async ({ id, name, endpointUrl, filters }) => {
|
|
240
|
-
const data = {};
|
|
241
|
-
if (name !== undefined)
|
|
242
|
-
data.name = name;
|
|
243
|
-
if (endpointUrl !== undefined)
|
|
244
|
-
data.endpointUrl = endpointUrl;
|
|
245
|
-
if (filters !== undefined)
|
|
246
|
-
data.filters = filters;
|
|
247
|
-
const stream = await getClient().streams.update(id, data);
|
|
248
|
-
return {
|
|
249
|
-
content: [
|
|
250
|
-
{
|
|
251
|
-
type: "text",
|
|
252
|
-
text: JSON.stringify(formatStreamSummary(stream), null, 2)
|
|
253
|
-
}
|
|
254
|
-
]
|
|
255
|
-
};
|
|
256
|
-
});
|
|
257
|
-
defineTool(server, "streams_delete", "Delete a stream permanently.", { id: z.string().describe("Stream UUID or prefix") }, async ({ id }) => {
|
|
258
|
-
await getClient().streams.delete(id);
|
|
259
|
-
return { content: [{ type: "text", text: `Stream ${id} deleted.` }] };
|
|
260
|
-
});
|
|
261
|
-
defineTool(server, "streams_toggle", "Enable or disable a stream.", {
|
|
262
|
-
id: z.string().describe("Stream UUID or prefix"),
|
|
263
|
-
enabled: z.boolean().describe("true to enable, false to disable")
|
|
264
|
-
}, async ({ id, enabled }) => {
|
|
265
|
-
const stream = enabled ? await getClient().streams.enable(id) : await getClient().streams.disable(id);
|
|
266
|
-
return {
|
|
267
|
-
content: [
|
|
268
|
-
{
|
|
269
|
-
type: "text",
|
|
270
|
-
text: JSON.stringify({ id: stream.id, status: stream.status }, null, 2)
|
|
271
|
-
}
|
|
272
|
-
]
|
|
273
|
-
};
|
|
274
|
-
});
|
|
275
|
-
defineTool(server, "streams_deliveries", "List recent deliveries for a stream (max 25).", {
|
|
276
|
-
id: z.string().describe("Stream UUID or prefix"),
|
|
277
|
-
limit: z.number().max(25).optional().describe("Max results (default 25)"),
|
|
278
|
-
status: z.string().optional().describe("Filter by delivery status")
|
|
279
|
-
}, async ({ id, limit, status }) => {
|
|
280
|
-
const { deliveries } = await getClient().streams.listDeliveries(id, {
|
|
281
|
-
limit: limit ?? 25,
|
|
282
|
-
status
|
|
283
|
-
});
|
|
284
|
-
const result = withCap(deliveries.map(formatDeliverySummary), 25);
|
|
285
|
-
return {
|
|
286
|
-
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
287
|
-
};
|
|
288
|
-
});
|
|
289
|
-
defineTool(server, "streams_pause_all", "Pause all active streams. Without confirm: true, returns a preview of streams that would be paused.", {
|
|
290
|
-
confirm: z.boolean().optional().describe("Set to true to execute. Omit or false for preview only.")
|
|
291
|
-
}, async ({ confirm }) => {
|
|
292
|
-
if (!confirm) {
|
|
293
|
-
const { streams } = await getClient().streams.list({
|
|
294
|
-
status: "active"
|
|
295
|
-
});
|
|
296
|
-
const names = streams.map((s) => s.name);
|
|
297
|
-
return {
|
|
298
|
-
content: [
|
|
299
|
-
{
|
|
300
|
-
type: "text",
|
|
301
|
-
text: JSON.stringify({ preview: true, count: names.length, streams: names }, null, 2)
|
|
302
|
-
}
|
|
303
|
-
]
|
|
304
|
-
};
|
|
305
|
-
}
|
|
306
|
-
const result = await getClient().streams.pauseAll();
|
|
307
|
-
return {
|
|
308
|
-
content: [
|
|
309
|
-
{
|
|
310
|
-
type: "text",
|
|
311
|
-
text: JSON.stringify({
|
|
312
|
-
paused: result.paused,
|
|
313
|
-
streams: result.streams.map(formatStreamSummary)
|
|
314
|
-
}, null, 2)
|
|
315
|
-
}
|
|
316
|
-
]
|
|
317
|
-
};
|
|
318
|
-
});
|
|
319
|
-
defineTool(server, "streams_resume_all", "Resume all paused streams. Without confirm: true, returns a preview of streams that would be resumed.", {
|
|
320
|
-
confirm: z.boolean().optional().describe("Set to true to execute. Omit or false for preview only.")
|
|
321
|
-
}, async ({ confirm }) => {
|
|
322
|
-
if (!confirm) {
|
|
323
|
-
const { streams } = await getClient().streams.list({
|
|
324
|
-
status: "paused"
|
|
325
|
-
});
|
|
326
|
-
const names = streams.map((s) => s.name);
|
|
327
|
-
return {
|
|
328
|
-
content: [
|
|
329
|
-
{
|
|
330
|
-
type: "text",
|
|
331
|
-
text: JSON.stringify({ preview: true, count: names.length, streams: names }, null, 2)
|
|
332
|
-
}
|
|
333
|
-
]
|
|
334
|
-
};
|
|
335
|
-
}
|
|
336
|
-
const result = await getClient().streams.resumeAll();
|
|
337
|
-
return {
|
|
338
|
-
content: [
|
|
339
|
-
{
|
|
340
|
-
type: "text",
|
|
341
|
-
text: JSON.stringify({
|
|
342
|
-
resumed: result.resumed,
|
|
343
|
-
streams: result.streams.map(formatStreamSummary)
|
|
344
|
-
}, null, 2)
|
|
345
|
-
}
|
|
346
|
-
]
|
|
347
|
-
};
|
|
348
|
-
});
|
|
349
|
-
defineTool(server, "streams_replay", "Replay blocks through a stream, re-delivering events for a block range.", {
|
|
350
|
-
id: z.string().describe("Stream UUID or prefix"),
|
|
351
|
-
fromBlock: z.number().describe("Start block height (inclusive)"),
|
|
352
|
-
toBlock: z.number().describe("End block height (inclusive)")
|
|
353
|
-
}, async ({ id, fromBlock, toBlock }) => {
|
|
354
|
-
const result = await apiRequest("POST", `/api/streams/${id}/replay`, { fromBlock, toBlock });
|
|
355
|
-
return {
|
|
356
|
-
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
357
|
-
};
|
|
358
|
-
});
|
|
359
|
-
defineTool(server, "streams_rotate_secret", "Rotate the signing secret for a stream. Returns the new secret.", { id: z.string().describe("Stream UUID or prefix") }, async ({ id }) => {
|
|
360
|
-
const result = await getClient().streams.rotateSecret(id);
|
|
361
|
-
return {
|
|
362
|
-
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
363
|
-
};
|
|
364
|
-
});
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
// src/resources.ts
|
|
368
|
-
var FILTERS_REFERENCE = FilterSchema.options.map((opt) => ({
|
|
369
|
-
type: opt.shape.type.def.values[0],
|
|
370
|
-
fields: Object.keys(opt.shape).filter((k) => k !== "type")
|
|
371
|
-
}));
|
|
372
|
-
var COLUMN_TYPES = [
|
|
373
|
-
{
|
|
374
|
-
type: "uint",
|
|
375
|
-
sqlType: "bigint",
|
|
376
|
-
description: "Unsigned integer (Clarity uint)"
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
type: "int",
|
|
380
|
-
sqlType: "bigint",
|
|
381
|
-
description: "Signed integer (Clarity int)"
|
|
382
|
-
},
|
|
383
|
-
{ type: "text", sqlType: "text", description: "UTF-8 string" },
|
|
384
|
-
{
|
|
385
|
-
type: "principal",
|
|
386
|
-
sqlType: "text",
|
|
387
|
-
description: "Stacks address (standard or contract)"
|
|
388
|
-
},
|
|
389
|
-
{ type: "bool", sqlType: "boolean", description: "Boolean value" },
|
|
390
|
-
{ type: "json", sqlType: "jsonb", description: "Arbitrary JSON data" },
|
|
391
|
-
{
|
|
392
|
-
options: ["nullable", "indexed", "search"],
|
|
393
|
-
description: "Column options: nullable allows NULL, indexed creates a B-tree index, search enables full-text search"
|
|
394
|
-
}
|
|
395
|
-
];
|
|
396
|
-
function registerResources(server) {
|
|
397
|
-
server.resource("filters", "secondlayer://filters", { description: "Stream filter types and their available fields" }, async () => ({
|
|
398
|
-
contents: [
|
|
399
|
-
{
|
|
400
|
-
uri: "secondlayer://filters",
|
|
401
|
-
mimeType: "application/json",
|
|
402
|
-
text: JSON.stringify(FILTERS_REFERENCE, null, 2)
|
|
403
|
-
}
|
|
404
|
-
]
|
|
405
|
-
}));
|
|
406
|
-
server.resource("column-types", "secondlayer://column-types", { description: "Subgraph column types, SQL mappings, and options" }, async () => ({
|
|
407
|
-
contents: [
|
|
408
|
-
{
|
|
409
|
-
uri: "secondlayer://column-types",
|
|
410
|
-
mimeType: "application/json",
|
|
411
|
-
text: JSON.stringify(COLUMN_TYPES, null, 2)
|
|
412
|
-
}
|
|
413
|
-
]
|
|
414
|
-
}));
|
|
415
|
-
server.resource("templates", "secondlayer://templates", {
|
|
416
|
-
description: "Available subgraph templates with descriptions and categories"
|
|
417
|
-
}, async () => ({
|
|
418
|
-
contents: [
|
|
419
|
-
{
|
|
420
|
-
uri: "secondlayer://templates",
|
|
421
|
-
mimeType: "application/json",
|
|
422
|
-
text: JSON.stringify(templates.map(({ id, name, description, category }) => ({
|
|
423
|
-
id,
|
|
424
|
-
name,
|
|
425
|
-
description,
|
|
426
|
-
category
|
|
427
|
-
})), null, 2)
|
|
428
|
-
}
|
|
429
|
-
]
|
|
430
|
-
}));
|
|
431
|
-
}
|
|
432
|
-
|
|
433
190
|
// src/tools/account.ts
|
|
434
191
|
function registerAccountTools(server) {
|
|
435
192
|
defineTool(server, "account_whoami", "Show the authenticated account's email and plan.", {}, async () => {
|
|
436
193
|
const result = await apiRequest("GET", "/api/accounts/me");
|
|
437
|
-
return
|
|
438
|
-
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
439
|
-
};
|
|
194
|
+
return jsonResponse(result);
|
|
440
195
|
});
|
|
441
196
|
}
|
|
442
197
|
|
|
443
198
|
// src/tools/scaffold.ts
|
|
444
|
-
import {
|
|
445
|
-
|
|
446
|
-
// src/lib/scaffold-generate.ts
|
|
447
|
-
function isAbiBuffer(t) {
|
|
448
|
-
return typeof t === "object" && t !== null && "buff" in t;
|
|
449
|
-
}
|
|
450
|
-
function isAbiStringAscii(t) {
|
|
451
|
-
return typeof t === "object" && t !== null && "string-ascii" in t;
|
|
452
|
-
}
|
|
453
|
-
function isAbiStringUtf8(t) {
|
|
454
|
-
return typeof t === "object" && t !== null && "string-utf8" in t;
|
|
455
|
-
}
|
|
456
|
-
function isAbiOptional(t) {
|
|
457
|
-
return typeof t === "object" && t !== null && "optional" in t;
|
|
458
|
-
}
|
|
459
|
-
function isAbiTuple(t) {
|
|
460
|
-
return typeof t === "object" && t !== null && "tuple" in t;
|
|
461
|
-
}
|
|
462
|
-
function isAbiList(t) {
|
|
463
|
-
return typeof t === "object" && t !== null && "list" in t;
|
|
464
|
-
}
|
|
465
|
-
function isAbiResponse(t) {
|
|
466
|
-
return typeof t === "object" && t !== null && "response" in t;
|
|
467
|
-
}
|
|
468
|
-
function mapType(abiType, nullable) {
|
|
469
|
-
if (typeof abiType === "string") {
|
|
470
|
-
switch (abiType) {
|
|
471
|
-
case "uint128":
|
|
472
|
-
return { type: "uint", nullable };
|
|
473
|
-
case "int128":
|
|
474
|
-
return { type: "int", nullable };
|
|
475
|
-
case "principal":
|
|
476
|
-
case "trait_reference":
|
|
477
|
-
return { type: "principal", nullable };
|
|
478
|
-
case "bool":
|
|
479
|
-
return { type: "boolean", nullable };
|
|
480
|
-
default: {
|
|
481
|
-
const s = abiType;
|
|
482
|
-
if (s.includes("uint"))
|
|
483
|
-
return { type: "uint", nullable };
|
|
484
|
-
if (s.includes("int"))
|
|
485
|
-
return { type: "int", nullable };
|
|
486
|
-
if (s.includes("string") || s.includes("ascii") || s.includes("utf8")) {
|
|
487
|
-
return { type: "text", nullable };
|
|
488
|
-
}
|
|
489
|
-
if (s.includes("buff"))
|
|
490
|
-
return { type: "text", nullable };
|
|
491
|
-
return { type: "jsonb", nullable };
|
|
492
|
-
}
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
if (isAbiBuffer(abiType))
|
|
496
|
-
return { type: "text", nullable };
|
|
497
|
-
if (isAbiStringAscii(abiType) || isAbiStringUtf8(abiType)) {
|
|
498
|
-
return { type: "text", nullable };
|
|
499
|
-
}
|
|
500
|
-
if (isAbiOptional(abiType))
|
|
501
|
-
return mapType(abiType.optional, true);
|
|
502
|
-
if (isAbiList(abiType) || isAbiTuple(abiType))
|
|
503
|
-
return { type: "jsonb", nullable };
|
|
504
|
-
if (isAbiResponse(abiType)) {
|
|
505
|
-
return mapType(abiType.response.ok, nullable);
|
|
506
|
-
}
|
|
507
|
-
return { type: "jsonb", nullable };
|
|
508
|
-
}
|
|
509
|
-
function clarityTypeToSubgraphColumn(abiType) {
|
|
510
|
-
return mapType(abiType, false);
|
|
511
|
-
}
|
|
512
|
-
function toSnake(name) {
|
|
513
|
-
return name.replace(/-/g, "_");
|
|
514
|
-
}
|
|
515
|
-
function toCamel(name) {
|
|
516
|
-
return name.replace(/-([a-z])/g, (_, c) => c.toUpperCase());
|
|
517
|
-
}
|
|
518
|
-
function buildColumns(args) {
|
|
519
|
-
if (args.length === 0)
|
|
520
|
-
return " _placeholder: { type: 'text' }";
|
|
521
|
-
return args.map((arg) => {
|
|
522
|
-
const mapped = clarityTypeToSubgraphColumn(arg.type);
|
|
523
|
-
const nullable = mapped.nullable ? ", nullable: true" : "";
|
|
524
|
-
return ` ${toSnake(arg.name)}: { type: '${mapped.type}'${nullable} }`;
|
|
525
|
-
}).join(`,
|
|
526
|
-
`);
|
|
527
|
-
}
|
|
528
|
-
function buildInsertCall(tableName, args) {
|
|
529
|
-
if (args.length === 0) {
|
|
530
|
-
return ` ctx.insert('${tableName}', {
|
|
531
|
-
sender: ctx.tx.sender,
|
|
532
|
-
});`;
|
|
533
|
-
}
|
|
534
|
-
const mappings = args.map((arg) => {
|
|
535
|
-
return ` ${toSnake(arg.name)}: event.${toCamel(arg.name)}`;
|
|
536
|
-
});
|
|
537
|
-
return ` ctx.insert('${tableName}', {
|
|
538
|
-
${mappings.join(`,
|
|
539
|
-
`)},
|
|
540
|
-
});`;
|
|
541
|
-
}
|
|
542
|
-
function generateSubgraphCode(contractId, functions, subgraphName, events) {
|
|
543
|
-
const contractParts = contractId.split(".");
|
|
544
|
-
const contractName = contractParts[contractParts.length - 1] ?? contractId;
|
|
545
|
-
const name = subgraphName ?? contractName;
|
|
546
|
-
const publicFunctions = functions.filter((f) => f.access === "public");
|
|
547
|
-
const hasEvents = events && events.length > 0;
|
|
548
|
-
if (publicFunctions.length === 0 && !hasEvents) {
|
|
549
|
-
return `// No public functions or events selected for ${contractId}`;
|
|
550
|
-
}
|
|
551
|
-
const tableDefs = [];
|
|
552
|
-
if (hasEvents) {
|
|
553
|
-
for (const ev of events) {
|
|
554
|
-
const tableName = toSnake(ev.name);
|
|
555
|
-
let columns;
|
|
556
|
-
if (isAbiTuple(ev.value)) {
|
|
557
|
-
columns = buildColumns(ev.value.tuple);
|
|
558
|
-
} else {
|
|
559
|
-
columns = ` value: { type: '${clarityTypeToSubgraphColumn(ev.value).type}' }`;
|
|
560
|
-
}
|
|
561
|
-
tableDefs.push(` ${tableName}: {
|
|
562
|
-
columns: {
|
|
563
|
-
${columns}
|
|
564
|
-
}
|
|
565
|
-
}`);
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
for (const fn of publicFunctions) {
|
|
569
|
-
const tableName = toSnake(fn.name);
|
|
570
|
-
const columns = buildColumns(fn.args);
|
|
571
|
-
tableDefs.push(` ${tableName}: {
|
|
572
|
-
columns: {
|
|
573
|
-
${columns}
|
|
574
|
-
}
|
|
575
|
-
}`);
|
|
576
|
-
}
|
|
577
|
-
const schemaBlock = tableDefs.join(`,
|
|
578
|
-
`);
|
|
579
|
-
const sourceEntries = [`{ contract: '${contractId}' }`];
|
|
580
|
-
const handlerEntries = [];
|
|
581
|
-
if (hasEvents) {
|
|
582
|
-
for (const ev of events) {
|
|
583
|
-
const tableName = toSnake(ev.name);
|
|
584
|
-
let insertCall;
|
|
585
|
-
if (isAbiTuple(ev.value)) {
|
|
586
|
-
insertCall = buildInsertCall(tableName, ev.value.tuple);
|
|
587
|
-
} else {
|
|
588
|
-
insertCall = ` ctx.insert('${tableName}', {
|
|
589
|
-
value: event.value,
|
|
590
|
-
});`;
|
|
591
|
-
}
|
|
592
|
-
handlerEntries.push(` '${contractId}::${ev.name}': async (event, ctx) => {
|
|
593
|
-
${insertCall}
|
|
594
|
-
}`);
|
|
595
|
-
}
|
|
596
|
-
}
|
|
597
|
-
for (const fn of publicFunctions) {
|
|
598
|
-
const tableName = toSnake(fn.name);
|
|
599
|
-
const insertCall = buildInsertCall(tableName, fn.args);
|
|
600
|
-
handlerEntries.push(` '${contractId}::${fn.name}': async (event, ctx) => {
|
|
601
|
-
${insertCall}
|
|
602
|
-
}`);
|
|
603
|
-
}
|
|
604
|
-
const handlersBlock = handlerEntries.join(`,
|
|
605
|
-
|
|
606
|
-
`);
|
|
607
|
-
return `import { defineSubgraph } from '@secondlayer/subgraphs';
|
|
608
|
-
|
|
609
|
-
export default defineSubgraph({
|
|
610
|
-
name: '${name}',
|
|
611
|
-
sources: [${sourceEntries.join(", ")}],
|
|
612
|
-
schema: {
|
|
613
|
-
${schemaBlock}
|
|
614
|
-
},
|
|
615
|
-
handlers: {
|
|
616
|
-
${handlersBlock}
|
|
617
|
-
}
|
|
618
|
-
});
|
|
619
|
-
`;
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
// src/tools/scaffold.ts
|
|
199
|
+
import { generateSubgraphCode } from "@secondlayer/scaffold";
|
|
200
|
+
import { z } from "zod/v4";
|
|
623
201
|
var API_BASE = process.env.SECONDLAYER_API_URL || "https://api.secondlayer.tools";
|
|
624
202
|
async function fetchAbi(contractId) {
|
|
625
203
|
const res = await fetch(`${API_BASE}/api/node/contracts/${contractId}/abi`, {
|
|
@@ -638,17 +216,17 @@ async function fetchAbi(contractId) {
|
|
|
638
216
|
}
|
|
639
217
|
function registerScaffoldTools(server) {
|
|
640
218
|
defineTool(server, "scaffold_from_contract", "Generate a subgraph scaffold from a deployed Stacks contract. Fetches the ABI automatically.", {
|
|
641
|
-
contractId:
|
|
642
|
-
subgraphName:
|
|
219
|
+
contractId: z.string().describe("Fully qualified contract ID (e.g. SP102V8P0F7JX67ARQ77WEA3D3CFB5XW39REDT0AM.amm-pool-v2-01)"),
|
|
220
|
+
subgraphName: z.string().optional().describe("Override the subgraph name (defaults to contract name)")
|
|
643
221
|
}, async ({ contractId, subgraphName }) => {
|
|
644
222
|
const { functions, maps } = await fetchAbi(contractId);
|
|
645
223
|
const code = generateSubgraphCode(contractId, functions, subgraphName, maps);
|
|
646
224
|
return { content: [{ type: "text", text: code }] };
|
|
647
225
|
});
|
|
648
226
|
defineTool(server, "scaffold_from_abi", "Generate a subgraph scaffold from a provided ABI JSON. Use when you already have the ABI.", {
|
|
649
|
-
abi:
|
|
650
|
-
contractId:
|
|
651
|
-
subgraphName:
|
|
227
|
+
abi: z.string().describe("ABI JSON string (the full contract ABI object)"),
|
|
228
|
+
contractId: z.string().describe("Fully qualified contract ID"),
|
|
229
|
+
subgraphName: z.string().optional().describe("Override the subgraph name")
|
|
652
230
|
}, async ({ abi, contractId, subgraphName }) => {
|
|
653
231
|
let parsed;
|
|
654
232
|
try {
|
|
@@ -665,51 +243,8 @@ function registerScaffoldTools(server) {
|
|
|
665
243
|
}
|
|
666
244
|
|
|
667
245
|
// src/tools/subgraphs.ts
|
|
668
|
-
import {
|
|
669
|
-
|
|
670
|
-
// src/lib/bundle.ts
|
|
671
|
-
import { validateSubgraphDefinition } from "@secondlayer/subgraphs/validate";
|
|
672
|
-
import esbuild from "esbuild";
|
|
673
|
-
async function bundleSubgraphCode(code) {
|
|
674
|
-
let result;
|
|
675
|
-
try {
|
|
676
|
-
result = await esbuild.build({
|
|
677
|
-
stdin: { contents: code, loader: "ts", resolveDir: process.cwd() },
|
|
678
|
-
bundle: true,
|
|
679
|
-
platform: "node",
|
|
680
|
-
format: "esm",
|
|
681
|
-
external: ["@secondlayer/subgraphs"],
|
|
682
|
-
write: false
|
|
683
|
-
});
|
|
684
|
-
} catch (err) {
|
|
685
|
-
throw new Error(`Bundle failed: ${err instanceof Error ? err.message : String(err)}`);
|
|
686
|
-
}
|
|
687
|
-
const handlerCode = new TextDecoder().decode(result.outputFiles[0].contents);
|
|
688
|
-
let mod;
|
|
689
|
-
try {
|
|
690
|
-
const dataUri = `data:text/javascript;base64,${Buffer.from(handlerCode).toString("base64")}`;
|
|
691
|
-
mod = await import(dataUri);
|
|
692
|
-
} catch (err) {
|
|
693
|
-
throw new Error(`Module evaluation failed: ${err instanceof Error ? err.message : String(err)}`);
|
|
694
|
-
}
|
|
695
|
-
const def = mod.default ?? mod;
|
|
696
|
-
let validated;
|
|
697
|
-
try {
|
|
698
|
-
validated = validateSubgraphDefinition(def);
|
|
699
|
-
} catch (err) {
|
|
700
|
-
throw new Error(`Validation failed: ${err instanceof Error ? err.message : String(err)}`);
|
|
701
|
-
}
|
|
702
|
-
return {
|
|
703
|
-
name: validated.name,
|
|
704
|
-
version: validated.version,
|
|
705
|
-
description: validated.description,
|
|
706
|
-
sources: validated.sources,
|
|
707
|
-
schema: validated.schema,
|
|
708
|
-
handlerCode
|
|
709
|
-
};
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
// src/tools/subgraphs.ts
|
|
246
|
+
import { bundleSubgraphCode } from "@secondlayer/bundler";
|
|
247
|
+
import { z as z2 } from "zod/v4";
|
|
713
248
|
function registerSubgraphTools(server) {
|
|
714
249
|
defineTool(server, "subgraphs_list", "List all deployed subgraphs. Returns summary fields only.", {}, async () => {
|
|
715
250
|
const { data } = await getClient().subgraphs.list();
|
|
@@ -722,22 +257,22 @@ function registerSubgraphTools(server) {
|
|
|
722
257
|
]
|
|
723
258
|
};
|
|
724
259
|
});
|
|
725
|
-
defineTool(server, "subgraphs_get", "Get full details of a subgraph including schema, health, and table columns.", { name:
|
|
260
|
+
defineTool(server, "subgraphs_get", "Get full details of a subgraph including schema, health, and table columns.", { name: z2.string().describe("Subgraph name") }, async ({ name }) => {
|
|
726
261
|
const detail = await getClient().subgraphs.get(name);
|
|
727
262
|
return {
|
|
728
263
|
content: [{ type: "text", text: JSON.stringify(detail, null, 2) }]
|
|
729
264
|
};
|
|
730
265
|
});
|
|
731
266
|
defineTool(server, "subgraphs_query", 'Query rows from a subgraph table (max 200 rows). Filters support operators: "amount.gte": "1000", "sender.neq": "SP...", "name.like": "%token%". Available operators: eq, neq, gt, gte, lt, lte, like.', {
|
|
732
|
-
name:
|
|
733
|
-
table:
|
|
734
|
-
filters:
|
|
735
|
-
sort:
|
|
736
|
-
order:
|
|
737
|
-
limit:
|
|
738
|
-
offset:
|
|
739
|
-
fields:
|
|
740
|
-
count:
|
|
267
|
+
name: z2.string().describe("Subgraph name"),
|
|
268
|
+
table: z2.string().describe("Table name"),
|
|
269
|
+
filters: z2.record(z2.string(), z2.string()).optional().describe('Column filters — plain values or with operators (e.g. {"amount.gte": "1000", "sender": "SP..."})'),
|
|
270
|
+
sort: z2.string().optional().describe("Column to sort by"),
|
|
271
|
+
order: z2.enum(["asc", "desc"]).optional().describe("Sort order"),
|
|
272
|
+
limit: z2.number().max(200).optional().describe("Max rows (default 50, max 200)"),
|
|
273
|
+
offset: z2.number().optional().describe("Offset for pagination"),
|
|
274
|
+
fields: z2.string().optional().describe('Comma-separated column list to return (e.g. "sender,amount")'),
|
|
275
|
+
count: z2.boolean().optional().describe("If true, return row count instead of rows")
|
|
741
276
|
}, async ({
|
|
742
277
|
name,
|
|
743
278
|
table,
|
|
@@ -770,9 +305,9 @@ function registerSubgraphTools(server) {
|
|
|
770
305
|
};
|
|
771
306
|
});
|
|
772
307
|
defineTool(server, "subgraphs_reindex", "Reindex a subgraph from a specific block range.", {
|
|
773
|
-
name:
|
|
774
|
-
fromBlock:
|
|
775
|
-
toBlock:
|
|
308
|
+
name: z2.string().describe("Subgraph name"),
|
|
309
|
+
fromBlock: z2.number().optional().describe("Start block (defaults to beginning)"),
|
|
310
|
+
toBlock: z2.number().optional().describe("End block (defaults to latest)")
|
|
776
311
|
}, async ({ name, fromBlock, toBlock }) => {
|
|
777
312
|
const result = await getClient().subgraphs.reindex(name, {
|
|
778
313
|
fromBlock,
|
|
@@ -782,13 +317,13 @@ function registerSubgraphTools(server) {
|
|
|
782
317
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
783
318
|
};
|
|
784
319
|
});
|
|
785
|
-
defineTool(server, "subgraphs_delete", "Delete a subgraph permanently.", { name:
|
|
320
|
+
defineTool(server, "subgraphs_delete", "Delete a subgraph permanently.", { name: z2.string().describe("Subgraph name") }, async ({ name }) => {
|
|
786
321
|
const result = await getClient().subgraphs.delete(name);
|
|
787
322
|
return { content: [{ type: "text", text: result.message }] };
|
|
788
323
|
});
|
|
789
324
|
defineTool(server, "subgraphs_deploy", "Deploy a subgraph from TypeScript code. Pass the full defineSubgraph() source — it will be bundled, validated, and deployed.", {
|
|
790
|
-
code:
|
|
791
|
-
reindex:
|
|
325
|
+
code: z2.string().describe("TypeScript source code containing a defineSubgraph() call"),
|
|
326
|
+
reindex: z2.boolean().optional().describe("Force reindex on breaking schema change (drops and rebuilds all data)")
|
|
792
327
|
}, async ({ code, reindex }) => {
|
|
793
328
|
const bundled = await bundleSubgraphCode(code);
|
|
794
329
|
const result = await getClient().subgraphs.deploy({
|
|
@@ -798,16 +333,33 @@ function registerSubgraphTools(server) {
|
|
|
798
333
|
sources: bundled.sources,
|
|
799
334
|
schema: bundled.schema,
|
|
800
335
|
handlerCode: bundled.handlerCode,
|
|
336
|
+
sourceCode: code,
|
|
801
337
|
reindex
|
|
802
338
|
});
|
|
803
339
|
return {
|
|
804
340
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
805
341
|
};
|
|
806
342
|
});
|
|
343
|
+
defineTool(server, "subgraphs_read_source", "Fetch the deployed TypeScript source of a subgraph (plus its stored version). Returns a readOnly payload for subgraphs deployed before source capture — in that case the caller should redeploy via CLI before editing.", { name: z2.string().describe("Subgraph name") }, async ({ name }) => {
|
|
344
|
+
const source = await getClient().subgraphs.getSource(name);
|
|
345
|
+
return {
|
|
346
|
+
content: [{ type: "text", text: JSON.stringify(source, null, 2) }]
|
|
347
|
+
};
|
|
348
|
+
});
|
|
807
349
|
}
|
|
808
350
|
|
|
809
351
|
// src/tools/workflows.ts
|
|
810
|
-
import {
|
|
352
|
+
import { bundleWorkflowCode } from "@secondlayer/bundler";
|
|
353
|
+
import {
|
|
354
|
+
generateWorkflowCode
|
|
355
|
+
} from "@secondlayer/scaffold";
|
|
356
|
+
import { VersionConflictError } from "@secondlayer/sdk";
|
|
357
|
+
import {
|
|
358
|
+
getTemplateById as getWorkflowTemplateById,
|
|
359
|
+
templates as workflowTemplates2
|
|
360
|
+
} from "@secondlayer/workflows/templates";
|
|
361
|
+
import { createPatch } from "diff";
|
|
362
|
+
import { z as z3 } from "zod/v4";
|
|
811
363
|
function registerWorkflowTools(server) {
|
|
812
364
|
defineTool(server, "workflows_list", "List all workflows. Returns summary fields only.", {}, async () => {
|
|
813
365
|
const { workflows } = await getClient().workflows.list();
|
|
@@ -820,15 +372,155 @@ function registerWorkflowTools(server) {
|
|
|
820
372
|
]
|
|
821
373
|
};
|
|
822
374
|
});
|
|
823
|
-
defineTool(server, "workflows_get", "Get full details of a workflow by name.", { name:
|
|
375
|
+
defineTool(server, "workflows_get", "Get full details of a workflow by name.", { name: z3.string().describe("Workflow name") }, async ({ name }) => {
|
|
824
376
|
const detail = await getClient().workflows.get(name);
|
|
825
377
|
return {
|
|
826
378
|
content: [{ type: "text", text: JSON.stringify(detail, null, 2) }]
|
|
827
379
|
};
|
|
828
380
|
});
|
|
381
|
+
defineTool(server, "workflows_get_definition", "Return the deployed TypeScript source of a workflow plus its stored version. Returns `sourceCode: null` + `readOnly: true` for workflows deployed before source capture.", { name: z3.string().describe("Workflow name") }, async ({ name }) => {
|
|
382
|
+
const source = await getClient().workflows.getSource(name);
|
|
383
|
+
return {
|
|
384
|
+
content: [{ type: "text", text: JSON.stringify(source, null, 2) }]
|
|
385
|
+
};
|
|
386
|
+
});
|
|
387
|
+
defineTool(server, "workflows_propose_edit", "Validate a proposed edit WITHOUT deploying. Fetches the current stored source, bundles the proposed source, computes a unified diff, and returns everything for review. Use this when you want to show the user a diff before committing — pair it with workflows_deploy(expectedVersion=...) to persist.", {
|
|
388
|
+
name: z3.string().describe("Workflow name"),
|
|
389
|
+
proposedCode: z3.string().describe("New TypeScript source — must compile and validate."),
|
|
390
|
+
expectedVersion: z3.string().regex(/^\d+\.\d+\.\d+$/).optional().describe("Version the proposer is editing from (for audit).")
|
|
391
|
+
}, async ({ name, proposedCode, expectedVersion }) => {
|
|
392
|
+
const current = await getClient().workflows.getSource(name);
|
|
393
|
+
if (current.sourceCode === null) {
|
|
394
|
+
return {
|
|
395
|
+
isError: true,
|
|
396
|
+
content: [
|
|
397
|
+
{
|
|
398
|
+
type: "text",
|
|
399
|
+
text: JSON.stringify({
|
|
400
|
+
error: "Workflow has no stored source. Redeploy via CLI first.",
|
|
401
|
+
readOnly: true,
|
|
402
|
+
version: current.version
|
|
403
|
+
}, null, 2)
|
|
404
|
+
}
|
|
405
|
+
]
|
|
406
|
+
};
|
|
407
|
+
}
|
|
408
|
+
let bundleValid = false;
|
|
409
|
+
let validation;
|
|
410
|
+
let bundleSize = 0;
|
|
411
|
+
try {
|
|
412
|
+
const bundled = await bundleWorkflowCode(proposedCode);
|
|
413
|
+
bundleValid = true;
|
|
414
|
+
bundleSize = Buffer.byteLength(bundled.handlerCode, "utf8");
|
|
415
|
+
validation = {
|
|
416
|
+
name: bundled.name,
|
|
417
|
+
triggerType: bundled.trigger.type
|
|
418
|
+
};
|
|
419
|
+
} catch (err) {
|
|
420
|
+
validation = {
|
|
421
|
+
error: err instanceof Error ? err.message : String(err)
|
|
422
|
+
};
|
|
423
|
+
}
|
|
424
|
+
const diffText = createPatch(`${name}.ts`, current.sourceCode, proposedCode, `v${current.version}`, "proposed");
|
|
425
|
+
return {
|
|
426
|
+
content: [
|
|
427
|
+
{
|
|
428
|
+
type: "text",
|
|
429
|
+
text: JSON.stringify({
|
|
430
|
+
currentVersion: current.version,
|
|
431
|
+
expectedVersion,
|
|
432
|
+
currentSource: current.sourceCode,
|
|
433
|
+
proposedSource: proposedCode,
|
|
434
|
+
diffText,
|
|
435
|
+
bundleValid,
|
|
436
|
+
validation,
|
|
437
|
+
bundleSize
|
|
438
|
+
}, null, 2)
|
|
439
|
+
}
|
|
440
|
+
]
|
|
441
|
+
};
|
|
442
|
+
});
|
|
443
|
+
defineTool(server, "workflows_tail_run", "Tail a workflow run via SSE and return a compacted log. Resolves as soon as the run completes, `limit` events are collected, or `timeoutMs` elapses (default 60s). MCP is not streaming-first — use this for short-lived follow-ups, not long tails.", {
|
|
444
|
+
name: z3.string().describe("Workflow name"),
|
|
445
|
+
runId: z3.string().describe("Run id"),
|
|
446
|
+
limit: z3.number().int().positive().max(200).optional().describe("Max step events to collect (default 50)"),
|
|
447
|
+
timeoutMs: z3.number().int().positive().max(5 * 60 * 1000).optional().describe("Hard timeout in ms (default 60000, max 300000)")
|
|
448
|
+
}, async ({ name, runId, limit, timeoutMs }) => {
|
|
449
|
+
const cap = limit ?? 50;
|
|
450
|
+
const deadline = timeoutMs ?? 60000;
|
|
451
|
+
const events = [];
|
|
452
|
+
let finalStatus = null;
|
|
453
|
+
let stoppedBy = "timeout";
|
|
454
|
+
const controller = new AbortController;
|
|
455
|
+
const timer = setTimeout(() => {
|
|
456
|
+
stoppedBy = "timeout";
|
|
457
|
+
controller.abort();
|
|
458
|
+
}, deadline);
|
|
459
|
+
try {
|
|
460
|
+
await getClient().workflows.streamRun(name, runId, (event) => {
|
|
461
|
+
if (event.type === "step") {
|
|
462
|
+
events.push(event.step);
|
|
463
|
+
if (events.length >= cap) {
|
|
464
|
+
stoppedBy = "limit";
|
|
465
|
+
controller.abort();
|
|
466
|
+
}
|
|
467
|
+
} else if (event.type === "done") {
|
|
468
|
+
finalStatus = event.done.status;
|
|
469
|
+
stoppedBy = "done";
|
|
470
|
+
}
|
|
471
|
+
}, controller.signal);
|
|
472
|
+
} catch (err) {
|
|
473
|
+
if (!(err instanceof Error) || err.name !== "AbortError") {
|
|
474
|
+
throw err;
|
|
475
|
+
}
|
|
476
|
+
} finally {
|
|
477
|
+
clearTimeout(timer);
|
|
478
|
+
}
|
|
479
|
+
return {
|
|
480
|
+
content: [
|
|
481
|
+
{
|
|
482
|
+
type: "text",
|
|
483
|
+
text: JSON.stringify({
|
|
484
|
+
runId,
|
|
485
|
+
finalStatus,
|
|
486
|
+
stoppedBy,
|
|
487
|
+
eventCount: events.length,
|
|
488
|
+
events
|
|
489
|
+
}, null, 2)
|
|
490
|
+
}
|
|
491
|
+
]
|
|
492
|
+
};
|
|
493
|
+
});
|
|
494
|
+
defineTool(server, "workflows_pause_all", "Pause ALL active workflows for the authenticated account. Irreversible only by calling pause/resume per workflow. Returns the list of affected workflows.", {}, async () => {
|
|
495
|
+
const result = await getClient().workflows.pauseAll();
|
|
496
|
+
return {
|
|
497
|
+
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
498
|
+
};
|
|
499
|
+
});
|
|
500
|
+
defineTool(server, "workflows_cancel_run", "Cancel an in-flight workflow run. Marks the run as cancelled and removes any pending queue entry. No-ops if the run is already terminal.", { runId: z3.string().describe("Run id to cancel") }, async ({ runId }) => {
|
|
501
|
+
const result = await getClient().workflows.cancelRun(runId);
|
|
502
|
+
return {
|
|
503
|
+
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
504
|
+
};
|
|
505
|
+
});
|
|
506
|
+
defineTool(server, "workflows_rollback", "Roll a workflow back to a prior version. The restored handler is re-published as a NEW version (audit trail), so no history is lost. Pass toVersion to pick a specific bundle; omit to roll back to the immediate previous version on disk. Last 3 versions are retained.", {
|
|
507
|
+
name: z3.string().describe("Workflow name"),
|
|
508
|
+
toVersion: z3.string().regex(/^\d+\.\d+\.\d+$/).optional().describe("Target version to restore. Must be one of the retained bundles on disk.")
|
|
509
|
+
}, async ({ name, toVersion }) => {
|
|
510
|
+
const result = await getClient().workflows.rollback(name, toVersion);
|
|
511
|
+
return {
|
|
512
|
+
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
513
|
+
};
|
|
514
|
+
});
|
|
515
|
+
defineTool(server, "workflows_delete", "Delete a workflow permanently.", { name: z3.string().describe("Workflow name") }, async ({ name }) => {
|
|
516
|
+
await getClient().workflows.delete(name);
|
|
517
|
+
return {
|
|
518
|
+
content: [{ type: "text", text: `Deleted workflow "${name}"` }]
|
|
519
|
+
};
|
|
520
|
+
});
|
|
829
521
|
defineTool(server, "workflows_trigger", "Trigger a workflow run. Optionally pass input as a JSON string.", {
|
|
830
|
-
name:
|
|
831
|
-
input:
|
|
522
|
+
name: z3.string().describe("Workflow name"),
|
|
523
|
+
input: z3.string().optional().describe("Input as JSON string")
|
|
832
524
|
}, async ({ name, input }) => {
|
|
833
525
|
const parsed = input ? JSON.parse(input) : undefined;
|
|
834
526
|
const result = await getClient().workflows.trigger(name, parsed);
|
|
@@ -836,22 +528,138 @@ function registerWorkflowTools(server) {
|
|
|
836
528
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
837
529
|
};
|
|
838
530
|
});
|
|
839
|
-
defineTool(server, "workflows_pause", "Pause a running workflow.", { name:
|
|
531
|
+
defineTool(server, "workflows_pause", "Pause a running workflow.", { name: z3.string().describe("Workflow name") }, async ({ name }) => {
|
|
840
532
|
await getClient().workflows.pause(name);
|
|
841
533
|
return {
|
|
842
534
|
content: [{ type: "text", text: `Paused workflow "${name}"` }]
|
|
843
535
|
};
|
|
844
536
|
});
|
|
845
|
-
defineTool(server, "workflows_resume", "Resume a paused workflow.", { name:
|
|
537
|
+
defineTool(server, "workflows_resume", "Resume a paused workflow.", { name: z3.string().describe("Workflow name") }, async ({ name }) => {
|
|
846
538
|
await getClient().workflows.resume(name);
|
|
847
539
|
return {
|
|
848
540
|
content: [{ type: "text", text: `Resumed workflow "${name}"` }]
|
|
849
541
|
};
|
|
850
542
|
});
|
|
543
|
+
defineTool(server, "workflows_template_list", "List available workflow templates. Returns metadata only — use workflows_template_get for the full source.", {}, async () => {
|
|
544
|
+
return {
|
|
545
|
+
content: [
|
|
546
|
+
{
|
|
547
|
+
type: "text",
|
|
548
|
+
text: JSON.stringify(workflowTemplates2.map((t) => ({
|
|
549
|
+
id: t.id,
|
|
550
|
+
name: t.name,
|
|
551
|
+
description: t.description,
|
|
552
|
+
category: t.category,
|
|
553
|
+
trigger: t.trigger
|
|
554
|
+
})), null, 2)
|
|
555
|
+
}
|
|
556
|
+
]
|
|
557
|
+
};
|
|
558
|
+
});
|
|
559
|
+
defineTool(server, "workflows_template_get", "Get a workflow template's full TypeScript source and prompt by id.", { id: z3.string().describe("Template id, e.g. 'whale-alert'") }, async ({ id }) => {
|
|
560
|
+
const template = getWorkflowTemplateById(id);
|
|
561
|
+
if (!template) {
|
|
562
|
+
return {
|
|
563
|
+
isError: true,
|
|
564
|
+
content: [
|
|
565
|
+
{
|
|
566
|
+
type: "text",
|
|
567
|
+
text: `Template "${id}" not found. Use workflows_template_list to see available templates.`
|
|
568
|
+
}
|
|
569
|
+
]
|
|
570
|
+
};
|
|
571
|
+
}
|
|
572
|
+
return {
|
|
573
|
+
content: [
|
|
574
|
+
{
|
|
575
|
+
type: "text",
|
|
576
|
+
text: JSON.stringify(template, null, 2)
|
|
577
|
+
}
|
|
578
|
+
]
|
|
579
|
+
};
|
|
580
|
+
});
|
|
581
|
+
defineTool(server, "workflows_scaffold", "Generate a compilable defineWorkflow() skeleton from a typed intent. Returns the TypeScript source; pass it to workflows_deploy to persist. Placeholders inside the source must be filled in before running a real workflow.", {
|
|
582
|
+
name: z3.string().regex(/^[a-z][a-z0-9-]*$/).describe("Workflow name (lowercase, hyphens)"),
|
|
583
|
+
trigger: z3.discriminatedUnion("type", [
|
|
584
|
+
z3.object({
|
|
585
|
+
type: z3.literal("event"),
|
|
586
|
+
filterType: z3.string().optional()
|
|
587
|
+
}),
|
|
588
|
+
z3.object({
|
|
589
|
+
type: z3.literal("schedule"),
|
|
590
|
+
cron: z3.string().min(1),
|
|
591
|
+
timezone: z3.string().optional()
|
|
592
|
+
}),
|
|
593
|
+
z3.object({ type: z3.literal("manual") })
|
|
594
|
+
]).describe("Trigger shape"),
|
|
595
|
+
steps: z3.array(z3.enum(["run", "query", "ai", "deliver"])).describe("Ordered list of step kinds to include in the handler"),
|
|
596
|
+
deliveryTarget: z3.enum(["webhook", "slack", "email", "discord", "telegram"]).optional().describe("Delivery target used when steps includes `deliver`")
|
|
597
|
+
}, async ({ name, trigger, steps, deliveryTarget }) => {
|
|
598
|
+
const code = generateWorkflowCode({
|
|
599
|
+
name,
|
|
600
|
+
trigger,
|
|
601
|
+
steps,
|
|
602
|
+
deliveryTarget
|
|
603
|
+
});
|
|
604
|
+
return { content: [{ type: "text", text: code }] };
|
|
605
|
+
});
|
|
606
|
+
defineTool(server, "workflows_deploy", "Deploy a workflow from TypeScript source. Pass the full defineWorkflow() source — it will be bundled, validated, and deployed. Use expectedVersion for optimistic concurrency, or dryRun to validate without persisting.", {
|
|
607
|
+
code: z3.string().describe("TypeScript source code containing a defineWorkflow() call"),
|
|
608
|
+
expectedVersion: z3.string().regex(/^\d+\.\d+\.\d+$/).optional().describe("Stored version the client expects (major.minor.patch). Server returns 409 on mismatch."),
|
|
609
|
+
dryRun: z3.boolean().optional().describe("If true, validate and bundle only — do not persist.")
|
|
610
|
+
}, async ({ code, expectedVersion, dryRun }) => {
|
|
611
|
+
let bundled;
|
|
612
|
+
try {
|
|
613
|
+
bundled = await bundleWorkflowCode(code);
|
|
614
|
+
} catch (err) {
|
|
615
|
+
return {
|
|
616
|
+
isError: true,
|
|
617
|
+
content: [
|
|
618
|
+
{
|
|
619
|
+
type: "text",
|
|
620
|
+
text: err instanceof Error ? err.message : String(err)
|
|
621
|
+
}
|
|
622
|
+
]
|
|
623
|
+
};
|
|
624
|
+
}
|
|
625
|
+
const base = {
|
|
626
|
+
name: bundled.name,
|
|
627
|
+
trigger: bundled.trigger,
|
|
628
|
+
handlerCode: bundled.handlerCode,
|
|
629
|
+
sourceCode: bundled.sourceCode,
|
|
630
|
+
retries: bundled.retries,
|
|
631
|
+
timeout: bundled.timeout,
|
|
632
|
+
expectedVersion
|
|
633
|
+
};
|
|
634
|
+
try {
|
|
635
|
+
const result = dryRun ? await getClient().workflows.deploy({ ...base, dryRun: true }) : await getClient().workflows.deploy(base);
|
|
636
|
+
return {
|
|
637
|
+
content: [{ type: "text", text: JSON.stringify(result, null, 2) }]
|
|
638
|
+
};
|
|
639
|
+
} catch (err) {
|
|
640
|
+
if (err instanceof VersionConflictError) {
|
|
641
|
+
return {
|
|
642
|
+
isError: true,
|
|
643
|
+
content: [
|
|
644
|
+
{
|
|
645
|
+
type: "text",
|
|
646
|
+
text: JSON.stringify({
|
|
647
|
+
error: err.message,
|
|
648
|
+
code: "VERSION_CONFLICT",
|
|
649
|
+
currentVersion: err.currentVersion,
|
|
650
|
+
expectedVersion: err.expectedVersion
|
|
651
|
+
}, null, 2)
|
|
652
|
+
}
|
|
653
|
+
]
|
|
654
|
+
};
|
|
655
|
+
}
|
|
656
|
+
throw err;
|
|
657
|
+
}
|
|
658
|
+
});
|
|
851
659
|
defineTool(server, "workflows_runs", "List runs for a workflow. Optionally filter by status and limit results.", {
|
|
852
|
-
name:
|
|
853
|
-
status:
|
|
854
|
-
limit:
|
|
660
|
+
name: z3.string().describe("Workflow name"),
|
|
661
|
+
status: z3.enum(["running", "completed", "failed", "cancelled"]).optional().describe("Filter by run status"),
|
|
662
|
+
limit: z3.number().optional().describe("Max runs to return (default 20)")
|
|
855
663
|
}, async ({ name, status, limit }) => {
|
|
856
664
|
const { runs } = await getClient().workflows.listRuns(name, {
|
|
857
665
|
status,
|
|
@@ -872,14 +680,14 @@ function registerWorkflowTools(server) {
|
|
|
872
680
|
import {
|
|
873
681
|
getTemplateById,
|
|
874
682
|
getTemplatesByCategory,
|
|
875
|
-
templates
|
|
683
|
+
templates
|
|
876
684
|
} from "@secondlayer/subgraphs/templates";
|
|
877
|
-
import { z as
|
|
685
|
+
import { z as z4 } from "zod/v4";
|
|
878
686
|
function registerTemplateTools(server) {
|
|
879
687
|
defineTool(server, "templates_list", "List available subgraph templates. Returns metadata only — use templates_get for full code.", {
|
|
880
|
-
category:
|
|
688
|
+
category: z4.enum(["defi", "nft", "token", "infrastructure"]).optional().describe("Filter by category")
|
|
881
689
|
}, async ({ category }) => {
|
|
882
|
-
const list = category ? getTemplatesByCategory(category) :
|
|
690
|
+
const list = category ? getTemplatesByCategory(category) : templates;
|
|
883
691
|
return {
|
|
884
692
|
content: [
|
|
885
693
|
{
|
|
@@ -894,7 +702,7 @@ function registerTemplateTools(server) {
|
|
|
894
702
|
]
|
|
895
703
|
};
|
|
896
704
|
});
|
|
897
|
-
defineTool(server, "templates_get", "Get a template's full code and prompt by ID.", { id:
|
|
705
|
+
defineTool(server, "templates_get", "Get a template's full code and prompt by ID.", { id: z4.string().describe("Template ID (e.g. 'dex-swaps')") }, async ({ id }) => {
|
|
898
706
|
const template = getTemplateById(id);
|
|
899
707
|
if (!template) {
|
|
900
708
|
return {
|
|
@@ -935,7 +743,6 @@ function createServer() {
|
|
|
935
743
|
});
|
|
936
744
|
registerTemplateTools(server);
|
|
937
745
|
registerScaffoldTools(server);
|
|
938
|
-
registerStreamTools(server);
|
|
939
746
|
registerSubgraphTools(server);
|
|
940
747
|
registerAccountTools(server);
|
|
941
748
|
registerWorkflowTools(server);
|
|
@@ -948,5 +755,5 @@ var server = createServer();
|
|
|
948
755
|
var transport = new StdioServerTransport;
|
|
949
756
|
await server.connect(transport);
|
|
950
757
|
|
|
951
|
-
//# debugId=
|
|
758
|
+
//# debugId=683234D740089B7F64756E2164756E21
|
|
952
759
|
//# sourceMappingURL=bin.js.map
|