@openclawcash/mcp-server 0.1.0 → 0.1.1

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.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import "../openclawcash-mcp.mjs";
@@ -7,7 +7,7 @@ import { fileURLToPath } from "node:url";
7
7
  import { z } from "zod";
8
8
 
9
9
  const SERVER_NAME = "openclawcash";
10
- const SERVER_VERSION = "0.1.0";
10
+ const SERVER_VERSION = "0.1.1";
11
11
  const PROTOCOL_VERSION = "2024-11-05";
12
12
  const DEFAULT_BASE_URL = "https://openclawcash.com";
13
13
 
@@ -646,7 +646,7 @@ async function runSelfTest() {
646
646
  capabilities: {},
647
647
  clientInfo: {
648
648
  name: "openclawcash-self-test",
649
- version: "0.1.0",
649
+ version: "0.1.1",
650
650
  },
651
651
  },
652
652
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclawcash/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "OpenClawCash MCP server for managed agent wallets, balances, transfers, swaps, and approvals.",
5
5
  "type": "module",
6
6
  "license": "Proprietary",
@@ -13,9 +13,10 @@
13
13
  },
14
14
  "author": "OpenClawCash",
15
15
  "bin": {
16
- "openclawcash-mcp": "./openclawcash-mcp.mjs"
16
+ "openclawcash-mcp": "bin/openclawcash-mcp.js"
17
17
  },
18
18
  "files": [
19
+ "bin/openclawcash-mcp.js",
19
20
  "openclawcash-mcp.mjs",
20
21
  "README.md",
21
22
  ".env.example"