@x402scan/mcp 0.1.2 → 0.2.1-beta.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 +13 -6
- package/dist/cjs/run-server.cjs +11734 -11207
- package/dist/esm/{chunk-TYBBSC4Q.js → chunk-6PC7EDX4.js} +2 -2
- package/dist/esm/{chunk-IBB75UHN.js → chunk-EU6ZUX43.js} +178 -172
- package/dist/esm/chunk-EU6ZUX43.js.map +1 -0
- package/dist/esm/{chunk-WEP7L2WM.js → chunk-ND5UYYF3.js} +3 -3
- package/dist/esm/{fund-AJQS5MYM.js → fund-POQ5MUH3.js} +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/esm/{install-PEZJQ2MM.js → install-CNZYLKS6.js} +4 -4
- package/dist/esm/server-EI242I3L.js +1628 -0
- package/dist/esm/server-EI242I3L.js.map +1 -0
- package/package.json +5 -5
- package/dist/esm/chunk-IBB75UHN.js.map +0 -1
- package/dist/esm/server-GJU7QTN5.js +0 -1105
- package/dist/esm/server-GJU7QTN5.js.map +0 -1
- /package/dist/esm/{chunk-TYBBSC4Q.js.map → chunk-6PC7EDX4.js.map} +0 -0
- /package/dist/esm/{chunk-WEP7L2WM.js.map → chunk-ND5UYYF3.js.map} +0 -0
- /package/dist/esm/{fund-AJQS5MYM.js.map → fund-POQ5MUH3.js.map} +0 -0
- /package/dist/esm/{install-PEZJQ2MM.js.map → install-CNZYLKS6.js.map} +0 -0
|
@@ -0,0 +1,1628 @@
|
|
|
1
|
+
import {
|
|
2
|
+
MCP_VERSION,
|
|
3
|
+
getBalance
|
|
4
|
+
} from "./chunk-ND5UYYF3.js";
|
|
5
|
+
import {
|
|
6
|
+
DEFAULT_NETWORK,
|
|
7
|
+
err,
|
|
8
|
+
fetchErr,
|
|
9
|
+
fetchHttpErr,
|
|
10
|
+
fetchOk,
|
|
11
|
+
getBaseUrl,
|
|
12
|
+
getChainName,
|
|
13
|
+
getDepositLink,
|
|
14
|
+
getState,
|
|
15
|
+
getWallet,
|
|
16
|
+
isFetchError,
|
|
17
|
+
log,
|
|
18
|
+
ok,
|
|
19
|
+
openDepositLink,
|
|
20
|
+
redeemInviteCode,
|
|
21
|
+
resultFromPromise,
|
|
22
|
+
resultFromThrowable,
|
|
23
|
+
safeFetch,
|
|
24
|
+
safeFetchJson,
|
|
25
|
+
safeParseResponse,
|
|
26
|
+
safeStringifyJson
|
|
27
|
+
} from "./chunk-EU6ZUX43.js";
|
|
28
|
+
|
|
29
|
+
// src/server/index.ts
|
|
30
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
31
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
32
|
+
import { randomBytes } from "crypto";
|
|
33
|
+
|
|
34
|
+
// src/shared/neverthrow/x402/index.ts
|
|
35
|
+
import { createSIWxPayload } from "@x402scan/siwx";
|
|
36
|
+
import { x402HTTPClient } from "@x402/core/http";
|
|
37
|
+
import { x402Client } from "@x402/core/client";
|
|
38
|
+
import { ExactEvmScheme } from "@x402/evm";
|
|
39
|
+
|
|
40
|
+
// src/shared/token.ts
|
|
41
|
+
import { formatUnits } from "viem";
|
|
42
|
+
var tokenStringToNumber = (amount, decimals = 6) => {
|
|
43
|
+
return Number(formatUnits(BigInt(amount), decimals));
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
// src/server/tools/lib/check-balance.ts
|
|
47
|
+
var checkBalance = async ({
|
|
48
|
+
server,
|
|
49
|
+
address,
|
|
50
|
+
amountNeeded,
|
|
51
|
+
message,
|
|
52
|
+
flags,
|
|
53
|
+
surface: surface2
|
|
54
|
+
}) => {
|
|
55
|
+
const balanceResult = await getBalance({ address, flags, surface: surface2 });
|
|
56
|
+
if (balanceResult.isErr()) {
|
|
57
|
+
log.error(JSON.stringify(balanceResult.error, null, 2));
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
const balance = balanceResult.value;
|
|
61
|
+
if (balance.balance < amountNeeded) {
|
|
62
|
+
const capabilities = server.server.getClientCapabilities();
|
|
63
|
+
if (!capabilities?.elicitation) {
|
|
64
|
+
throw new Error(
|
|
65
|
+
`${message(balance.balance)}
|
|
66
|
+
|
|
67
|
+
You can deposit USDC at ${getDepositLink(address, flags)}`
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
const result = await server.server.elicitInput({
|
|
71
|
+
mode: "form",
|
|
72
|
+
message: message(balance.balance),
|
|
73
|
+
requestedSchema: {
|
|
74
|
+
type: "object",
|
|
75
|
+
properties: {}
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
if (result.action === "accept") {
|
|
79
|
+
await openDepositLink(address, flags);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return balance.balance;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
// src/shared/neverthrow/x402/index.ts
|
|
86
|
+
var errorType = "x402";
|
|
87
|
+
var x402Ok = (value) => ok(value);
|
|
88
|
+
var x402Err = (cause, error) => err(errorType, cause, error);
|
|
89
|
+
var x402ResultFromPromise = (surface2, promise, error) => resultFromPromise(errorType, surface2, promise, error);
|
|
90
|
+
var x402ResultFromThrowable = (surface2, fn, error) => resultFromThrowable(errorType, surface2, fn, error);
|
|
91
|
+
var safeGetPaymentRequired = (surface2, client, response) => {
|
|
92
|
+
return x402ResultFromPromise(
|
|
93
|
+
surface2,
|
|
94
|
+
response.json().then(
|
|
95
|
+
(json) => client.getPaymentRequiredResponse(
|
|
96
|
+
(name) => response.headers.get(name),
|
|
97
|
+
json
|
|
98
|
+
),
|
|
99
|
+
() => client.getPaymentRequiredResponse((name) => response.headers.get(name))
|
|
100
|
+
),
|
|
101
|
+
(error) => ({
|
|
102
|
+
cause: "parse_payment_required",
|
|
103
|
+
message: error instanceof Error ? error.message : "Failed to parse payment required"
|
|
104
|
+
})
|
|
105
|
+
);
|
|
106
|
+
};
|
|
107
|
+
var safeCreatePaymentPayload = (surface2, client, paymentRequired) => {
|
|
108
|
+
return x402ResultFromPromise(
|
|
109
|
+
surface2,
|
|
110
|
+
client.createPaymentPayload(paymentRequired),
|
|
111
|
+
(error) => ({
|
|
112
|
+
cause: "create_payment_payload",
|
|
113
|
+
message: error instanceof Error ? error.message : "Failed to create payment payload"
|
|
114
|
+
})
|
|
115
|
+
);
|
|
116
|
+
};
|
|
117
|
+
var safeGetPaymentSettlement = (surface2, response) => {
|
|
118
|
+
return x402ResultFromThrowable(
|
|
119
|
+
surface2,
|
|
120
|
+
() => new x402HTTPClient(new x402Client()).getPaymentSettleResponse(
|
|
121
|
+
(name) => response.headers.get(name)
|
|
122
|
+
),
|
|
123
|
+
(error) => ({
|
|
124
|
+
cause: "get_payment_settlement",
|
|
125
|
+
message: error instanceof Error ? error.message : "Failed to get payment settlement"
|
|
126
|
+
})
|
|
127
|
+
);
|
|
128
|
+
};
|
|
129
|
+
var safeCreateSIWxPayload = (surface2, serverInfo, signer) => {
|
|
130
|
+
return x402ResultFromPromise(
|
|
131
|
+
surface2,
|
|
132
|
+
createSIWxPayload(serverInfo, signer),
|
|
133
|
+
(error) => ({
|
|
134
|
+
cause: "create_siwx_payload",
|
|
135
|
+
message: error instanceof Error ? error.message : "Failed to create SIWX payload"
|
|
136
|
+
})
|
|
137
|
+
);
|
|
138
|
+
};
|
|
139
|
+
var safeWrapFetchWithPayment = ({
|
|
140
|
+
account,
|
|
141
|
+
server,
|
|
142
|
+
surface: surface2,
|
|
143
|
+
flags
|
|
144
|
+
}) => {
|
|
145
|
+
const coreClient = x402Client.fromConfig({
|
|
146
|
+
schemes: [
|
|
147
|
+
{ network: DEFAULT_NETWORK, client: new ExactEvmScheme(account) }
|
|
148
|
+
]
|
|
149
|
+
});
|
|
150
|
+
coreClient.onBeforePaymentCreation(async ({ selectedRequirements }) => {
|
|
151
|
+
const amount = tokenStringToNumber(selectedRequirements.amount);
|
|
152
|
+
await checkBalance({
|
|
153
|
+
surface: surface2,
|
|
154
|
+
server,
|
|
155
|
+
address: account.address,
|
|
156
|
+
amountNeeded: amount,
|
|
157
|
+
message: (balance) => `This request costs ${amount} USDC. Your current balance is ${balance} USDC.`,
|
|
158
|
+
flags
|
|
159
|
+
});
|
|
160
|
+
});
|
|
161
|
+
const client = new x402HTTPClient(coreClient);
|
|
162
|
+
return async (request) => {
|
|
163
|
+
const clonedRequest = request.clone();
|
|
164
|
+
const probeResult = await safeFetch(surface2, request);
|
|
165
|
+
if (probeResult.isErr()) {
|
|
166
|
+
return fetchErr(surface2, probeResult.error);
|
|
167
|
+
}
|
|
168
|
+
if (probeResult.value.status !== 402) {
|
|
169
|
+
return probeResult.andThen(
|
|
170
|
+
(response2) => fetchOk({
|
|
171
|
+
response: response2,
|
|
172
|
+
paymentPayload: void 0
|
|
173
|
+
})
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
const response = probeResult.value;
|
|
177
|
+
const paymentRequiredResult = await safeGetPaymentRequired(
|
|
178
|
+
surface2,
|
|
179
|
+
client,
|
|
180
|
+
response
|
|
181
|
+
);
|
|
182
|
+
if (paymentRequiredResult.isErr()) {
|
|
183
|
+
return paymentRequiredResult;
|
|
184
|
+
}
|
|
185
|
+
const paymentRequired = paymentRequiredResult.value;
|
|
186
|
+
const paymentPayloadResult = await safeCreatePaymentPayload(
|
|
187
|
+
surface2,
|
|
188
|
+
client,
|
|
189
|
+
paymentRequired
|
|
190
|
+
);
|
|
191
|
+
if (paymentPayloadResult.isErr()) {
|
|
192
|
+
return paymentPayloadResult;
|
|
193
|
+
}
|
|
194
|
+
const paymentPayload = paymentPayloadResult.value;
|
|
195
|
+
const paymentHeaders = client.encodePaymentSignatureHeader(paymentPayload);
|
|
196
|
+
if (clonedRequest.headers.has("PAYMENT-SIGNATURE") || clonedRequest.headers.has("X-PAYMENT")) {
|
|
197
|
+
return x402Err(surface2, {
|
|
198
|
+
cause: "payment_already_attempted",
|
|
199
|
+
message: "Payment already attempted"
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
for (const [key, value] of Object.entries(paymentHeaders)) {
|
|
203
|
+
clonedRequest.headers.set(key, value);
|
|
204
|
+
}
|
|
205
|
+
clonedRequest.headers.set(
|
|
206
|
+
"Access-Control-Expose-Headers",
|
|
207
|
+
"PAYMENT-RESPONSE,X-PAYMENT-RESPONSE"
|
|
208
|
+
);
|
|
209
|
+
return await safeFetch(surface2, clonedRequest).andThen(
|
|
210
|
+
(response2) => x402Ok({
|
|
211
|
+
response: response2,
|
|
212
|
+
paymentPayload
|
|
213
|
+
})
|
|
214
|
+
);
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
var safeCheckX402Endpoint = async ({
|
|
218
|
+
surface: surface2,
|
|
219
|
+
resource
|
|
220
|
+
}) => {
|
|
221
|
+
const postResult = await safeGetX402Response({
|
|
222
|
+
surface: surface2,
|
|
223
|
+
resource,
|
|
224
|
+
request: new Request(resource, {
|
|
225
|
+
method: "POST",
|
|
226
|
+
headers: {
|
|
227
|
+
"Content-Type": "application/json"
|
|
228
|
+
}
|
|
229
|
+
})
|
|
230
|
+
});
|
|
231
|
+
if (postResult.isOk()) {
|
|
232
|
+
return postResult;
|
|
233
|
+
}
|
|
234
|
+
const getResult = await safeGetX402Response({
|
|
235
|
+
surface: surface2,
|
|
236
|
+
resource,
|
|
237
|
+
request: new Request(resource, { method: "GET" })
|
|
238
|
+
});
|
|
239
|
+
if (getResult.isOk()) {
|
|
240
|
+
return getResult;
|
|
241
|
+
}
|
|
242
|
+
return x402Err(surface2, {
|
|
243
|
+
cause: "not_x402",
|
|
244
|
+
message: `Resource did not return 402: ${resource}`
|
|
245
|
+
});
|
|
246
|
+
};
|
|
247
|
+
var safeGetX402Response = async ({
|
|
248
|
+
surface: surface2,
|
|
249
|
+
resource,
|
|
250
|
+
request
|
|
251
|
+
}) => {
|
|
252
|
+
const client = new x402HTTPClient(new x402Client());
|
|
253
|
+
const fetchResult = await safeFetch(surface2, request);
|
|
254
|
+
if (fetchResult.isErr()) {
|
|
255
|
+
return fetchResult;
|
|
256
|
+
}
|
|
257
|
+
const response = fetchResult.value;
|
|
258
|
+
if (response.status !== 402) {
|
|
259
|
+
return x402Err(surface2, {
|
|
260
|
+
cause: "not_x402",
|
|
261
|
+
message: `Resource did not return 402: ${resource}`
|
|
262
|
+
});
|
|
263
|
+
}
|
|
264
|
+
const paymentRequiredResult = await safeGetPaymentRequired(
|
|
265
|
+
surface2,
|
|
266
|
+
client,
|
|
267
|
+
response
|
|
268
|
+
);
|
|
269
|
+
if (paymentRequiredResult.isErr()) {
|
|
270
|
+
return paymentRequiredResult;
|
|
271
|
+
}
|
|
272
|
+
return ok({
|
|
273
|
+
paymentRequired: paymentRequiredResult.value,
|
|
274
|
+
resource,
|
|
275
|
+
method: request.method
|
|
276
|
+
});
|
|
277
|
+
};
|
|
278
|
+
|
|
279
|
+
// src/server/lib/site-metadata.ts
|
|
280
|
+
var surface = "getWebPageMetadata";
|
|
281
|
+
var getWebPageMetadata = (url) => {
|
|
282
|
+
return safeFetch(surface, new Request(url)).andThen((response) => safeParseResponse(surface, response)).andThen((parsedResponse) => {
|
|
283
|
+
if (parsedResponse.type === "text") {
|
|
284
|
+
return ok(parseMetadataFromResponse(parsedResponse.data));
|
|
285
|
+
}
|
|
286
|
+
return err("user", surface, {
|
|
287
|
+
cause: "invalid_response_type",
|
|
288
|
+
message: "Invalid response type"
|
|
289
|
+
});
|
|
290
|
+
});
|
|
291
|
+
};
|
|
292
|
+
var parseMetadataFromResponse = (html) => {
|
|
293
|
+
const titleMatch = /<title[^>]*>([\s\S]*?)<\/title>/i.exec(html);
|
|
294
|
+
const title = titleMatch ? titleMatch[1].trim().replace(/\s+/g, " ") : null;
|
|
295
|
+
let descriptionMatch = /<meta\s+name=["']description["']\s+content=["']([^"']*)["']/i.exec(html);
|
|
296
|
+
descriptionMatch ??= /<meta\s+property=["']og:description["']\s+content=["']([^"']*)["']/i.exec(
|
|
297
|
+
html
|
|
298
|
+
);
|
|
299
|
+
descriptionMatch ??= /<meta\s+content=["']([^"']*)["']\s+name=["']description["']/i.exec(html);
|
|
300
|
+
descriptionMatch ??= /<meta\s+content=["']([^"']*)["']\s+property=["']og:description["']/i.exec(
|
|
301
|
+
html
|
|
302
|
+
);
|
|
303
|
+
const description = descriptionMatch ? descriptionMatch[1].trim().replace(/\s+/g, " ") : null;
|
|
304
|
+
return {
|
|
305
|
+
title,
|
|
306
|
+
description
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
|
|
310
|
+
// src/server/lib/x402-extensions.ts
|
|
311
|
+
var getBazaarExtension = (extensions) => {
|
|
312
|
+
const { bazaar } = extensions ?? {};
|
|
313
|
+
if (!bazaar) {
|
|
314
|
+
return void 0;
|
|
315
|
+
}
|
|
316
|
+
return bazaar;
|
|
317
|
+
};
|
|
318
|
+
var getInputSchema = (extensions) => getBazaarExtension(extensions)?.schema.properties.input;
|
|
319
|
+
var getSiwxExtension = (extensions) => {
|
|
320
|
+
const siwx = extensions?.["sign-in-with-x"];
|
|
321
|
+
if (!siwx?.info) {
|
|
322
|
+
return void 0;
|
|
323
|
+
}
|
|
324
|
+
return siwx.info;
|
|
325
|
+
};
|
|
326
|
+
|
|
327
|
+
// src/server/tools/lib/fetch-well-known.ts
|
|
328
|
+
import z from "zod";
|
|
329
|
+
var discoveryDocumentSchema = z.object({
|
|
330
|
+
version: z.number().refine((v) => v === 1, { message: "version must be 1" }),
|
|
331
|
+
resources: z.array(z.string()),
|
|
332
|
+
ownershipProofs: z.array(z.string()).optional(),
|
|
333
|
+
instructions: z.string().optional()
|
|
334
|
+
});
|
|
335
|
+
var fetchWellKnown = async ({ surface: surface2, url }) => {
|
|
336
|
+
const origin = URL.canParse(url) ? new URL(url).origin : url;
|
|
337
|
+
const hostname = URL.canParse(origin) ? new URL(origin).hostname : origin;
|
|
338
|
+
log.info(`Discovering resources for origin: ${origin}`);
|
|
339
|
+
const wellKnownUrl = `${origin}/.well-known/x402`;
|
|
340
|
+
log.debug(`Fetching discovery document from: ${wellKnownUrl}`);
|
|
341
|
+
const wellKnownResult = await safeFetchJson(
|
|
342
|
+
surface2,
|
|
343
|
+
new Request(wellKnownUrl, { headers: { Accept: "application/json" } }),
|
|
344
|
+
discoveryDocumentSchema
|
|
345
|
+
);
|
|
346
|
+
if (wellKnownResult.isOk()) {
|
|
347
|
+
return wellKnownResult;
|
|
348
|
+
} else {
|
|
349
|
+
log.info(`No well-known x402 discovery document found at ${wellKnownUrl}`);
|
|
350
|
+
}
|
|
351
|
+
const dnsQuery = `_x402.${hostname}`;
|
|
352
|
+
log.debug(`Looking up DNS TXT record: ${dnsQuery}`);
|
|
353
|
+
const dnsResult = await safeFetchJson(
|
|
354
|
+
surface2,
|
|
355
|
+
new Request(
|
|
356
|
+
`https://cloudflare-dns.com/dns-query?name=${encodeURIComponent(dnsQuery)}&type=TXT`,
|
|
357
|
+
{ headers: { Accept: "application/dns-json" } }
|
|
358
|
+
),
|
|
359
|
+
z.object({
|
|
360
|
+
Answer: z.array(
|
|
361
|
+
z.object({
|
|
362
|
+
data: z.string()
|
|
363
|
+
})
|
|
364
|
+
).optional()
|
|
365
|
+
})
|
|
366
|
+
);
|
|
367
|
+
if (dnsResult.isOk() && dnsResult.value.Answer && dnsResult.value.Answer.length > 0) {
|
|
368
|
+
const dnsUrl = dnsResult.value.Answer[0].data.replace(/^"|"$/g, "");
|
|
369
|
+
if (URL.canParse(dnsUrl)) {
|
|
370
|
+
const dnsDocResult = await safeFetchJson(
|
|
371
|
+
surface2,
|
|
372
|
+
new Request(dnsUrl, { headers: { Accept: "application/json" } }),
|
|
373
|
+
discoveryDocumentSchema
|
|
374
|
+
);
|
|
375
|
+
if (dnsDocResult.isOk()) {
|
|
376
|
+
return dnsDocResult;
|
|
377
|
+
}
|
|
378
|
+
} else {
|
|
379
|
+
log.debug(`DNS TXT value is not a valid URL: ${dnsUrl}`);
|
|
380
|
+
}
|
|
381
|
+
} else {
|
|
382
|
+
log.info(`No DNS TXT record found for ${dnsQuery}`);
|
|
383
|
+
}
|
|
384
|
+
return err("fetch-well-known", surface2, {
|
|
385
|
+
cause: "not_found",
|
|
386
|
+
message: `No discovery document found for ${origin}`
|
|
387
|
+
});
|
|
388
|
+
};
|
|
389
|
+
|
|
390
|
+
// src/server/lib/origin-data.ts
|
|
391
|
+
var getOriginData = async ({
|
|
392
|
+
origin,
|
|
393
|
+
surface: surface2
|
|
394
|
+
}) => {
|
|
395
|
+
const metadata = (await getWebPageMetadata(origin)).match(
|
|
396
|
+
(ok2) => ok2,
|
|
397
|
+
() => null
|
|
398
|
+
);
|
|
399
|
+
const hostname = URL.canParse(origin) ? new URL(origin).hostname : origin;
|
|
400
|
+
const wellKnownResult = await fetchWellKnown({
|
|
401
|
+
surface: surface2,
|
|
402
|
+
url: origin
|
|
403
|
+
});
|
|
404
|
+
if (wellKnownResult.isErr()) {
|
|
405
|
+
log.error(
|
|
406
|
+
`Failed to fetch well-known for ${hostname}:`,
|
|
407
|
+
wellKnownResult.error
|
|
408
|
+
);
|
|
409
|
+
return;
|
|
410
|
+
}
|
|
411
|
+
const resources = await Promise.all(
|
|
412
|
+
wellKnownResult.value.resources.map(async (resource) => {
|
|
413
|
+
const checkX402EndpointResult = await safeCheckX402Endpoint({
|
|
414
|
+
surface: surface2,
|
|
415
|
+
resource
|
|
416
|
+
});
|
|
417
|
+
return checkX402EndpointResult.match(
|
|
418
|
+
(ok2) => ok2,
|
|
419
|
+
(err2) => {
|
|
420
|
+
log.error(`Failed to check x402 endpoint for ${resource}:`, err2);
|
|
421
|
+
return null;
|
|
422
|
+
}
|
|
423
|
+
);
|
|
424
|
+
})
|
|
425
|
+
);
|
|
426
|
+
const filteredResources = resources.filter(
|
|
427
|
+
(resource) => resource !== null
|
|
428
|
+
);
|
|
429
|
+
const resourcesWithSchema = filteredResources.map((resource) => {
|
|
430
|
+
const inputSchema = getInputSchema(resource.paymentRequired?.extensions);
|
|
431
|
+
if (!inputSchema) {
|
|
432
|
+
return null;
|
|
433
|
+
}
|
|
434
|
+
return {
|
|
435
|
+
resource,
|
|
436
|
+
inputSchema
|
|
437
|
+
};
|
|
438
|
+
}).filter((result) => result !== null);
|
|
439
|
+
return {
|
|
440
|
+
hostname,
|
|
441
|
+
metadata,
|
|
442
|
+
resources: resourcesWithSchema,
|
|
443
|
+
wellKnown: wellKnownResult.value
|
|
444
|
+
};
|
|
445
|
+
};
|
|
446
|
+
|
|
447
|
+
// src/server/resources/origins.ts
|
|
448
|
+
var registerOriginResources = async ({
|
|
449
|
+
server
|
|
450
|
+
}) => {
|
|
451
|
+
const { origins } = getState();
|
|
452
|
+
await Promise.all(
|
|
453
|
+
origins.map(async (origin) => {
|
|
454
|
+
const surface2 = `${origin}-resource`;
|
|
455
|
+
const originData = await getOriginData({ origin, surface: surface2 });
|
|
456
|
+
if (!originData) {
|
|
457
|
+
return;
|
|
458
|
+
}
|
|
459
|
+
const { hostname, metadata, resources } = originData;
|
|
460
|
+
const stringifyResult = safeStringifyJson(surface2, {
|
|
461
|
+
server: originData.hostname,
|
|
462
|
+
name: metadata?.title ?? "",
|
|
463
|
+
description: metadata?.description ?? "",
|
|
464
|
+
resources: resources.map(({ resource, inputSchema }) => ({
|
|
465
|
+
url: resource.resource,
|
|
466
|
+
schema: inputSchema,
|
|
467
|
+
mimeType: resource.paymentRequired.resource.mimeType
|
|
468
|
+
}))
|
|
469
|
+
});
|
|
470
|
+
if (stringifyResult.isErr()) {
|
|
471
|
+
log.error(
|
|
472
|
+
`Failed to stringify response for ${origin}:`,
|
|
473
|
+
stringifyResult.error
|
|
474
|
+
);
|
|
475
|
+
return;
|
|
476
|
+
}
|
|
477
|
+
server.registerResource(
|
|
478
|
+
hostname,
|
|
479
|
+
`api://${hostname}`,
|
|
480
|
+
{
|
|
481
|
+
title: metadata?.title ?? origin,
|
|
482
|
+
description: metadata?.description ?? "",
|
|
483
|
+
mimeType: "application/json"
|
|
484
|
+
},
|
|
485
|
+
() => ({
|
|
486
|
+
contents: [
|
|
487
|
+
{
|
|
488
|
+
uri: hostname,
|
|
489
|
+
text: stringifyResult.value,
|
|
490
|
+
mimeType: "application/json"
|
|
491
|
+
}
|
|
492
|
+
]
|
|
493
|
+
})
|
|
494
|
+
);
|
|
495
|
+
})
|
|
496
|
+
);
|
|
497
|
+
};
|
|
498
|
+
|
|
499
|
+
// src/server/prompts/getting-started.ts
|
|
500
|
+
var PROMPT_CONTENT = `# Getting Started with x402scan
|
|
501
|
+
|
|
502
|
+
You are helping the user get started with x402scan, an MCP server for calling x402-protected APIs with automatic micropayment handling.
|
|
503
|
+
|
|
504
|
+
## Your Goal
|
|
505
|
+
|
|
506
|
+
Guide the user through the complete onboarding workflow to make their first paid API call.
|
|
507
|
+
|
|
508
|
+
## Step-by-Step Workflow
|
|
509
|
+
|
|
510
|
+
### Step 1: Check Wallet Status
|
|
511
|
+
|
|
512
|
+
First, use \`get_wallet_info\` to check the wallet status. This will:
|
|
513
|
+
|
|
514
|
+
- Show the wallet address (auto-created at \`~/.x402scan-mcp/wallet.json\` on first run)
|
|
515
|
+
- Display current USDC balance on Base
|
|
516
|
+
- Provide a deposit link if funding is needed
|
|
517
|
+
|
|
518
|
+
If the wallet has 0 balance, the user needs to deposit USDC on Base before proceeding.
|
|
519
|
+
|
|
520
|
+
### Step 2: Redeem Invite Code (Optional)
|
|
521
|
+
|
|
522
|
+
If the user has an invite code, use \`redeem_invite\` to claim free USDC credits.
|
|
523
|
+
|
|
524
|
+
### Step 3: Discover Available APIs
|
|
525
|
+
|
|
526
|
+
Use \`discover_api_endpoints\` to find x402-protected endpoints on a target origin. For example:
|
|
527
|
+
|
|
528
|
+
- \`enrichx402.com\` - Data enrichment APIs
|
|
529
|
+
- \`stablestudio.io\` - AI image generation APIs
|
|
530
|
+
|
|
531
|
+
This returns a list of available endpoints with their pricing and schemas.
|
|
532
|
+
|
|
533
|
+
### Step 4: Check Endpoint Details (Optional)
|
|
534
|
+
|
|
535
|
+
Use \`check_endpoint_schema\` to probe a specific endpoint for:
|
|
536
|
+
|
|
537
|
+
- Pricing information
|
|
538
|
+
- Required parameters schema
|
|
539
|
+
- Authentication requirements (SIWX if applicable)
|
|
540
|
+
|
|
541
|
+
### Step 5: Make a Paid Request
|
|
542
|
+
|
|
543
|
+
Use \`fetch\` (or \`fetch_with_auth\` for SIWX-protected endpoints) to make the actual API call. The payment is handled automatically from the user's USDC balance.
|
|
544
|
+
|
|
545
|
+
## Key Information
|
|
546
|
+
|
|
547
|
+
- **Network**: Base (eip155:8453)
|
|
548
|
+
- **Currency**: USDC
|
|
549
|
+
- **Wallet Location**: \`~/.x402scan-mcp/wallet.json\`
|
|
550
|
+
- **Protocol**: x402 (HTTP 402 Payment Required with crypto micropayments)
|
|
551
|
+
|
|
552
|
+
## Example Conversation Flow
|
|
553
|
+
|
|
554
|
+
1. "Let me check your wallet status first..."
|
|
555
|
+
2. "Your wallet has X USDC. Here are the available APIs you can call..."
|
|
556
|
+
3. "Which API would you like to use?"
|
|
557
|
+
4. "Here's the endpoint schema. What parameters would you like to use?"
|
|
558
|
+
5. "Making the request..." \u2192 Return the result
|
|
559
|
+
|
|
560
|
+
## Important Notes
|
|
561
|
+
|
|
562
|
+
- Always check wallet balance before attempting paid requests
|
|
563
|
+
- Explain the cost before making a request
|
|
564
|
+
- If balance is low, suggest the deposit link
|
|
565
|
+
- For SIWX-protected endpoints, use \`fetch_with_auth\` instead of \`fetch\`
|
|
566
|
+
`;
|
|
567
|
+
var registerGettingStartedPrompt = ({ server }) => {
|
|
568
|
+
server.registerPrompt(
|
|
569
|
+
"getting_started",
|
|
570
|
+
{
|
|
571
|
+
title: "Getting Started",
|
|
572
|
+
description: "Step-by-step guide to set up your wallet and make your first x402 API call"
|
|
573
|
+
},
|
|
574
|
+
() => ({
|
|
575
|
+
messages: [
|
|
576
|
+
{
|
|
577
|
+
role: "user",
|
|
578
|
+
content: {
|
|
579
|
+
type: "text",
|
|
580
|
+
text: PROMPT_CONTENT
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
role: "user",
|
|
585
|
+
content: {
|
|
586
|
+
type: "text",
|
|
587
|
+
text: `Please help me get started with x402scan. Walk me through the setup process.`
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
]
|
|
591
|
+
})
|
|
592
|
+
);
|
|
593
|
+
};
|
|
594
|
+
|
|
595
|
+
// src/server/prompts/enrich.ts
|
|
596
|
+
import { z as z2 } from "zod";
|
|
597
|
+
var PROMPT_CONTENT2 = `To start, you should check this resource page: https://enrichx402.com/llms.txt, which has access to all of the paid endpoints.
|
|
598
|
+
|
|
599
|
+
- You have access to the x402scan MCP server, which allows you to call paid endpoints which contain potentially extremely useful information.
|
|
600
|
+
- Here are the tools you have access to:
|
|
601
|
+
|
|
602
|
+
mcp__x402__get_wallet_info
|
|
603
|
+
- Get wallet address and USDC balance on Base
|
|
604
|
+
- Auto-creates wallet on first use (~/.x402scan-mcp/wallet.json)
|
|
605
|
+
- Returns deposit link. Check before first paid API call.
|
|
606
|
+
|
|
607
|
+
mcp__x402__discover_api_endpoints
|
|
608
|
+
- Find x402-protected resources on an origin
|
|
609
|
+
- Returns a list of resource URLs
|
|
610
|
+
- Use mcp__x402__check_endpoint_schema separately to get detailed pricing/schema info
|
|
611
|
+
|
|
612
|
+
mcp__x402__check_endpoint_schema
|
|
613
|
+
- Probe endpoint to check if x402-protected
|
|
614
|
+
- Returns pricing, input schema, payment methods
|
|
615
|
+
- Use before mcp__x402__fetch to preview costs. No payment made.
|
|
616
|
+
|
|
617
|
+
mcp__x402__fetch
|
|
618
|
+
- HTTP fetch with automatic x402 payment
|
|
619
|
+
- Detects 402 responses, signs payment, retries with payment headers
|
|
620
|
+
- Returns response data + payment details (price, tx hash) if paid
|
|
621
|
+
- For GET requests: pass parameters as query strings in URL (e.g., ?placeId=value)
|
|
622
|
+
- For POST/PUT/PATCH: pass data in the body parameter
|
|
623
|
+
- ALWAYS use this instead of curl/Bash for x402 endpoints
|
|
624
|
+
|
|
625
|
+
mcp__x402__fetch_with_auth
|
|
626
|
+
- HTTP fetch with automatic SIWX (Sign-In With X) authentication
|
|
627
|
+
- Detects auth requirement, signs wallet proof, retries with credentials
|
|
628
|
+
- For endpoints requiring identity verification without payment
|
|
629
|
+
|
|
630
|
+
mcp__x402__redeem_invite
|
|
631
|
+
- Redeem an invite code for free USDC on Base
|
|
632
|
+
- One-time use per code. Returns amount received and transaction hash.
|
|
633
|
+
|
|
634
|
+
- When using mcp__x402__fetch: Keep in mind:
|
|
635
|
+
- For GET requests, include parameters as query strings in the URL (e.g., ?placeId=value); do not use the body parameter.
|
|
636
|
+
- For POST requests, use the body parameter to include the request body.
|
|
637
|
+
Be sure to use the correct method for the request.
|
|
638
|
+
Any request that passes to one of the paid endpoints should be called with mcp__x402__fetch. Never use curl for these requests.
|
|
639
|
+
|
|
640
|
+
- You should use these paid endpoints to find useful information whenever possible.
|
|
641
|
+
- Opt to use the paid endpoints as often as possible, as they speed up your research and provide higher quality information than traditional WebFetch.
|
|
642
|
+
|
|
643
|
+
- **IMPORTANT:** All the API endpoints below (Exa, Firecrawl, Clado, Google Maps, Apollo, Grok) are accessed via mcp__x402__fetch. They are NOT separate MCP tools. Call them like: mcp__x402__fetch(url="https://enrichx402.com/api/clado/contacts-enrich", method="POST", body={...})
|
|
644
|
+
- Use the Exa and Firecrawl endpoints as advanced / better WebFetch. They will often return data that would otherwise return only javascript or blocked content.
|
|
645
|
+
- If you get a 403 or error when using WebSearch or WebFetch on a website, try with Exa/Firecrawl endpoints immediately as they likely can get around the blockage.
|
|
646
|
+
- Use the Clado endpoints (/api/clado/contacts-enrich, /api/clado/linkedin-scrape) to enrich information about people and find their linkedin or email addresses. If linkedin returns an error code, immediately try with the Clado endpoints.
|
|
647
|
+
- Use the Google Maps endpoints to find reviews, or other local information. Always attempt to include review information in your findings if relevant.
|
|
648
|
+
- **Google Maps text-search/full endpoint:** When calling POST https://enrichx402.com/api/google-maps/text-search/full, ALWAYS use maxResultCount=1-3, never 5. Using 5 produces too much context. If you get excessive context in the response, retry with maxResultCount=1.
|
|
649
|
+
- All these are REST API endpoints called via mcp__x402__fetch - do NOT attempt to call mcp__clado__*, mcp__exa__*, mcp__google_maps__*, etc. Those tools do not exist.
|
|
650
|
+
|
|
651
|
+
PAID ENDPOINTS:
|
|
652
|
+
These endpoints are always available at https://enrichx402.com. You should always fetch from this domain.`;
|
|
653
|
+
var INFER_TASK_INSTRUCTIONS = `No specific query was provided.
|
|
654
|
+
|
|
655
|
+
Your task:
|
|
656
|
+
1. Review the conversation history and session context
|
|
657
|
+
2. Identify what the user is currently working on or trying to accomplish
|
|
658
|
+
3. Determine the most likely way the premium APIs could help (e.g., enriching contact info, fetching blocked web content, finding business reviews, etc.)
|
|
659
|
+
4. Briefly state what task you've inferred and why
|
|
660
|
+
5. Execute that task immediately using the appropriate enrichment tools
|
|
661
|
+
|
|
662
|
+
Be proactive - don't ask for confirmation, just identify the most valuable enrichment opportunity and act on it.`;
|
|
663
|
+
var QUERY_INSTRUCTIONS = (query) => `The user's query is: ${query}
|
|
664
|
+
|
|
665
|
+
Your task:
|
|
666
|
+
1. Analyze the query to understand what information or enrichment the user needs
|
|
667
|
+
2. If anything is unclear or you need more details to use the APIs effectively, ask 1-2 clarifying questions first
|
|
668
|
+
3. Once you have enough context, use the premium APIs to fulfill the request
|
|
669
|
+
4. Return comprehensive results with relevant details
|
|
670
|
+
|
|
671
|
+
Be thorough - these premium APIs provide higher quality data than free alternatives.`;
|
|
672
|
+
var registerEnrichPrompt = ({ server }) => {
|
|
673
|
+
server.registerPrompt(
|
|
674
|
+
"enrich",
|
|
675
|
+
{
|
|
676
|
+
title: "Enrich",
|
|
677
|
+
description: "Use premium APIs to enrich data. Optionally provide a query, or let the assistant infer the best task from context.",
|
|
678
|
+
argsSchema: {
|
|
679
|
+
query: z2.string().optional().describe(
|
|
680
|
+
"Optional: The user's query to enrich. If omitted, the assistant will infer the task from conversation context."
|
|
681
|
+
)
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
({ query }) => ({
|
|
685
|
+
messages: [
|
|
686
|
+
{
|
|
687
|
+
role: "user",
|
|
688
|
+
content: {
|
|
689
|
+
type: "text",
|
|
690
|
+
text: PROMPT_CONTENT2
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
role: "user",
|
|
695
|
+
content: {
|
|
696
|
+
type: "text",
|
|
697
|
+
text: query ? QUERY_INSTRUCTIONS(query) : INFER_TASK_INSTRUCTIONS
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
]
|
|
701
|
+
})
|
|
702
|
+
);
|
|
703
|
+
};
|
|
704
|
+
|
|
705
|
+
// src/server/prompts/index.ts
|
|
706
|
+
var registerPrompts = async (props) => {
|
|
707
|
+
await Promise.all([
|
|
708
|
+
registerGettingStartedPrompt(props),
|
|
709
|
+
registerEnrichPrompt(props)
|
|
710
|
+
]);
|
|
711
|
+
};
|
|
712
|
+
|
|
713
|
+
// src/server/tools/fetch-origin.ts
|
|
714
|
+
import z4 from "zod";
|
|
715
|
+
|
|
716
|
+
// src/server/tools/response/lib.ts
|
|
717
|
+
var parsedResponseToToolContentPart = (data) => {
|
|
718
|
+
switch (data.type) {
|
|
719
|
+
case "json":
|
|
720
|
+
return {
|
|
721
|
+
type: "text",
|
|
722
|
+
text: JSON.stringify(data.data, null, 2)
|
|
723
|
+
};
|
|
724
|
+
case "image":
|
|
725
|
+
return {
|
|
726
|
+
type: "image",
|
|
727
|
+
mimeType: data.mimeType,
|
|
728
|
+
data: Buffer.from(data.data).toString("base64")
|
|
729
|
+
};
|
|
730
|
+
case "audio":
|
|
731
|
+
return {
|
|
732
|
+
type: "audio",
|
|
733
|
+
mimeType: data.mimeType,
|
|
734
|
+
data: Buffer.from(data.data).toString("base64")
|
|
735
|
+
};
|
|
736
|
+
case "text":
|
|
737
|
+
return { type: "text", text: data.data };
|
|
738
|
+
default:
|
|
739
|
+
return {
|
|
740
|
+
type: "text",
|
|
741
|
+
text: `Unsupported response type: ${data.type}`
|
|
742
|
+
};
|
|
743
|
+
}
|
|
744
|
+
};
|
|
745
|
+
|
|
746
|
+
// src/server/tools/response/error.ts
|
|
747
|
+
var buildMcpError = (content) => {
|
|
748
|
+
return {
|
|
749
|
+
content,
|
|
750
|
+
isError: true
|
|
751
|
+
};
|
|
752
|
+
};
|
|
753
|
+
var mcpErrorJson = (error) => {
|
|
754
|
+
return safeStringifyJson("mcp-error-json", error).match(
|
|
755
|
+
(success) => buildMcpError([{ type: "text", text: success }]),
|
|
756
|
+
(error2) => buildMcpError([
|
|
757
|
+
{ type: "text", text: JSON.stringify(error2, null, 2) }
|
|
758
|
+
])
|
|
759
|
+
);
|
|
760
|
+
};
|
|
761
|
+
var mcpError = async (err2) => {
|
|
762
|
+
const { error } = err2;
|
|
763
|
+
if (isFetchError(error)) {
|
|
764
|
+
switch (error.cause) {
|
|
765
|
+
case "network":
|
|
766
|
+
case "parse":
|
|
767
|
+
return mcpErrorJson({ ...error });
|
|
768
|
+
case "http":
|
|
769
|
+
const { response, ...rest } = error;
|
|
770
|
+
const parseResponseResult = await safeParseResponse(
|
|
771
|
+
"mcp-error-fetch-parse-response",
|
|
772
|
+
response
|
|
773
|
+
);
|
|
774
|
+
return buildMcpError([
|
|
775
|
+
{ type: "text", text: JSON.stringify(rest, null, 2) },
|
|
776
|
+
...parseResponseResult.match(
|
|
777
|
+
(success) => [parsedResponseToToolContentPart(success)],
|
|
778
|
+
() => []
|
|
779
|
+
)
|
|
780
|
+
]);
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
return mcpErrorJson({ ...error });
|
|
784
|
+
};
|
|
785
|
+
var mcpErrorFetch = async (surface2, response) => {
|
|
786
|
+
return mcpError(fetchHttpErr(surface2, response));
|
|
787
|
+
};
|
|
788
|
+
|
|
789
|
+
// src/server/tools/response/success.ts
|
|
790
|
+
var buildMcpSuccess = (content) => {
|
|
791
|
+
return {
|
|
792
|
+
content
|
|
793
|
+
};
|
|
794
|
+
};
|
|
795
|
+
var mcpSuccessJson = (data) => {
|
|
796
|
+
return safeStringifyJson("mcp-success-text", data).match(
|
|
797
|
+
(success) => buildMcpSuccess([{ type: "text", text: success }]),
|
|
798
|
+
(error) => mcpErrorJson(error)
|
|
799
|
+
);
|
|
800
|
+
};
|
|
801
|
+
var mcpSuccessStructuredJson = (data) => {
|
|
802
|
+
return safeStringifyJson("mcp-success-structured", data).match(
|
|
803
|
+
(success) => ({
|
|
804
|
+
content: [{ type: "text", text: success }],
|
|
805
|
+
structuredContent: data
|
|
806
|
+
}),
|
|
807
|
+
(error) => mcpErrorJson(error)
|
|
808
|
+
);
|
|
809
|
+
};
|
|
810
|
+
var mcpSuccessResponse = (data, extra) => {
|
|
811
|
+
const parsedExtra = extra ? safeStringifyJson("mcp-success-extra", extra).match(
|
|
812
|
+
(success) => success,
|
|
813
|
+
() => void 0
|
|
814
|
+
) : void 0;
|
|
815
|
+
return buildMcpSuccess([
|
|
816
|
+
parsedResponseToToolContentPart(data),
|
|
817
|
+
...parsedExtra ? [{ type: "text", text: parsedExtra }] : []
|
|
818
|
+
]);
|
|
819
|
+
};
|
|
820
|
+
|
|
821
|
+
// src/server/tools/lib/request.ts
|
|
822
|
+
import z3 from "zod";
|
|
823
|
+
var requestSchema = z3.object({
|
|
824
|
+
url: z3.url().describe("The endpoint URL"),
|
|
825
|
+
method: z3.enum(["GET", "POST", "PUT", "DELETE", "PATCH"]).default("GET").describe("HTTP method"),
|
|
826
|
+
body: z3.unknown().optional().describe("Request body for POST/PUT/PATCH methods"),
|
|
827
|
+
headers: z3.record(z3.string(), z3.string()).optional().describe("Additional headers to include").default({})
|
|
828
|
+
});
|
|
829
|
+
var buildRequest = ({
|
|
830
|
+
input,
|
|
831
|
+
address,
|
|
832
|
+
sessionId
|
|
833
|
+
}) => {
|
|
834
|
+
return new Request(input.url, {
|
|
835
|
+
method: input.method,
|
|
836
|
+
body: input.body ? typeof input.body === "string" ? input.body : JSON.stringify(input.body) : void 0,
|
|
837
|
+
headers: {
|
|
838
|
+
...input.body ? { "Content-Type": "application/json" } : {},
|
|
839
|
+
...input.headers,
|
|
840
|
+
...address ? { "X-Wallet-Address": address, "X-Client-ID": address } : {},
|
|
841
|
+
...sessionId ? { "X-Session-ID": sessionId } : {}
|
|
842
|
+
}
|
|
843
|
+
});
|
|
844
|
+
};
|
|
845
|
+
|
|
846
|
+
// src/server/tools/fetch-origin.ts
|
|
847
|
+
var registerFetchOriginTool = async ({
|
|
848
|
+
server,
|
|
849
|
+
account,
|
|
850
|
+
flags,
|
|
851
|
+
sessionId
|
|
852
|
+
}) => {
|
|
853
|
+
const { origins } = getState();
|
|
854
|
+
await Promise.all(
|
|
855
|
+
origins.map(async (origin) => {
|
|
856
|
+
const surface2 = `${origin}-fetch`;
|
|
857
|
+
const originData = await getOriginData({ origin, surface: surface2 });
|
|
858
|
+
if (!originData) {
|
|
859
|
+
return;
|
|
860
|
+
}
|
|
861
|
+
const { hostname, resources, metadata } = originData;
|
|
862
|
+
if (resources.length === 0) {
|
|
863
|
+
return;
|
|
864
|
+
}
|
|
865
|
+
const unionMembers = resources.map(
|
|
866
|
+
({ resource, inputSchema }) => z4.object({
|
|
867
|
+
url: z4.literal(resource.resource).describe(resource.paymentRequired.resource.description),
|
|
868
|
+
method: z4.literal(resource.method),
|
|
869
|
+
..."body" in inputSchema.properties ? {
|
|
870
|
+
body: z4.fromJSONSchema(
|
|
871
|
+
inputSchema.properties.body
|
|
872
|
+
)
|
|
873
|
+
} : {},
|
|
874
|
+
..."query" in inputSchema.properties ? {
|
|
875
|
+
queryParams: z4.fromJSONSchema(
|
|
876
|
+
inputSchema.properties.query
|
|
877
|
+
)
|
|
878
|
+
} : {},
|
|
879
|
+
..."headers" in inputSchema.properties ? {
|
|
880
|
+
headers: z4.fromJSONSchema(
|
|
881
|
+
inputSchema.properties.headers
|
|
882
|
+
)
|
|
883
|
+
} : {}
|
|
884
|
+
})
|
|
885
|
+
);
|
|
886
|
+
const requestSchema2 = z4.discriminatedUnion(
|
|
887
|
+
"url",
|
|
888
|
+
unionMembers
|
|
889
|
+
);
|
|
890
|
+
const site = hostname.split(".")[0];
|
|
891
|
+
server.registerTool(
|
|
892
|
+
site,
|
|
893
|
+
{
|
|
894
|
+
title: metadata?.title ?? void 0,
|
|
895
|
+
description: metadata?.description ?? "Make x402 requests to the origin",
|
|
896
|
+
inputSchema: z4.object({
|
|
897
|
+
request: z4.union([z4.string(), requestSchema2]).describe(
|
|
898
|
+
originData.wellKnown.instructions ?? `The request to send to ${origin}`
|
|
899
|
+
).refine(
|
|
900
|
+
(value) => typeof value === "string" ? requestSchema2.safeParse(JSON.parse(value)).success : true
|
|
901
|
+
).transform(
|
|
902
|
+
(value) => typeof value === "string" ? requestSchema2.parse(JSON.parse(value)) : value
|
|
903
|
+
)
|
|
904
|
+
})
|
|
905
|
+
},
|
|
906
|
+
async ({ request }) => {
|
|
907
|
+
const fetchWithPay = safeWrapFetchWithPayment({
|
|
908
|
+
account,
|
|
909
|
+
server,
|
|
910
|
+
surface: origin,
|
|
911
|
+
flags
|
|
912
|
+
});
|
|
913
|
+
const url = new URL(request.url);
|
|
914
|
+
if (request.queryParams) {
|
|
915
|
+
for (const [key, value] of Object.entries(request.queryParams)) {
|
|
916
|
+
if (typeof value === "string") {
|
|
917
|
+
url.searchParams.set(key, value);
|
|
918
|
+
} else {
|
|
919
|
+
url.searchParams.set(key, JSON.stringify(value));
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
const headers = {};
|
|
924
|
+
if (request.headers) {
|
|
925
|
+
for (const [key, value] of Object.entries(request.headers)) {
|
|
926
|
+
if (typeof value === "string") {
|
|
927
|
+
headers[key] = value;
|
|
928
|
+
} else {
|
|
929
|
+
headers[key] = JSON.stringify(value);
|
|
930
|
+
}
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
const fetchResult = await fetchWithPay(
|
|
934
|
+
buildRequest({
|
|
935
|
+
input: {
|
|
936
|
+
url: url.toString(),
|
|
937
|
+
method: request.method,
|
|
938
|
+
body: request.body,
|
|
939
|
+
headers
|
|
940
|
+
},
|
|
941
|
+
address: account.address,
|
|
942
|
+
sessionId
|
|
943
|
+
})
|
|
944
|
+
);
|
|
945
|
+
if (fetchResult.isErr()) {
|
|
946
|
+
return mcpError(fetchResult);
|
|
947
|
+
}
|
|
948
|
+
const { response, paymentPayload } = fetchResult.value;
|
|
949
|
+
if (!response.ok) {
|
|
950
|
+
return mcpErrorFetch(origin, response);
|
|
951
|
+
}
|
|
952
|
+
const parseResponseResult = await safeParseResponse(origin, response);
|
|
953
|
+
if (parseResponseResult.isErr()) {
|
|
954
|
+
return mcpError(parseResponseResult);
|
|
955
|
+
}
|
|
956
|
+
const settlementResult = safeGetPaymentSettlement(origin, response);
|
|
957
|
+
return mcpSuccessResponse(
|
|
958
|
+
parseResponseResult.value,
|
|
959
|
+
settlementResult.isOk() || paymentPayload !== void 0 ? {
|
|
960
|
+
...paymentPayload !== void 0 ? {
|
|
961
|
+
price: tokenStringToNumber(
|
|
962
|
+
paymentPayload.accepted.amount
|
|
963
|
+
).toLocaleString("en-US", {
|
|
964
|
+
style: "currency",
|
|
965
|
+
currency: "USD"
|
|
966
|
+
})
|
|
967
|
+
} : {},
|
|
968
|
+
...settlementResult.isOk() ? {
|
|
969
|
+
payment: {
|
|
970
|
+
success: settlementResult.value.success,
|
|
971
|
+
transactionHash: settlementResult.value.transaction
|
|
972
|
+
}
|
|
973
|
+
} : {}
|
|
974
|
+
} : void 0
|
|
975
|
+
);
|
|
976
|
+
}
|
|
977
|
+
);
|
|
978
|
+
})
|
|
979
|
+
);
|
|
980
|
+
};
|
|
981
|
+
|
|
982
|
+
// src/server/tools/x402-fetch.ts
|
|
983
|
+
var toolName = "fetch";
|
|
984
|
+
var registerFetchX402ResourceTool = ({
|
|
985
|
+
server,
|
|
986
|
+
account,
|
|
987
|
+
flags,
|
|
988
|
+
sessionId
|
|
989
|
+
}) => {
|
|
990
|
+
server.registerTool(
|
|
991
|
+
toolName,
|
|
992
|
+
{
|
|
993
|
+
title: "Fetch",
|
|
994
|
+
description: `HTTP fetch with automatic x402 payment. Detects 402 responses, signs payment, retries with payment headers. Returns response data + payment details (price, tx hash) if paid. Check balance with get_wallet_info first.`,
|
|
995
|
+
inputSchema: requestSchema,
|
|
996
|
+
annotations: {
|
|
997
|
+
readOnlyHint: true,
|
|
998
|
+
destructiveHint: false,
|
|
999
|
+
idempotentHint: true,
|
|
1000
|
+
openWorldHint: true
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
async (input) => {
|
|
1004
|
+
const fetchWithPay = safeWrapFetchWithPayment({
|
|
1005
|
+
account,
|
|
1006
|
+
server,
|
|
1007
|
+
surface: toolName,
|
|
1008
|
+
flags
|
|
1009
|
+
});
|
|
1010
|
+
const fetchResult = await fetchWithPay(
|
|
1011
|
+
buildRequest({ input, address: account.address, sessionId })
|
|
1012
|
+
);
|
|
1013
|
+
if (fetchResult.isErr()) {
|
|
1014
|
+
return mcpError(fetchResult);
|
|
1015
|
+
}
|
|
1016
|
+
const { response, paymentPayload } = fetchResult.value;
|
|
1017
|
+
if (!response.ok) {
|
|
1018
|
+
return mcpErrorFetch(toolName, response);
|
|
1019
|
+
}
|
|
1020
|
+
const parseResponseResult = await safeParseResponse(toolName, response);
|
|
1021
|
+
if (parseResponseResult.isErr()) {
|
|
1022
|
+
return mcpError(parseResponseResult);
|
|
1023
|
+
}
|
|
1024
|
+
const settlementResult = safeGetPaymentSettlement(toolName, response);
|
|
1025
|
+
return mcpSuccessResponse(
|
|
1026
|
+
parseResponseResult.value,
|
|
1027
|
+
settlementResult.isOk() || paymentPayload !== void 0 ? {
|
|
1028
|
+
...paymentPayload !== void 0 ? {
|
|
1029
|
+
price: tokenStringToNumber(
|
|
1030
|
+
paymentPayload.accepted.amount
|
|
1031
|
+
).toLocaleString("en-US", {
|
|
1032
|
+
style: "currency",
|
|
1033
|
+
currency: "USD"
|
|
1034
|
+
})
|
|
1035
|
+
} : {},
|
|
1036
|
+
...settlementResult.isOk() ? {
|
|
1037
|
+
payment: {
|
|
1038
|
+
success: settlementResult.value.success,
|
|
1039
|
+
transactionHash: settlementResult.value.transaction
|
|
1040
|
+
}
|
|
1041
|
+
} : {}
|
|
1042
|
+
} : void 0
|
|
1043
|
+
);
|
|
1044
|
+
}
|
|
1045
|
+
);
|
|
1046
|
+
};
|
|
1047
|
+
|
|
1048
|
+
// src/server/tools/wallet.ts
|
|
1049
|
+
import { z as z5 } from "zod";
|
|
1050
|
+
var registerWalletTools = ({
|
|
1051
|
+
server,
|
|
1052
|
+
account: { address },
|
|
1053
|
+
flags
|
|
1054
|
+
}) => {
|
|
1055
|
+
server.registerTool(
|
|
1056
|
+
"get_wallet_info",
|
|
1057
|
+
{
|
|
1058
|
+
title: "Get Wallet Info",
|
|
1059
|
+
description: `Get wallet address and USDC balance on Base. Auto-creates wallet on first use (~/.x402scan-mcp/wallet.json). Returns deposit link. Check before first paid API call.`,
|
|
1060
|
+
outputSchema: z5.object({
|
|
1061
|
+
address: z5.string().describe("Wallet address (0x...)"),
|
|
1062
|
+
network: z5.string().describe("CAIP-2 network ID (e.g., eip155:8453)"),
|
|
1063
|
+
networkName: z5.string().describe("Human-readable network name"),
|
|
1064
|
+
usdcBalance: z5.number().describe("USDC balance"),
|
|
1065
|
+
isNewWallet: z5.boolean().describe("True if balance is 0"),
|
|
1066
|
+
depositLink: z5.string().url().describe("Link to fund the wallet"),
|
|
1067
|
+
message: z5.string().optional().describe("Warning if balance is low")
|
|
1068
|
+
}),
|
|
1069
|
+
annotations: {
|
|
1070
|
+
readOnlyHint: true,
|
|
1071
|
+
destructiveHint: false,
|
|
1072
|
+
idempotentHint: true,
|
|
1073
|
+
openWorldHint: true
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
async () => {
|
|
1077
|
+
const balanceResult = await getBalance({
|
|
1078
|
+
address,
|
|
1079
|
+
flags,
|
|
1080
|
+
surface: "get_wallet_info"
|
|
1081
|
+
});
|
|
1082
|
+
if (balanceResult.isErr()) {
|
|
1083
|
+
return mcpError(balanceResult);
|
|
1084
|
+
}
|
|
1085
|
+
const { balance } = balanceResult.value;
|
|
1086
|
+
return mcpSuccessStructuredJson({
|
|
1087
|
+
address,
|
|
1088
|
+
network: DEFAULT_NETWORK,
|
|
1089
|
+
networkName: getChainName(DEFAULT_NETWORK),
|
|
1090
|
+
usdcBalance: balance,
|
|
1091
|
+
isNewWallet: balance === 0,
|
|
1092
|
+
depositLink: getDepositLink(address, flags),
|
|
1093
|
+
...balance < 2.5 ? {
|
|
1094
|
+
message: `Your balance is low. Consider topping it up`
|
|
1095
|
+
} : {}
|
|
1096
|
+
});
|
|
1097
|
+
}
|
|
1098
|
+
);
|
|
1099
|
+
};
|
|
1100
|
+
|
|
1101
|
+
// src/server/tools/check-endpoint.ts
|
|
1102
|
+
import { x402Client as x402Client2, x402HTTPClient as x402HTTPClient2 } from "@x402/core/client";
|
|
1103
|
+
var toolName2 = "check_endpoint_schema";
|
|
1104
|
+
var registerCheckX402EndpointTool = ({
|
|
1105
|
+
server,
|
|
1106
|
+
account,
|
|
1107
|
+
sessionId
|
|
1108
|
+
}) => {
|
|
1109
|
+
server.registerTool(
|
|
1110
|
+
toolName2,
|
|
1111
|
+
{
|
|
1112
|
+
title: "Check Endpoint Schema",
|
|
1113
|
+
description: `Probe endpoint to check if x402-protected. Returns pricing, input schema, payment methods. Use before fetch to preview costs. No payment made.`,
|
|
1114
|
+
inputSchema: requestSchema,
|
|
1115
|
+
annotations: {
|
|
1116
|
+
readOnlyHint: true,
|
|
1117
|
+
destructiveHint: false,
|
|
1118
|
+
idempotentHint: true,
|
|
1119
|
+
openWorldHint: true
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
async (input) => {
|
|
1123
|
+
log.info("Querying endpoint", input);
|
|
1124
|
+
const responseResult = await safeFetch(
|
|
1125
|
+
toolName2,
|
|
1126
|
+
buildRequest({ input, address: account.address, sessionId })
|
|
1127
|
+
);
|
|
1128
|
+
if (responseResult.isErr()) {
|
|
1129
|
+
return mcpError(responseResult);
|
|
1130
|
+
}
|
|
1131
|
+
const response = responseResult.value;
|
|
1132
|
+
if (response.status !== 402) {
|
|
1133
|
+
if (!response.ok) {
|
|
1134
|
+
return mcpErrorFetch(toolName2, response);
|
|
1135
|
+
}
|
|
1136
|
+
const parseResponseResult = await safeParseResponse(toolName2, response);
|
|
1137
|
+
if (parseResponseResult.isErr()) {
|
|
1138
|
+
return mcpError(parseResponseResult);
|
|
1139
|
+
}
|
|
1140
|
+
return mcpSuccessResponse(parseResponseResult.value, {
|
|
1141
|
+
requiresPayment: false
|
|
1142
|
+
});
|
|
1143
|
+
}
|
|
1144
|
+
const client = new x402HTTPClient2(new x402Client2());
|
|
1145
|
+
const paymentRequiredResult = await safeGetPaymentRequired(
|
|
1146
|
+
toolName2,
|
|
1147
|
+
client,
|
|
1148
|
+
response
|
|
1149
|
+
);
|
|
1150
|
+
if (paymentRequiredResult.isErr()) {
|
|
1151
|
+
return mcpError(paymentRequiredResult);
|
|
1152
|
+
}
|
|
1153
|
+
const { resource, extensions, accepts } = paymentRequiredResult.value;
|
|
1154
|
+
return mcpSuccessJson({
|
|
1155
|
+
requiresPayment: true,
|
|
1156
|
+
statusCode: response.status,
|
|
1157
|
+
routeDetails: {
|
|
1158
|
+
...resource,
|
|
1159
|
+
schema: getInputSchema(extensions),
|
|
1160
|
+
paymentMethods: accepts.map((accept) => ({
|
|
1161
|
+
price: tokenStringToNumber(accept.amount),
|
|
1162
|
+
network: accept.network,
|
|
1163
|
+
asset: accept.asset
|
|
1164
|
+
}))
|
|
1165
|
+
}
|
|
1166
|
+
});
|
|
1167
|
+
}
|
|
1168
|
+
);
|
|
1169
|
+
};
|
|
1170
|
+
|
|
1171
|
+
// src/server/tools/redeem-invite.ts
|
|
1172
|
+
import z6 from "zod";
|
|
1173
|
+
var registerRedeemInviteTool = ({
|
|
1174
|
+
server,
|
|
1175
|
+
account: { address },
|
|
1176
|
+
flags
|
|
1177
|
+
}) => {
|
|
1178
|
+
server.registerTool(
|
|
1179
|
+
"redeem_invite",
|
|
1180
|
+
{
|
|
1181
|
+
title: "Redeem Invite",
|
|
1182
|
+
description: `Redeem an invite code for free USDC on Base. One-time use per code. Returns amount received and transaction hash. Use get_wallet_info after to verify balance.`,
|
|
1183
|
+
inputSchema: z6.object({
|
|
1184
|
+
code: z6.string().min(1).describe("The invite code")
|
|
1185
|
+
}),
|
|
1186
|
+
outputSchema: z6.object({
|
|
1187
|
+
redeemed: z6.literal(true),
|
|
1188
|
+
amount: z6.string().describe('Amount with unit (e.g., "5 USDC")'),
|
|
1189
|
+
txHash: z6.string().describe("Transaction hash on Base")
|
|
1190
|
+
}),
|
|
1191
|
+
annotations: {
|
|
1192
|
+
readOnlyHint: false,
|
|
1193
|
+
// Modifies wallet balance
|
|
1194
|
+
destructiveHint: false,
|
|
1195
|
+
// Additive (adds funds), not destructive
|
|
1196
|
+
idempotentHint: false,
|
|
1197
|
+
// Same code can't be redeemed twice - second attempt fails
|
|
1198
|
+
openWorldHint: true
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
async ({ code }) => {
|
|
1202
|
+
const result = await redeemInviteCode({
|
|
1203
|
+
code,
|
|
1204
|
+
dev: flags.dev,
|
|
1205
|
+
address,
|
|
1206
|
+
surface: "redeem_invite"
|
|
1207
|
+
});
|
|
1208
|
+
if (result.isErr()) {
|
|
1209
|
+
return mcpError(result);
|
|
1210
|
+
}
|
|
1211
|
+
const { amount, txHash } = result.value;
|
|
1212
|
+
return mcpSuccessStructuredJson({
|
|
1213
|
+
redeemed: true,
|
|
1214
|
+
amount: `${amount} USDC`,
|
|
1215
|
+
txHash
|
|
1216
|
+
});
|
|
1217
|
+
}
|
|
1218
|
+
);
|
|
1219
|
+
};
|
|
1220
|
+
|
|
1221
|
+
// src/server/tools/discover-resources.ts
|
|
1222
|
+
import { z as z7 } from "zod";
|
|
1223
|
+
var discoveryDocumentSchema2 = z7.object({
|
|
1224
|
+
version: z7.number().refine((v) => v === 1, { message: "version must be 1" }),
|
|
1225
|
+
resources: z7.array(z7.string()),
|
|
1226
|
+
ownershipProofs: z7.array(z7.string()).optional(),
|
|
1227
|
+
instructions: z7.string().optional()
|
|
1228
|
+
});
|
|
1229
|
+
var toolName3 = "discover_api_endpoints";
|
|
1230
|
+
var registerDiscoveryTools = ({ server }) => {
|
|
1231
|
+
server.registerTool(
|
|
1232
|
+
toolName3,
|
|
1233
|
+
{
|
|
1234
|
+
title: "Discover API Endpoints",
|
|
1235
|
+
description: `Find x402-protected resources on an origin. Returns a list of resource URLs.
|
|
1236
|
+
Use check_x402_endpoint separately to get detailed pricing/schema info for specific resources.
|
|
1237
|
+
Known default origins with resource packs. Discover if more needed:
|
|
1238
|
+
- https://enrichx402.com ->
|
|
1239
|
+
People + Org search
|
|
1240
|
+
Google Maps (places + locations)
|
|
1241
|
+
Grok twitter search
|
|
1242
|
+
Exa web search
|
|
1243
|
+
Clado linkedin data
|
|
1244
|
+
Firecrawl web scrape
|
|
1245
|
+
WhitePages (business directory)
|
|
1246
|
+
Email enrichment
|
|
1247
|
+
- https://stablestudio.io -> generate and edit images / videos
|
|
1248
|
+
`,
|
|
1249
|
+
inputSchema: z7.object({
|
|
1250
|
+
url: z7.url().describe(
|
|
1251
|
+
"The origin URL or any URL on the origin to discover resources from"
|
|
1252
|
+
)
|
|
1253
|
+
}),
|
|
1254
|
+
annotations: {
|
|
1255
|
+
readOnlyHint: true,
|
|
1256
|
+
destructiveHint: false,
|
|
1257
|
+
idempotentHint: true,
|
|
1258
|
+
openWorldHint: true
|
|
1259
|
+
}
|
|
1260
|
+
},
|
|
1261
|
+
async ({ url }) => {
|
|
1262
|
+
const origin = URL.canParse(url) ? new URL(url).origin : url;
|
|
1263
|
+
const hostname = URL.canParse(origin) ? new URL(origin).hostname : origin;
|
|
1264
|
+
log.info(`Discovering resources for origin: ${origin}`);
|
|
1265
|
+
const wellKnownUrl = `${origin}/.well-known/x402`;
|
|
1266
|
+
log.debug(`Fetching discovery document from: ${wellKnownUrl}`);
|
|
1267
|
+
const wellKnownResult = await safeFetchJson(
|
|
1268
|
+
toolName3,
|
|
1269
|
+
new Request(wellKnownUrl, { headers: { Accept: "application/json" } }),
|
|
1270
|
+
discoveryDocumentSchema2
|
|
1271
|
+
);
|
|
1272
|
+
if (wellKnownResult.isOk()) {
|
|
1273
|
+
return mcpSuccessJson({
|
|
1274
|
+
found: true,
|
|
1275
|
+
origin,
|
|
1276
|
+
source: "well-known",
|
|
1277
|
+
data: wellKnownResult.value
|
|
1278
|
+
});
|
|
1279
|
+
} else {
|
|
1280
|
+
log.info(
|
|
1281
|
+
`No well-known x402 discovery document found at ${wellKnownUrl}`
|
|
1282
|
+
);
|
|
1283
|
+
}
|
|
1284
|
+
const dnsQuery = `_x402.${hostname}`;
|
|
1285
|
+
log.debug(`Looking up DNS TXT record: ${dnsQuery}`);
|
|
1286
|
+
const dnsResult = await safeFetchJson(
|
|
1287
|
+
toolName3,
|
|
1288
|
+
new Request(
|
|
1289
|
+
`https://cloudflare-dns.com/dns-query?name=${encodeURIComponent(dnsQuery)}&type=TXT`,
|
|
1290
|
+
{ headers: { Accept: "application/dns-json" } }
|
|
1291
|
+
),
|
|
1292
|
+
z7.object({
|
|
1293
|
+
Answer: z7.array(
|
|
1294
|
+
z7.object({
|
|
1295
|
+
data: z7.string()
|
|
1296
|
+
})
|
|
1297
|
+
).optional()
|
|
1298
|
+
})
|
|
1299
|
+
);
|
|
1300
|
+
if (dnsResult.isOk() && dnsResult.value.Answer && dnsResult.value.Answer.length > 0) {
|
|
1301
|
+
const dnsUrl = dnsResult.value.Answer[0].data.replace(/^"|"$/g, "");
|
|
1302
|
+
if (URL.canParse(dnsUrl)) {
|
|
1303
|
+
const dnsDocResult = await safeFetchJson(
|
|
1304
|
+
toolName3,
|
|
1305
|
+
new Request(dnsUrl, { headers: { Accept: "application/json" } }),
|
|
1306
|
+
discoveryDocumentSchema2
|
|
1307
|
+
);
|
|
1308
|
+
if (dnsDocResult.isOk()) {
|
|
1309
|
+
return mcpSuccessJson({
|
|
1310
|
+
found: true,
|
|
1311
|
+
origin,
|
|
1312
|
+
source: "dns-txt",
|
|
1313
|
+
data: dnsDocResult.value
|
|
1314
|
+
});
|
|
1315
|
+
}
|
|
1316
|
+
} else {
|
|
1317
|
+
log.debug(`DNS TXT value is not a valid URL: ${dnsUrl}`);
|
|
1318
|
+
}
|
|
1319
|
+
} else {
|
|
1320
|
+
log.info(`No DNS TXT record found for ${dnsQuery}`);
|
|
1321
|
+
}
|
|
1322
|
+
const llmsTxtUrl = `${origin}/llms.txt`;
|
|
1323
|
+
log.debug(`Fetching llms.txt from: ${llmsTxtUrl}`);
|
|
1324
|
+
const llmsResult = await safeFetch(
|
|
1325
|
+
toolName3,
|
|
1326
|
+
new Request(llmsTxtUrl, { headers: { Accept: "text/plain" } })
|
|
1327
|
+
);
|
|
1328
|
+
if (llmsResult.isOk()) {
|
|
1329
|
+
const parseResult = await safeParseResponse(toolName3, llmsResult.value);
|
|
1330
|
+
if (parseResult.isOk() && parseResult.value.type === "text") {
|
|
1331
|
+
return mcpSuccessJson({
|
|
1332
|
+
found: true,
|
|
1333
|
+
origin,
|
|
1334
|
+
source: "llms-txt",
|
|
1335
|
+
usage: "Found llms.txt but no structured x402 discovery document. The content below may contain information about x402 resources. Parse it to find relevant endpoints.",
|
|
1336
|
+
data: parseResult.value
|
|
1337
|
+
});
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
return mcpErrorJson({
|
|
1341
|
+
found: false,
|
|
1342
|
+
origin,
|
|
1343
|
+
error: "No discovery document found. Tried: .well-known/x402, DNS TXT record, llms.txt"
|
|
1344
|
+
});
|
|
1345
|
+
}
|
|
1346
|
+
);
|
|
1347
|
+
};
|
|
1348
|
+
|
|
1349
|
+
// src/server/tools/telemetry.ts
|
|
1350
|
+
import z8 from "zod";
|
|
1351
|
+
var toolName4 = "report_error";
|
|
1352
|
+
var registerTelemetryTools = ({
|
|
1353
|
+
server,
|
|
1354
|
+
account: { address },
|
|
1355
|
+
flags
|
|
1356
|
+
}) => {
|
|
1357
|
+
server.registerTool(
|
|
1358
|
+
toolName4,
|
|
1359
|
+
{
|
|
1360
|
+
title: "Report Error",
|
|
1361
|
+
description: "EMERGENCY ONLY. Report critical MCP tool bugs. Do NOT use for normal errors (balance, network, 4xx) - those are recoverable.",
|
|
1362
|
+
inputSchema: z8.object({
|
|
1363
|
+
tool: z8.string().describe("MCP tool name"),
|
|
1364
|
+
resource: z8.string().optional().describe("x402 resource URL"),
|
|
1365
|
+
summary: z8.string().describe("1-2 sentence summary"),
|
|
1366
|
+
errorMessage: z8.string().describe("Error message"),
|
|
1367
|
+
stack: z8.string().optional().describe("Stack trace"),
|
|
1368
|
+
fullReport: z8.string().optional().describe("Detailed report with context, logs, repro steps")
|
|
1369
|
+
}),
|
|
1370
|
+
outputSchema: z8.object({
|
|
1371
|
+
submitted: z8.literal(true),
|
|
1372
|
+
reportId: z8.string().describe("Unique report ID for tracking"),
|
|
1373
|
+
message: z8.string().describe("Confirmation message")
|
|
1374
|
+
}),
|
|
1375
|
+
annotations: {
|
|
1376
|
+
readOnlyHint: false,
|
|
1377
|
+
// Sends data to external service
|
|
1378
|
+
destructiveHint: false,
|
|
1379
|
+
idempotentHint: false,
|
|
1380
|
+
// Multiple reports may be useful
|
|
1381
|
+
openWorldHint: true
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
async (input) => {
|
|
1385
|
+
log.info("Submitting error report", {
|
|
1386
|
+
tool: input.tool,
|
|
1387
|
+
resource: input.resource,
|
|
1388
|
+
summary: input.summary
|
|
1389
|
+
});
|
|
1390
|
+
const telemetryResult = await safeFetchJson(
|
|
1391
|
+
toolName4,
|
|
1392
|
+
new Request(`${getBaseUrl(flags.dev)}/api/telemetry`, {
|
|
1393
|
+
method: "POST",
|
|
1394
|
+
headers: {
|
|
1395
|
+
"Content-Type": "application/json"
|
|
1396
|
+
},
|
|
1397
|
+
body: JSON.stringify({
|
|
1398
|
+
...input,
|
|
1399
|
+
walletAddress: address,
|
|
1400
|
+
mcpVersion: MCP_VERSION,
|
|
1401
|
+
reportedAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
1402
|
+
})
|
|
1403
|
+
}),
|
|
1404
|
+
z8.object({
|
|
1405
|
+
reportId: z8.string()
|
|
1406
|
+
})
|
|
1407
|
+
);
|
|
1408
|
+
if (telemetryResult.isErr()) {
|
|
1409
|
+
log.error("Failed to submit error report", telemetryResult.error);
|
|
1410
|
+
return mcpError(telemetryResult);
|
|
1411
|
+
}
|
|
1412
|
+
const { reportId } = telemetryResult.value;
|
|
1413
|
+
log.info("Error report submitted successfully", {
|
|
1414
|
+
reportId
|
|
1415
|
+
});
|
|
1416
|
+
return mcpSuccessStructuredJson({
|
|
1417
|
+
submitted: true,
|
|
1418
|
+
reportId,
|
|
1419
|
+
message: "Error report submitted successfully. The x402scan team will investigate."
|
|
1420
|
+
});
|
|
1421
|
+
}
|
|
1422
|
+
);
|
|
1423
|
+
};
|
|
1424
|
+
|
|
1425
|
+
// src/server/tools/auth-fetch.ts
|
|
1426
|
+
import { x402Client as x402Client3, x402HTTPClient as x402HTTPClient3 } from "@x402/core/client";
|
|
1427
|
+
import { encodeSIWxHeader } from "@x402scan/siwx";
|
|
1428
|
+
var toolName5 = "fetch_with_auth";
|
|
1429
|
+
var registerAuthTools = ({
|
|
1430
|
+
server,
|
|
1431
|
+
account,
|
|
1432
|
+
sessionId
|
|
1433
|
+
}) => {
|
|
1434
|
+
server.registerTool(
|
|
1435
|
+
toolName5,
|
|
1436
|
+
{
|
|
1437
|
+
title: "Fetch with Authentication",
|
|
1438
|
+
description: `HTTP fetch with automatic SIWX (Sign-In With X) authentication. Detects auth requirement, signs wallet proof, retries with credentials. For endpoints requiring identity verification without payment. EVM chains only.`,
|
|
1439
|
+
inputSchema: requestSchema,
|
|
1440
|
+
annotations: {
|
|
1441
|
+
readOnlyHint: true,
|
|
1442
|
+
destructiveHint: false,
|
|
1443
|
+
idempotentHint: true,
|
|
1444
|
+
openWorldHint: true
|
|
1445
|
+
}
|
|
1446
|
+
},
|
|
1447
|
+
async (input) => {
|
|
1448
|
+
const httpClient = new x402HTTPClient3(new x402Client3());
|
|
1449
|
+
const firstResult = await safeFetch(
|
|
1450
|
+
toolName5,
|
|
1451
|
+
buildRequest({ input, address: account.address, sessionId })
|
|
1452
|
+
);
|
|
1453
|
+
if (firstResult.isErr()) {
|
|
1454
|
+
return mcpError(firstResult);
|
|
1455
|
+
}
|
|
1456
|
+
const firstResponse = firstResult.value;
|
|
1457
|
+
if (firstResponse.status !== 402) {
|
|
1458
|
+
if (!firstResponse.ok) {
|
|
1459
|
+
return mcpErrorFetch(toolName5, firstResponse);
|
|
1460
|
+
}
|
|
1461
|
+
const parseResponseResult2 = await safeParseResponse(
|
|
1462
|
+
toolName5,
|
|
1463
|
+
firstResponse
|
|
1464
|
+
);
|
|
1465
|
+
if (parseResponseResult2.isErr()) {
|
|
1466
|
+
return mcpError(parseResponseResult2);
|
|
1467
|
+
}
|
|
1468
|
+
return mcpSuccessResponse(parseResponseResult2.value);
|
|
1469
|
+
}
|
|
1470
|
+
const getPaymentRequiredResult = await safeGetPaymentRequired(
|
|
1471
|
+
toolName5,
|
|
1472
|
+
httpClient,
|
|
1473
|
+
firstResponse
|
|
1474
|
+
);
|
|
1475
|
+
if (getPaymentRequiredResult.isErr()) {
|
|
1476
|
+
return mcpError(getPaymentRequiredResult);
|
|
1477
|
+
}
|
|
1478
|
+
const paymentRequired = getPaymentRequiredResult.value;
|
|
1479
|
+
const siwxExtension = getSiwxExtension(paymentRequired.extensions);
|
|
1480
|
+
if (!siwxExtension) {
|
|
1481
|
+
return mcpErrorJson({
|
|
1482
|
+
message: "Endpoint returned 402 but no sign-in-with-x extension found",
|
|
1483
|
+
statusCode: 402,
|
|
1484
|
+
extensions: Object.keys(paymentRequired.extensions ?? {}),
|
|
1485
|
+
hint: "This endpoint may require payment instead of authentication. Use execute_call for paid requests."
|
|
1486
|
+
});
|
|
1487
|
+
}
|
|
1488
|
+
const serverInfo = siwxExtension;
|
|
1489
|
+
const requiredFields = [
|
|
1490
|
+
"domain",
|
|
1491
|
+
"uri",
|
|
1492
|
+
"version",
|
|
1493
|
+
"chainId",
|
|
1494
|
+
"nonce",
|
|
1495
|
+
"issuedAt"
|
|
1496
|
+
];
|
|
1497
|
+
const missingFields = requiredFields.filter(
|
|
1498
|
+
(f) => !serverInfo[f]
|
|
1499
|
+
);
|
|
1500
|
+
if (missingFields.length > 0) {
|
|
1501
|
+
return mcpErrorJson({
|
|
1502
|
+
message: "Invalid sign-in-with-x extension: missing required fields",
|
|
1503
|
+
missingFields,
|
|
1504
|
+
receivedInfo: { ...serverInfo }
|
|
1505
|
+
});
|
|
1506
|
+
}
|
|
1507
|
+
if (serverInfo.chainId.startsWith("solana:")) {
|
|
1508
|
+
return mcpErrorJson({
|
|
1509
|
+
message: "Solana authentication not supported",
|
|
1510
|
+
chainId: serverInfo.chainId,
|
|
1511
|
+
hint: "This endpoint requires a Solana wallet. The MCP server currently only supports EVM wallets."
|
|
1512
|
+
});
|
|
1513
|
+
}
|
|
1514
|
+
const payloadResult = await safeCreateSIWxPayload(
|
|
1515
|
+
toolName5,
|
|
1516
|
+
serverInfo,
|
|
1517
|
+
account
|
|
1518
|
+
);
|
|
1519
|
+
if (payloadResult.isErr()) {
|
|
1520
|
+
return mcpError(payloadResult);
|
|
1521
|
+
}
|
|
1522
|
+
const siwxHeader = encodeSIWxHeader(payloadResult.value);
|
|
1523
|
+
const authedRequest = buildRequest({
|
|
1524
|
+
input,
|
|
1525
|
+
address: account.address,
|
|
1526
|
+
sessionId
|
|
1527
|
+
});
|
|
1528
|
+
authedRequest.headers.set("SIGN-IN-WITH-X", siwxHeader);
|
|
1529
|
+
const authedResult = await safeFetch(toolName5, authedRequest);
|
|
1530
|
+
if (authedResult.isErr()) {
|
|
1531
|
+
return mcpError(authedResult);
|
|
1532
|
+
}
|
|
1533
|
+
const authedResponse = authedResult.value;
|
|
1534
|
+
if (!authedResponse.ok) {
|
|
1535
|
+
return mcpErrorFetch(toolName5, authedResponse);
|
|
1536
|
+
}
|
|
1537
|
+
const parseResponseResult = await safeParseResponse(
|
|
1538
|
+
toolName5,
|
|
1539
|
+
authedResponse
|
|
1540
|
+
);
|
|
1541
|
+
if (parseResponseResult.isErr()) {
|
|
1542
|
+
return mcpError(parseResponseResult);
|
|
1543
|
+
}
|
|
1544
|
+
return mcpSuccessResponse(parseResponseResult.value);
|
|
1545
|
+
}
|
|
1546
|
+
);
|
|
1547
|
+
};
|
|
1548
|
+
|
|
1549
|
+
// src/server/tools/index.ts
|
|
1550
|
+
var registerTools = async (props) => {
|
|
1551
|
+
await Promise.all([
|
|
1552
|
+
registerFetchX402ResourceTool(props),
|
|
1553
|
+
registerAuthTools(props),
|
|
1554
|
+
registerWalletTools(props),
|
|
1555
|
+
registerCheckX402EndpointTool(props),
|
|
1556
|
+
registerRedeemInviteTool(props),
|
|
1557
|
+
registerDiscoveryTools(props),
|
|
1558
|
+
registerTelemetryTools(props),
|
|
1559
|
+
registerFetchOriginTool(props)
|
|
1560
|
+
]);
|
|
1561
|
+
};
|
|
1562
|
+
|
|
1563
|
+
// src/server/index.ts
|
|
1564
|
+
var startServer = async (flags) => {
|
|
1565
|
+
log.info("Starting x402scan-mcp...");
|
|
1566
|
+
const { dev, invite } = flags;
|
|
1567
|
+
const walletResult = await getWallet();
|
|
1568
|
+
if (walletResult.isErr()) {
|
|
1569
|
+
log.error(JSON.stringify(walletResult.error, null, 2));
|
|
1570
|
+
process.exit(1);
|
|
1571
|
+
}
|
|
1572
|
+
const { account } = walletResult.value;
|
|
1573
|
+
const code = invite ?? process.env.INVITE_CODE;
|
|
1574
|
+
const sessionId = randomBytes(16).toString("hex");
|
|
1575
|
+
if (code) {
|
|
1576
|
+
await redeemInviteCode({
|
|
1577
|
+
code,
|
|
1578
|
+
dev,
|
|
1579
|
+
address: account.address,
|
|
1580
|
+
surface: "startServer"
|
|
1581
|
+
});
|
|
1582
|
+
}
|
|
1583
|
+
const server = new McpServer(
|
|
1584
|
+
{
|
|
1585
|
+
name: "@x402scan/mcp",
|
|
1586
|
+
version: MCP_VERSION,
|
|
1587
|
+
websiteUrl: "https://x402scan.com/mcp",
|
|
1588
|
+
icons: [{ src: "https://x402scan.com/logo.svg" }]
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
capabilities: {
|
|
1592
|
+
resources: {
|
|
1593
|
+
subscribe: true,
|
|
1594
|
+
listChanged: true
|
|
1595
|
+
},
|
|
1596
|
+
prompts: {
|
|
1597
|
+
listChanged: true
|
|
1598
|
+
},
|
|
1599
|
+
tools: {
|
|
1600
|
+
listChanged: true
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
}
|
|
1604
|
+
);
|
|
1605
|
+
const props = {
|
|
1606
|
+
server,
|
|
1607
|
+
account,
|
|
1608
|
+
flags,
|
|
1609
|
+
sessionId
|
|
1610
|
+
};
|
|
1611
|
+
await Promise.all([
|
|
1612
|
+
registerTools(props),
|
|
1613
|
+
registerOriginResources(props),
|
|
1614
|
+
registerPrompts(props)
|
|
1615
|
+
]);
|
|
1616
|
+
await server.connect(new StdioServerTransport());
|
|
1617
|
+
const shutdown = async () => {
|
|
1618
|
+
log.info("Shutting down...");
|
|
1619
|
+
await server.close();
|
|
1620
|
+
process.exit(0);
|
|
1621
|
+
};
|
|
1622
|
+
process.on("SIGINT", () => void shutdown());
|
|
1623
|
+
process.on("SIGTERM", () => void shutdown());
|
|
1624
|
+
};
|
|
1625
|
+
export {
|
|
1626
|
+
startServer
|
|
1627
|
+
};
|
|
1628
|
+
//# sourceMappingURL=server-EI242I3L.js.map
|