-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 810 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 810 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": "etherscan-mcp-server",
"version": "1.0.0",
"description": "MCP server for Etherscan API with HTTP transport",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsx watch src/index.ts"
},
"keywords": [
"mcp",
"etherscan",
"ethereum",
"blockchain",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/cors": "^2.8.19",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"eventsource": "^4.1.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}