bsv-mcp 0.0.11 → 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.
Files changed (2) hide show
  1. package/index.ts +2 -2
  2. package/package.json +1 -1
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.1",
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.11",
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",