cordon-mcp 0.1.0 → 0.2.0
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/LICENSE +21 -0
- package/README.md +271 -24
- package/SKILL.md +14 -9
- package/dist/cordon-mcp.js +677 -172
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cordon-mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Cordon inside an MCP client: an agent that can buy things and cannot
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Cordon inside an MCP client: an agent that can buy things and cannot spend past the mandate its owner signed, bounded by contracts it cannot reach.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Youvandra Febrial",
|
|
7
7
|
"homepage": "https://getcordon.xyz",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/youvandra/cordon/issues"
|
|
10
|
+
},
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
10
13
|
"url": "git+https://github.com/youvandra/cordon.git",
|
|
11
14
|
"directory": "packages/mcp"
|
|
12
15
|
},
|
|
13
|
-
"keywords": ["mcp", "x402", "agents", "arc", "circle", "usdc", "erc-8004"],
|
|
16
|
+
"keywords": ["mcp", "mcp-server", "x402", "agents", "ai-agents", "agent-payments", "spending-limits", "arc", "sepolia", "circle", "usdc", "erc-8004", "ens", "ensv2"],
|
|
14
17
|
"type": "module",
|
|
15
18
|
"bin": {
|
|
16
19
|
"cordon-mcp": "dist/cordon-mcp.js"
|
|
17
20
|
},
|
|
18
|
-
"files": ["dist", "SKILL.md", "README.md"],
|
|
21
|
+
"files": ["dist", "SKILL.md", "README.md", "LICENSE"],
|
|
19
22
|
"engines": {
|
|
20
23
|
"node": ">=22"
|
|
21
24
|
},
|