-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.06 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
{
"name": "augurrisk-mcp",
"version": "1.0.1",
"description": "Local stdio MCP server for Augur's paid Base contract risk API.",
"license": "MIT",
"type": "module",
"bin": {
"augurrisk-mcp": "index.mjs"
},
"files": [
"index.mjs",
"smoke-test.mjs",
"README.md",
".env.example"
],
"keywords": [
"augur",
"mcp",
"model-context-protocol",
"x402",
"base",
"smart-contract",
"risk"
],
"homepage": "https://augurrisk.com/mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/JleviEderer/risk-api.git",
"directory": "examples/javascript/augur-mcp"
},
"bugs": {
"url": "https://github.com/JleviEderer/risk-api/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node index.mjs",
"smoke": "node smoke-test.mjs",
"pack:preview": "npm pack --dry-run"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@x402/evm": "^2.6.0",
"@x402/fetch": "^2.6.0",
"dotenv": "^17.3.1",
"viem": "^2.47.0",
"zod": "^3.25.76"
}
}