@x402scan/mcp 0.1.1 → 0.2.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 +46 -6
- package/dist/cjs/run-server.cjs +361 -69
- package/dist/esm/{chunk-PAP5NZRW.js → chunk-5BVIGIIR.js} +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/{install-KQS3ZCOB.js → install-YSPOEUCV.js} +2 -2
- package/dist/esm/{server-AQZDUW42.js → server-OMQNEM4L.js} +357 -68
- package/dist/esm/server-OMQNEM4L.js.map +1 -0
- package/package.json +6 -6
- package/dist/esm/server-AQZDUW42.js.map +0 -1
- /package/dist/esm/{chunk-PAP5NZRW.js.map → chunk-5BVIGIIR.js.map} +0 -0
- /package/dist/esm/{install-KQS3ZCOB.js.map → install-YSPOEUCV.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import { dirname, join } from "path";
|
|
|
9
9
|
import { fileURLToPath } from "url";
|
|
10
10
|
function getVersion() {
|
|
11
11
|
if (true) {
|
|
12
|
-
return "0.
|
|
12
|
+
return "0.2.0";
|
|
13
13
|
}
|
|
14
14
|
const __dirname2 = dirname(fileURLToPath(import.meta.url));
|
|
15
15
|
const pkg = JSON.parse(
|
|
@@ -49,4 +49,4 @@ export {
|
|
|
49
49
|
MCP_VERSION,
|
|
50
50
|
DIST_TAG
|
|
51
51
|
};
|
|
52
|
-
//# sourceMappingURL=chunk-
|
|
52
|
+
//# sourceMappingURL=chunk-5BVIGIIR.js.map
|
package/dist/esm/index.js
CHANGED
|
@@ -24,7 +24,7 @@ void yargs(hideBin(process.argv)).scriptName("@x402scan/mcp").option("dev", {
|
|
|
24
24
|
"Start the MCP server",
|
|
25
25
|
(yargs2) => yargs2,
|
|
26
26
|
async (args) => {
|
|
27
|
-
const { startServer } = await import("./server-
|
|
27
|
+
const { startServer } = await import("./server-OMQNEM4L.js");
|
|
28
28
|
await startServer(args);
|
|
29
29
|
}
|
|
30
30
|
).command(
|
|
@@ -37,7 +37,7 @@ void yargs(hideBin(process.argv)).scriptName("@x402scan/mcp").option("dev", {
|
|
|
37
37
|
default: isClaudeCode ? "claude-code" /* ClaudeCode */ : void 0
|
|
38
38
|
}),
|
|
39
39
|
async (args) => {
|
|
40
|
-
const { installMcpServer } = await import("./install-
|
|
40
|
+
const { installMcpServer } = await import("./install-YSPOEUCV.js");
|
|
41
41
|
await installMcpServer(args);
|
|
42
42
|
}
|
|
43
43
|
).command(
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
DIST_TAG,
|
|
7
7
|
getBalance
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-5BVIGIIR.js";
|
|
9
9
|
import {
|
|
10
10
|
promptDeposit,
|
|
11
11
|
wait
|
|
@@ -698,4 +698,4 @@ var installMcpServer = async (flags) => {
|
|
|
698
698
|
export {
|
|
699
699
|
installMcpServer
|
|
700
700
|
};
|
|
701
|
-
//# sourceMappingURL=install-
|
|
701
|
+
//# sourceMappingURL=install-YSPOEUCV.js.map
|