bsv-mcp 0.0.27 → 0.0.28

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.27 - Enhanced Server Configuration & Maintenance
3
+ ## v0.0.28 - 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/index.ts CHANGED
@@ -2,12 +2,12 @@
2
2
  import { PrivateKey } from "@bsv/sdk";
3
3
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
4
4
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
5
- import { registerAllPrompts } from "./prompts";
6
- import { registerResources } from "./resources/resources";
7
- import { registerAllTools } from "./tools";
8
- import { registerMneeTools } from "./tools/mnee";
9
- import { registerWalletTools } from "./tools/wallet/tools";
10
- import { Wallet } from "./tools/wallet/wallet";
5
+ import { registerAllPrompts } from "./prompts/index.ts";
6
+ import { registerResources } from "./resources/resources.ts";
7
+ import { registerAllTools } from "./tools/index.ts";
8
+ import { registerMneeTools } from "./tools/mnee/index.ts";
9
+ import { registerWalletTools } from "./tools/wallet/tools.ts";
10
+ import { Wallet } from "./tools/wallet/wallet.ts";
11
11
 
12
12
  /**
13
13
  * Configuration options from environment variables
@@ -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.27" },
73
+ { name: "Bitcoin SV", version: "0.0.28" },
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.27",
5
+ "version": "0.0.28",
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",