bsv-mcp 0.0.10 → 0.0.12
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/index.ts +2 -2
- package/package.json +4 -2
package/index.ts
CHANGED
|
@@ -37,8 +37,8 @@ const privKey = validatePrivateKey();
|
|
|
37
37
|
console.log("\x1b[32mPrivate key validated successfully\x1b[0m");
|
|
38
38
|
|
|
39
39
|
const server = new McpServer({
|
|
40
|
-
name: "Bitcoin SV MCP",
|
|
41
|
-
version: "0.0.
|
|
40
|
+
name: "Bitcoin SV MCP Server",
|
|
41
|
+
version: "0.0.12",
|
|
42
42
|
});
|
|
43
43
|
|
|
44
44
|
// Initialize wallet with the validated private key
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "bsv-mcp",
|
|
3
3
|
"module": "index.ts",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.12",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "satchmo",
|
|
8
8
|
"description": "A collection of Bitcoin SV (BSV) tools for the Model Context Protocol (MCP) framework",
|
|
@@ -21,7 +21,9 @@
|
|
|
21
21
|
"blockchain"
|
|
22
22
|
],
|
|
23
23
|
"files": [
|
|
24
|
-
"
|
|
24
|
+
"package.json",
|
|
25
|
+
"*.ts",
|
|
26
|
+
"tools/*.ts",
|
|
25
27
|
"tools/**/*.ts",
|
|
26
28
|
"LICENSE",
|
|
27
29
|
"README.md",
|