bsv-mcp 0.0.13 → 0.0.14

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 CHANGED
@@ -34,11 +34,10 @@ function validatePrivateKey(): PrivateKey {
34
34
 
35
35
  // Validate private key early before starting the server
36
36
  const privKey = validatePrivateKey();
37
- console.log("\x1b[32mPrivate key validated successfully\x1b[0m");
38
37
 
39
38
  const server = new McpServer({
40
39
  name: "Bitcoin SV MCP Server",
41
- version: "0.0.13",
40
+ version: "0.0.14",
42
41
  });
43
42
 
44
43
  // Initialize wallet with the validated private key
@@ -50,10 +49,6 @@ registerWalletTools(server, wallet);
50
49
  // Register all other tools (BSV, Ordinals, Utils, etc.)
51
50
  registerAllTools(server);
52
51
 
53
- // Debug: Log all registered tools
54
- console.log("Registered tools:", Object.keys(server));
55
- console.log("MCP Server ready 🚀");
56
-
57
52
  // Connect to the transport
58
53
  const transport = new StdioServerTransport();
59
54
  await server.connect(transport);
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.13",
5
+ "version": "0.0.14",
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",
@@ -94,7 +94,6 @@ export class Wallet extends ProtoWallet implements WalletInterface {
94
94
  this.nftUtxos = nftUtxos;
95
95
  this.lastUtxoFetch = Date.now();
96
96
 
97
- // console.log(`Fetched ${utxos.length} UTXOs for address ${address}`);
98
97
  } catch (error) {
99
98
  console.error("Error refreshing UTXOs:", error);
100
99
  throw error;