mcp-server-insumer 1.10.2 → 1.10.3
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 +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -250,7 +250,7 @@ This runs 4 independent checks: ECDSA signature, condition hash integrity, block
|
|
|
250
250
|
|
|
251
251
|
## Handling `rpc_failure` Errors
|
|
252
252
|
|
|
253
|
-
If the API cannot reach one or more blockchain data sources after retries, endpoints that produce signed attestations (`insumer_attest`, `
|
|
253
|
+
If the API cannot reach one or more blockchain data sources after retries, endpoints that produce signed attestations (`insumer_attest`, `insumer_wallet_trust`, `insumer_batch_wallet_trust`) 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).
|
|
254
254
|
|
|
255
255
|
**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.
|
|
256
256
|
|
package/build/index.js
CHANGED
|
@@ -108,7 +108,7 @@ const NftCollectionSchema = z.object({
|
|
|
108
108
|
// --- Server setup ---
|
|
109
109
|
const server = new McpServer({
|
|
110
110
|
name: "insumer",
|
|
111
|
-
version: "1.10.
|
|
111
|
+
version: "1.10.3",
|
|
112
112
|
});
|
|
113
113
|
// ============================================================
|
|
114
114
|
// KEY DISCOVERY
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-insumer",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.3",
|
|
4
4
|
"description": "MCP server for InsumerAPI — condition-based access infrastructure. Send a wallet and conditions, get a signed boolean across 37 chains. 27 tools: attestation, wallet trust profiles (49 checks across 27 chains incl. Solana, XRPL, Bitcoin, Tron, Stellar, Sui), compliance templates, ACP/UCP commerce, Merkle proofs, crypto key purchase (USDC/USDT/BTC/USDT-TRC20), instant API key setup. No balances exposed, no identity required.",
|
|
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.10.
|
|
9
|
+
"version": "1.10.3",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "mcp-server-insumer",
|
|
14
|
-
"version": "1.10.
|
|
14
|
+
"version": "1.10.3",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|