@fidacy/mcp 0.1.6 → 0.1.7
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 +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,29 @@ Non-custodial: Fidacy authorizes and proves, it never holds funds.
|
|
|
7
7
|
Install once, works in any MCP-compatible agent: Claude Code, Claude Desktop,
|
|
8
8
|
Hermes, OpenClaw, and anything else that speaks MCP.
|
|
9
9
|
|
|
10
|
+
[](https://www.npmjs.com/package/@fidacy/mcp)
|
|
11
|
+
[](https://www.npmjs.com/package/@fidacy/mcp)
|
|
12
|
+
**Works with:** Claude Code · Claude Desktop · OpenClaw · Hermes · Brex CrabTrap
|
|
13
|
+
|
|
14
|
+
> **Your agent could be paying scammers right now.** Prompt-injected into the wrong
|
|
15
|
+
> payee, an inflated amount, or the same invoice twice — and your logs aren't
|
|
16
|
+
> evidence. Fidacy blocks it *before* money moves, and hands back a signed verdict
|
|
17
|
+
> **anyone can verify** against public keys. You don't trust us — you check the signature.
|
|
18
|
+
|
|
19
|
+
## Quick start (free, local-first, no account)
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"mcpServers": {
|
|
24
|
+
"fidacy": { "command": "npx", "args": ["-y", "@fidacy/mcp"] }
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Runs on your machine, offline, deny-by-default. Add trusted payees + caps in
|
|
30
|
+
`~/.fidacy/config.json`. Verify any verdict yourself against the public keys at
|
|
31
|
+
[`/.well-known/jwks.json`](https://api.fidacy.com/.well-known/jwks.json).
|
|
32
|
+
|
|
10
33
|
## Why
|
|
11
34
|
|
|
12
35
|
An agent can hallucinate or be prompt-injected into a payment: wrong payee,
|
package/package.json
CHANGED