mcp-server-insumer 1.7.3 → 1.7.4
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 +15 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Enables AI agents (Claude Desktop, Cursor, Windsurf, and any MCP-compatible clie
|
|
|
8
8
|
|
|
9
9
|
**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).
|
|
10
10
|
|
|
11
|
-
Also available as: [LangChain](https://pypi.org/project/langchain-insumer/) (25 tools, PyPI) | [langchain-community](https://github.com/langchain-ai/langchain/pull/549) (25 tools, PR #549) | [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)
|
|
11
|
+
Also available as: [LangChain](https://pypi.org/project/langchain-insumer/) (25 tools, PyPI) | [langchain-community](https://github.com/langchain-ai/langchain/pull/549) (25 tools, PR #549) | [ElizaOS](https://www.npmjs.com/package/eliza-plugin-insumer) (3 actions, npm) | [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)
|
|
12
12
|
|
|
13
13
|
**[Full AI Agent Verification API guide](https://insumermodel.com/ai-agent-verification-api/)** — covers all 32 chains, trust profiles, commerce protocols, and signature verification.
|
|
14
14
|
|
|
@@ -109,6 +109,20 @@ The `sig` is an ECDSA P-256 signature over `{id, pass, results, attestedAt}`. Th
|
|
|
109
109
|
|
|
110
110
|
No balances. No amounts. Just a cryptographically signed true/false.
|
|
111
111
|
|
|
112
|
+
### Wallet Auth (JWT)
|
|
113
|
+
|
|
114
|
+
Add `format: "jwt"` to the `insumer_attest` tool parameters to receive the attestation as a standard JWT bearer token:
|
|
115
|
+
|
|
116
|
+
```json
|
|
117
|
+
{
|
|
118
|
+
"wallet": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
|
|
119
|
+
"conditions": [ ... ],
|
|
120
|
+
"format": "jwt"
|
|
121
|
+
}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
The response includes an additional `jwt` field containing an ES256-signed JWT. This token is verifiable by any standard JWT library via the JWKS endpoint at `GET /v1/jwks` — making it compatible with Kong, Nginx, Cloudflare Access, AWS API Gateway, and other middleware that accepts JWT bearer tokens.
|
|
125
|
+
|
|
112
126
|
## Verify the Response
|
|
113
127
|
|
|
114
128
|
Your agent gets the attestation. Your application should verify it. Install [insumer-verify](https://www.npmjs.com/package/insumer-verify):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-insumer",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.4",
|
|
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",
|