bsv-mcp 0.0.28 → 0.0.29

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # BSV MCP Server Changelog
2
2
 
3
- ## v0.0.28 - Enhanced Server Configuration & Maintenance
3
+ ## v0.0.29 - Enhanced Server Configuration & Maintenance
4
4
 
5
5
  ### Major Changes
6
6
  - **Improved Changelog Management**: Added changelog as a MCP resource so you can just ask what has changed between versions
package/README.md CHANGED
@@ -10,11 +10,11 @@ A collection of Bitcoin SV (BSV) tools for the Model Context Protocol (MCP) fram
10
10
 
11
11
  ## Installation and Setup
12
12
 
13
- ### Prerequisites
13
+ ### Use Bun (Optional but recommended)
14
14
 
15
- This project is built using [Bun](https://bun.sh/), a fast JavaScript runtime and package manager. While Bun is recommended for best performance, the server can also run with Node.js and npm.
15
+ This project is built using [Bun](https://bun.sh/), a fast JavaScript runtime and package manager. While Bun is recommended for best performance, the server can also run with Node.js and npm as Bun is designed to be backward compatible with node.
16
16
 
17
- #### Installing Bun (Recommended)
17
+ #### Installing Bun
18
18
 
19
19
  **macOS (using Homebrew):**
20
20
  ```bash
@@ -65,7 +65,8 @@ To use the BSV MCP server with [Cursor](https://cursor.sh/):
65
65
  }
66
66
  ```
67
67
 
68
- 5. Replace `<your_private_key_wif>` with your actual private key WIF (keep this secure!)
68
+ 5. Replace `<your_private_key_wif>` with your actual private key WIF (keep this secure!) If you dont have one you can leave this off for now but you wont be able to use tools that require a wallet.
69
+
69
70
  6. Click "Save"
70
71
 
71
72
  The BSV tools will now be available to Cursor's AI assistant under the "Bitcoin SV" namespace.
package/index.ts CHANGED
@@ -70,7 +70,7 @@ function initializePrivateKey(): PrivateKey | undefined {
70
70
  const privKey = initializePrivateKey();
71
71
 
72
72
  const server = new McpServer(
73
- { name: "Bitcoin SV", version: "0.0.28" },
73
+ { name: "Bitcoin SV", version: "0.0.29" },
74
74
  // {
75
75
  // // Advertise only what you actually implement
76
76
  // capabilities: {
@@ -96,20 +96,17 @@ if (CONFIG.loadTools) {
96
96
  if (privKey) {
97
97
  // Register MNEE tools if enabled
98
98
  if (CONFIG.loadMneeTools) {
99
- console.log("Registering MNEE tools");
100
99
  registerMneeTools(server);
101
100
  }
102
101
 
103
102
  // Initialize wallet with the private key if wallet tools are enabled
104
103
  if (CONFIG.loadWalletTools) {
105
- console.log("Initializing wallet and registering wallet tools");
106
104
  wallet = new Wallet(privKey);
107
105
  registerWalletTools(server, wallet);
108
106
  }
109
107
  }
110
108
 
111
109
  // Register all other tools based on configuration
112
- console.log("Registering other tools");
113
110
  registerAllTools(server, {
114
111
  enableBsvTools: CONFIG.loadBsvTools,
115
112
  enableOrdinalsTools: CONFIG.loadOrdinalsTools,
@@ -120,13 +117,11 @@ if (CONFIG.loadTools) {
120
117
 
121
118
  // Register resources if enabled
122
119
  if (CONFIG.loadResources) {
123
- console.log("Registering resources");
124
120
  registerResources(server);
125
121
  }
126
122
 
127
123
  // Register prompts if enabled
128
124
  if (CONFIG.loadPrompts) {
129
- console.log("Registering prompts");
130
125
  registerAllPrompts(server);
131
126
  }
132
127
 
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.28",
5
+ "version": "0.0.29",
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",
package/prompts/index.ts CHANGED
File without changes
package/tools/index.ts CHANGED
File without changes