bsv-mcp 0.0.34 → 0.0.36
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 +20 -0
- package/dist/index.js +62893 -0
- package/index.ts +33 -36
- package/package.json +11 -7
- package/resources/junglebus.ts +242 -0
- package/resources/resources.ts +4 -0
- package/tools/a2b/discover.ts +184 -44
- package/tools/wallet/a2bPublishMcp.ts +163 -15
- package/tools/wallet/fetchPaymentUtxos.ts +130 -0
- package/tools/wallet/refreshUtxos.ts +76 -0
- package/tools/wallet/tools.ts +5 -0
- package/tools/wallet/wallet.ts +22 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# BSV MCP Server Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.36 - A2B Overlay Integration & Improved MCP Server Publishing
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
- **A2B Overlay Integration**: Implemented a robust connection to the A2B Overlay API
|
|
7
|
+
- Updated `a2b_discover` tool to search for on-chain MCP servers and agents
|
|
8
|
+
- Enhanced search capabilities with relevance-based result ranking
|
|
9
|
+
- User-friendly formatted output with command suggestions
|
|
10
|
+
- Support for filtering by type (agent/tool/all), block range, and free text search
|
|
11
|
+
- **Improved MCP Server Publishing**: Enhanced the wallet_a2bPublishMcp tool
|
|
12
|
+
- Better identity key integration via LocalSigner
|
|
13
|
+
- More robust configuration for sigma signing
|
|
14
|
+
- Improved transaction handling and error reporting
|
|
15
|
+
|
|
16
|
+
### Technical Improvements
|
|
17
|
+
- Updated API endpoint to use production overlay service
|
|
18
|
+
- Implemented enhanced search for better relevance scoring
|
|
19
|
+
- Better error handling for API responses
|
|
20
|
+
- Improved response formatting for readability
|
|
21
|
+
- Updated type definitions for consistency
|
|
22
|
+
|
|
3
23
|
## v0.0.34 - Transaction Broadcast Control
|
|
4
24
|
|
|
5
25
|
### Features
|