cordon-mcp 0.1.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/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "cordon-mcp",
3
+ "version": "0.1.0",
4
+ "description": "Cordon inside an MCP client: an agent that can buy things and cannot move money, bounded by contracts on Arc.",
5
+ "license": "MIT",
6
+ "author": "Youvandra Febrial",
7
+ "homepage": "https://getcordon.xyz",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/youvandra/cordon.git",
11
+ "directory": "packages/mcp"
12
+ },
13
+ "keywords": ["mcp", "x402", "agents", "arc", "circle", "usdc", "erc-8004"],
14
+ "type": "module",
15
+ "bin": {
16
+ "cordon-mcp": "dist/cordon-mcp.js"
17
+ },
18
+ "files": ["dist", "SKILL.md", "README.md"],
19
+ "engines": {
20
+ "node": ">=22"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "build": "tsc --noEmit",
27
+ "bundle": "esbuild src/main.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/cordon-mcp.js --external:viem --external:@modelcontextprotocol/sdk --external:zod",
28
+ "prepack": "npm run bundle",
29
+ "test": "node --test \"test/*.test.ts\"",
30
+ "start": "node src/main.ts"
31
+ },
32
+ "dependencies": {
33
+ "@modelcontextprotocol/sdk": "^1.12.0",
34
+ "viem": "^2.21.55",
35
+ "zod": "^4.5.4"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^22.10.2",
39
+ "esbuild": "^0.25.12",
40
+ "typescript": "^5.7.2"
41
+ }
42
+ }