mcp-server-insumer 1.7.4 → 1.7.6
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 +10 -2
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -219,11 +219,19 @@ This runs 4 independent checks: ECDSA signature, condition hash integrity, block
|
|
|
219
219
|
| `insumer_ucp_discount` | Check discount eligibility in Google UCP format. Returns title, extension field, and applied array. 1 merchant credit. |
|
|
220
220
|
| `insumer_validate_code` | Validate an INSR-XXXXX discount code. Returns validity, discount percent, expiry. Free, no auth. |
|
|
221
221
|
|
|
222
|
+
## Handling `rpc_failure` Errors
|
|
223
|
+
|
|
224
|
+
If the API cannot reach one or more data sources (RPC nodes, Helius, XRPL, Covalent) after retries, endpoints that produce signed attestations (`insumer_attest`, `insumer_trust`, `insumer_trust_batch`) return `ok: false` with error code `rpc_failure`. No signature, no JWT, no credits charged. This is a retryable error — the MCP client should retry after a short delay (2-5 seconds).
|
|
225
|
+
|
|
226
|
+
**Important:** `rpc_failure` is NOT a verification failure. Do not treat it as `pass: false`. It means the data source was temporarily unavailable and the API refused to sign an unverified result.
|
|
227
|
+
|
|
222
228
|
## Supported Chains (32)
|
|
223
229
|
|
|
224
|
-
**
|
|
230
|
+
**26 direct-RPC chains:** Ethereum, BNB Chain, Base, Avalanche, Polygon, Arbitrum, Optimism, Chiliz, Soneium, Plume, World Chain, Sonic, Gnosis, Mantle, Scroll, Linea, ZKsync, Blast, Celo, Moonbeam, opBNB, Unichain, Ink, Sei, Berachain, ApeChain
|
|
231
|
+
|
|
232
|
+
**4 Covalent chains:** Taiko, Ronin, Moonriver, Viction
|
|
225
233
|
|
|
226
|
-
**Non-EVM
|
|
234
|
+
**Non-EVM:** Solana, XRPL (XRP Ledger — native XRP, trust line tokens, NFTs)
|
|
227
235
|
|
|
228
236
|
## Development
|
|
229
237
|
|
package/build/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-insumer",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"description": "MCP server for The Insumer Model — read-first blockchain verification infrastructure that returns ECDSA-signed, privacy-preserving booleans across 32 chains without exposing wallet balances. 26 tools: attestation, wallet trust profiles, compliance templates, ACP/UCP commerce, Merkle proofs, instant API key setup. Not a loyalty program. Not an oracle.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Douglas Borthwick",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/douglasborthwick-crypto/mcp-server-insumer",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.7.
|
|
9
|
+
"version": "1.7.4",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "mcp-server-insumer",
|
|
14
|
-
"version": "1.7.
|
|
14
|
+
"version": "1.7.4",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|