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 +1 -1
- package/README.md +0 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/tools/wallet/tools.ts +1 -1
package/CHANGELOG.md
CHANGED
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.
|
|
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
package/tools/wallet/tools.ts
CHANGED
|
@@ -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
|