@1claw/mcp 0.21.0 → 0.22.0

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/README.md CHANGED
@@ -71,6 +71,8 @@ pnpm run build
71
71
  | `sign_typed_data` | Sign EIP-712 typed structured data. Returns signature, typed data hash, and signer address. |
72
72
  | `inspect_content` | Analyze arbitrary text for prompt injection, command injection, social engineering, PII, encoding tricks, and more. Works without vault credentials. |
73
73
 
74
+ > **Treasury wallets** (`POST /v1/treasury/wallets/generate`, `GET .../wallets`, etc.) are human-only endpoints and are **not** exposed as MCP tools. Agents cannot generate or manage treasury wallets. Human users manage treasury wallets via the dashboard, CLI (`1claw treasury`), or SDK (`client.treasuryWallets`).
75
+
74
76
  ## Resources
75
77
 
76
78
  | URI | Description |
@@ -241,7 +243,7 @@ All tool calls pass through an inspection pipeline before execution and after re
241
243
  | `ONECLAW_MCP_SANITIZATION_MODE` | `block` | `block` rejects critical/high threats; `surgical` normalizes Unicode but allows; `log_only` only logs. |
242
244
  | `ONECLAW_MCP_REDACT_SECRETS` | `true` | Redact known secret values from non-secret tool outputs. Requires security enabled. |
243
245
  | `ONECLAW_MCP_PII_DETECTION` | `true` | Detect PII patterns (emails, SSNs, credit cards, etc.) in inputs and outputs. |
244
- | `ONECLAW_MCP_EXFIL_PROTECTION` | `warn` | `block` rejects tool inputs containing known secrets; `warn` logs but allows; `off` disables. |
246
+ | `ONECLAW_MCP_EXFIL_PROTECTION` | `block` | `block` rejects tool inputs containing known secrets; `warn` logs but allows; `off` disables. |
245
247
 
246
248
  ### Shroud advanced security
247
249
 
package/dist/index.js CHANGED
@@ -90,7 +90,7 @@ function resolveClient(session) {
90
90
  }
91
91
  const serverOpts = {
92
92
  name: "1claw",
93
- version: "0.17.0",
93
+ version: "0.21.0",
94
94
  health: { enabled: true, path: "/health" },
95
95
  };
96
96
  if (transport === "httpStream") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1claw/mcp",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "description": "MCP server for the 1claw secrets vault — lets AI agents fetch, store, and manage secrets at runtime",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",