mcp-server-insumer 1.0.6 → 1.0.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 +6 -2
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# mcp-server-insumer
|
|
2
2
|
|
|
3
|
-
MCP server for [InsumerAPI](https://insumermodel.com/developers/)
|
|
3
|
+
MCP server for [InsumerAPI](https://insumermodel.com/developers/) -- 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.
|
|
4
4
|
|
|
5
|
-
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
|
|
5
|
+
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.
|
|
6
|
+
|
|
7
|
+
**In production:** [DJD Agent Score](https://github.com/jacobsd32-cpu/djdagentscore) (Coinbase x402 ecosystem) uses InsumerAPI for AI agent wallet trust scoring. [Case study](https://insumermodel.com/blog/djd-agent-score-insumer-api-integration.html).
|
|
8
|
+
|
|
9
|
+
Also available as: [LangChain](https://pypi.org/project/langchain-insumer/) (6 tools, PyPI) | [OpenAI GPT](https://chatgpt.com/g/g-699c5e43ce2481918b3f1e7f144c8a49-insumerapi-verify) (GPT Store) | [insumer-verify](https://www.npmjs.com/package/insumer-verify) (client-side verification, npm)
|
|
6
10
|
|
|
7
11
|
## Quick Start
|
|
8
12
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-insumer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "MCP server for InsumerAPI —
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "MCP server for InsumerAPI — on-chain verification across 31 blockchains. ECDSA-signed booleans, optional Merkle proofs, 17 tools. Used by DJD Agent Score (Coinbase x402).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Douglas Borthwick",
|
|
7
7
|
"mcpName": "io.github.douglasborthwick-crypto/insumer",
|
|
@@ -19,7 +19,11 @@
|
|
|
19
19
|
"attestation",
|
|
20
20
|
"ecdsa",
|
|
21
21
|
"web3",
|
|
22
|
-
"ai-agents"
|
|
22
|
+
"ai-agents",
|
|
23
|
+
"token-gating",
|
|
24
|
+
"nft-verification",
|
|
25
|
+
"agent-trust",
|
|
26
|
+
"merkle-proof"
|
|
23
27
|
],
|
|
24
28
|
"type": "module",
|
|
25
29
|
"bin": {
|