@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 +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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` | `
|
|
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