-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "cipher-x402-mcp",
"version": "0.3.0",
"description": "MCP server exposing 15 CIPHER x402-gated Solana / crypto / macro / public-data tools. AI agents auto-pay via the x402 protocol (USDC on Base) per tool call. Two free local tools (wallet-audit ruleset, audit-comp live listings).",
"type": "module",
"main": "dist/src/stdio.js",
"bin": {
"cipher-x402-mcp": "dist/src/stdio.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"smithery.yaml"
],
"scripts": {
"build": "tsc",
"start": "node dist/src/stdio.js",
"start:http": "node dist/src/http.js",
"typecheck": "tsc --noEmit",
"smoke": "node dist/src/smoke.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"x402",
"solana",
"usdc",
"base",
"wallet",
"cipher",
"ai-agents",
"claude",
"cursor",
"paid-api"
],
"author": "cryptomotifs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cryptomotifs/cipher-x402-mcp.git"
},
"homepage": "https://github.com/cryptomotifs/cipher-x402-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}