mcp-server-insumer 1.7.5 → 1.7.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 CHANGED
@@ -134,7 +134,8 @@ npm install insumer-verify
134
134
  ```typescript
135
135
  import { verifyAttestation } from "insumer-verify";
136
136
 
137
- // attestationResponse = the JSON your agent received from insumer_attest
137
+ // attestationResponse = the full API envelope {ok, data: {attestation, sig, kid}, meta}
138
+ // Do NOT pass attestationResponse.data — the function expects the outer envelope
138
139
  const result = await verifyAttestation(attestationResponse, {
139
140
  jwksUrl: "https://insumermodel.com/.well-known/jwks.json",
140
141
  maxAge: 120, // reject if block data is older than 2 minutes
@@ -227,9 +228,11 @@ If the API cannot reach one or more data sources (RPC nodes, Helius, XRPL, Coval
227
228
 
228
229
  ## Supported Chains (32)
229
230
 
230
- **EVM**: Ethereum, BNB Chain, Base, Avalanche, Polygon, Arbitrum, Optimism, Chiliz, Soneium, Plume, Sonic, Gnosis, Mantle, Scroll, Linea, zkSync Era, Blast, Taiko, Ronin, Celo, Moonbeam, Moonriver, Viction, opBNB, World Chain, Unichain, Ink, Sei, Berachain, ApeChain
231
+ **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
 
232
- **Non-EVM**: Solana, XRPL (XRP Ledger — native XRP, trust line tokens, NFTs)
233
+ **4 Covalent chains:** Taiko, Ronin, Moonriver, Viction
234
+
235
+ **Non-EVM:** Solana, XRPL (XRP Ledger — native XRP, trust line tokens, NFTs)
233
236
 
234
237
  ## Development
235
238
 
package/build/index.js CHANGED
@@ -82,7 +82,7 @@ const NftCollectionSchema = z.object({
82
82
  // --- Server setup ---
83
83
  const server = new McpServer({
84
84
  name: "insumer",
85
- version: "1.7.4",
85
+ version: "1.7.6",
86
86
  });
87
87
  // ============================================================
88
88
  // KEY DISCOVERY
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-insumer",
3
- "version": "1.7.5",
3
+ "version": "1.7.7",
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",