bsv-mcp 0.0.31 → 0.0.32

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.31 - Reliability Improvements
3
+ ## v0.0.32 - Reliability Improvements
4
4
 
5
5
  ### Bug Fixes
6
6
  - **Changelog Loading**: Improved changelog loading mechanism with multiple path resolution strategies
package/README.md CHANGED
@@ -362,7 +362,6 @@ The BSV MCP server can be customized using environment variables to enable or di
362
362
  | `DISABLE_BSV_TOOLS` | `false` | Set to `true` to disable BSV blockchain tools |
363
363
  | `DISABLE_ORDINALS_TOOLS` | `false` | Set to `true` to disable Ordinals/NFT tools |
364
364
  | `DISABLE_UTILS_TOOLS` | `false` | Set to `true` to disable utility tools |
365
- | `DISABLE_A2B_TOOLS` | `false` | Set to `true` to disable agent-to-blockchain tools |
366
365
 
367
366
  ### Examples
368
367
 
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.31" },
73
+ { name: "Bitcoin SV", version: "0.0.32" },
74
74
  // {
75
75
  // // Advertise only what you actually implement
76
76
  // capabilities: {
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.31",
5
+ "version": "0.0.32",
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",
@@ -133,7 +133,7 @@ export function registerWalletTools(
133
133
  // registerA2bPublishAgentTool(server, wallet);
134
134
 
135
135
  // Register the wallet_a2bPublishMcp tool
136
- registerA2bPublishMcpTool(server, wallet);
136
+ // registerA2bPublishMcpTool(server, wallet);
137
137
 
138
138
  // Register only the minimal public-facing tools
139
139
  // wallet_createAction, wallet_signAction and wallet_getHeight have been removed