mcp-server-insumer 1.0.0 → 1.0.2
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 +3 -3
- package/package.json +5 -4
- package/server.json +21 -4
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# mcp-server-insumer
|
|
2
2
|
|
|
3
|
-
MCP server for [InsumerAPI](https://insumermodel.com/developers/) — on-chain
|
|
3
|
+
MCP server for [InsumerAPI](https://insumermodel.com/developers/) — privacy-preserving on-chain verification and attestation across 31 blockchains.
|
|
4
4
|
|
|
5
|
-
Enables AI agents (Claude Desktop, Cursor, Windsurf, and any MCP-compatible client) to autonomously
|
|
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 — with no balances or private data revealed.
|
|
6
6
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
@@ -52,7 +52,7 @@ Add to your MCP settings:
|
|
|
52
52
|
|
|
53
53
|
| Tool | Description |
|
|
54
54
|
|------|-------------|
|
|
55
|
-
| `insumer_attest` | Verify token balances
|
|
55
|
+
| `insumer_attest` | Verify arbitrary on-chain conditions (token balances, NFT ownership, multi-chain logic). Returns ECDSA-signed boolean — no balances revealed. 1 credit. |
|
|
56
56
|
| `insumer_verify` | Create signed discount code (INSR-XXXXX, 30-min expiry) for a wallet at a merchant. 1 credit. |
|
|
57
57
|
|
|
58
58
|
### Discovery (free)
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-server-insumer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "MCP server for InsumerAPI — on-chain
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "MCP server for InsumerAPI — privacy-preserving on-chain verification and attestation across 31 blockchains",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Douglas Borthwick",
|
|
7
|
+
"mcpName": "io.github.douglasborthwick-crypto/insumer",
|
|
7
8
|
"homepage": "https://insumermodel.com/developers/",
|
|
8
9
|
"repository": {
|
|
9
10
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/douglasborthwick-crypto/mcp-server-insumer"
|
|
11
|
+
"url": "git+https://github.com/douglasborthwick-crypto/mcp-server-insumer.git"
|
|
11
12
|
},
|
|
12
13
|
"keywords": [
|
|
13
14
|
"mcp",
|
|
14
15
|
"mcp-server",
|
|
15
16
|
"insumer",
|
|
16
17
|
"blockchain",
|
|
17
|
-
"
|
|
18
|
+
"on-chain-verification",
|
|
18
19
|
"attestation",
|
|
19
20
|
"ecdsa",
|
|
20
21
|
"web3",
|
package/server.json
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
2
3
|
"name": "io.github.douglasborthwick-crypto/insumer",
|
|
3
|
-
"description": "
|
|
4
|
-
"
|
|
4
|
+
"description": "Privacy-preserving on-chain verification and attestation across 31 blockchains.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/douglasborthwick-crypto/mcp-server-insumer",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.2",
|
|
5
10
|
"packages": [
|
|
6
11
|
{
|
|
7
|
-
"
|
|
12
|
+
"registryType": "npm",
|
|
8
13
|
"identifier": "mcp-server-insumer",
|
|
9
|
-
"version": "1.0.
|
|
14
|
+
"version": "1.0.2",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "InsumerAPI key (starts with insr_live_)",
|
|
21
|
+
"isRequired": true,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": true,
|
|
24
|
+
"name": "INSUMER_API_KEY"
|
|
25
|
+
}
|
|
26
|
+
]
|
|
10
27
|
}
|
|
11
28
|
]
|
|
12
29
|
}
|