-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 984 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 984 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
38
39
40
41
42
{
"name": "defi-mcp",
"version": "0.1.0",
"description": "MCP server exposing DeFi/crypto primitives to AI agents — prices, wallets, gas, DEX quotes",
"type": "module",
"main": "src/index.js",
"bin": {
"defi-mcp": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest --testPathPattern=tests/",
"test:api": "node tests/api_check.js"
},
"keywords": [
"mcp",
"defi",
"crypto",
"blockchain",
"ai-agent",
"web3"
],
"author": "Clawdia",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.4.5",
"ethers": "^6.16.0",
"fastify": "^5.7.4",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"jest": "^29.7.0"
},
"engines": {
"node": ">=18"
}
}