mcp-server-insumer
MCP server for on-chain attestation and wallet trust profiles across 31 EVM chains and Solana. Privacy-preserving boolean verification, ECDSA-signed responses, compliance templates.
README
mcp-server-insumer
MCP server for InsumerAPI -- on-chain verification across 31 blockchains. Returns ECDSA-signed booleans without exposing wallet balances. Up to 10 conditions per request, each with its own chainId. Optional Merkle storage proofs for trustless verification.
Enables AI agents (Claude Desktop, Cursor, Windsurf, and any MCP-compatible client) to autonomously verify on-chain conditions, discover merchants, generate signed discount codes, and onboard new merchants.
In production: DJD Agent Score (Coinbase x402 ecosystem) uses InsumerAPI for AI agent wallet trust scoring. Case study.
Also available as: LangChain (25 tools, PyPI) | OpenAI GPT (GPT Store) | insumer-verify (client-side verification, npm)
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"insumer": {
"command": "npx",
"args": ["-y", "mcp-server-insumer"],
"env": {
"INSUMER_API_KEY": "insr_live_..."
}
}
}
}
Cursor / Windsurf
Add to your MCP settings:
{
"insumer": {
"command": "npx",
"args": ["-y", "mcp-server-insumer"],
"env": {
"INSUMER_API_KEY": "insr_live_..."
}
}
}
Get an API Key
- Go to insumermodel.com/developers
- Sign up for a free key (instant, no credit card)
- Set it as
INSUMER_API_KEY
What You Get Back
When your agent calls insumer_attest, you get an ECDSA-signed attestation:
{
"ok": true,
"data": {
"attestation": {
"id": "ATST-A7C3E",
"pass": true,
"results": [
{
"condition": 0,
"met": true,
"label": "USDC >= 1000 on Ethereum",
"type": "token_balance",
"chainId": 1,
"evaluatedCondition": {
"chainId": 1,
"contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"decimals": 6,
"operator": "gte",
"threshold": 1000,
"type": "token_balance"
},
"conditionHash": "0x8a3b...",
"blockNumber": "0x129e3f7",
"blockTimestamp": "2026-02-28T12:34:56.000Z"
}
],
"passCount": 1,
"failCount": 0,
"attestedAt": "2026-02-28T12:34:57.000Z",
"expiresAt": "2026-02-28T13:04:57.000Z"
},
"sig": "MEUCIQD...(base64 ECDSA signature)...",
"kid": "insumer-attest-v1"
},
"meta": {
"version": "1.0",
"timestamp": "2026-02-28T12:34:57.000Z",
"creditsCharged": 1,
"creditsRemaining": 99
}
}
The sig is an ECDSA P-256 signature over {id, pass, results, attestedAt}. The kid identifies which key signed it. The conditionHash is a SHA-256 of the exact condition logic that was evaluated.
No balances. No amounts. Just a cryptographically signed true/false.
Verify the Response
Your agent gets the attestation. Your application should verify it. Install insumer-verify:
npm install insumer-verify
import { verifyAttestation } from "insumer-verify";
// attestationResponse = the JSON your agent received from insumer_attest
const result = await verifyAttestation(attestationResponse, {
jwksUrl: "https://insumermodel.com/.well-known/jwks.json",
maxAge: 120, // reject if block data is older than 2 minutes
});
if (result.valid) {
// Signature verified, condition hashes match, not expired
const pass = attestationResponse.data.attestation.pass;
console.log(`Attestation ${pass ? "passed" : "failed"} all conditions`);
} else {
console.log("Verification failed:", result.checks);
}
This runs 4 independent checks: ECDSA signature, condition hash integrity, block freshness, and attestation expiry. Zero runtime dependencies, uses Web Crypto API.
Tools (25)
Key Discovery (free)
| Tool | Description |
|---|---|
insumer_jwks |
Get the JWKS containing InsumerAPI's ECDSA P-256 public signing key. Use the kid from attestation responses to match the correct key. |
On-Chain Verification (cost credits)
| Tool | Description |
|---|---|
insumer_attest |
Verify on-chain conditions (token balances, NFT ownership, EAS attestations, Farcaster identity). Returns ECDSA-signed boolean with kid, evaluatedCondition, conditionHash (SHA-256), and blockNumber/blockTimestamp. 1 credit. Optional proof: "merkle" for EIP-1186 Merkle storage proofs (2 credits). |
insumer_compliance_templates |
List available EAS compliance templates (Coinbase Verifications on Base, Gitcoin Passport on Optimism). Free. |
insumer_wallet_trust |
Generate ECDSA-signed wallet trust fact profile. 17 checks across stablecoins, governance, NFTs, and staking. 3 credits (6 with merkle). |
insumer_batch_wallet_trust |
Batch trust profiles for up to 10 wallets. Shared block fetches, 5-8x faster. Partial success supported. 3 credits/wallet (6 with merkle). |
insumer_verify |
Create signed discount code (INSR-XXXXX, 30-min expiry) for a wallet at a merchant. 1 merchant credit. |
Discovery (free)
| Tool | Description |
|---|---|
insumer_list_merchants |
Browse the merchant directory. Filter by token, verification status. |
insumer_get_merchant |
Get full public merchant profile. |
insumer_list_tokens |
List all registered tokens and NFTs. Filter by chain, symbol, type. |
insumer_check_discount |
Calculate discount for a wallet at a merchant. |
Credits
| Tool | Description |
|---|---|
insumer_credits |
Check credit balance and tier. |
insumer_buy_credits |
Buy verification credits with USDC (25 credits / 1 USDC). |
insumer_confirm_payment |
Confirm USDC payment for a discount code. |
Merchant Onboarding (owner-only)
| Tool | Description |
|---|---|
insumer_create_merchant |
Create new merchant. Receives 100 free credits. |
insumer_merchant_status |
Get full private merchant details. |
insumer_configure_tokens |
Set token discount tiers. |
insumer_configure_nfts |
Set NFT collection discounts. |
insumer_configure_settings |
Set discount mode, cap, USDC payments. |
insumer_publish_directory |
Publish merchant to public directory. |
insumer_buy_merchant_credits |
Buy merchant verification credits with USDC. |
Domain Verification (owner-only)
| Tool | Description |
|---|---|
insumer_request_domain_verification |
Request a verification token for a merchant's domain. Returns token and 3 methods (DNS TXT, meta tag, file upload). |
insumer_verify_domain |
Complete domain verification after placing the token. Verified merchants get a trust badge. |
Commerce Protocol Integration
| Tool | Description |
|---|---|
insumer_acp_discount |
Check discount eligibility in OpenAI/Stripe ACP format. Returns coupon objects and per-item allocations. 1 merchant credit. |
insumer_ucp_discount |
Check discount eligibility in Google UCP format. Returns title, extension field, and applied array. 1 merchant credit. |
insumer_validate_code |
Validate an INSR-XXXXX discount code. Returns validity, discount percent, expiry. Free, no auth. |
Supported Chains (31)
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
Non-EVM: Solana
Development
npm install
npm run build
# Test with MCP Inspector
npx @modelcontextprotocol/inspector node build/index.js
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。