-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 825 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 825 Bytes
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
{
"name": "ethereum-dune-mcp",
"version": "0.1.0",
"description": "MCP server for Ethereum analytics: EIP-1559, Blobs, and MEV data powered by Dune Analytics",
"type": "module",
"main": "dist/index.js",
"bin": {
"ethereum-dune-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ethereum",
"eip-1559",
"mev",
"blobs",
"dune",
"mcp",
"research"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}