-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json
More file actions
66 lines (66 loc) · 1.63 KB
/
Copy pathmcp.json
File metadata and controls
66 lines (66 loc) · 1.63 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
56
57
58
59
60
61
62
63
64
65
66
{
"mcpServers": {
"openclaw": {
"command": "node",
"args": [
"dist/mcp/index.js"
],
"disabled": false
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PAT}"
},
"disabled": false
},
"helius": {
"command": "npx",
"args": [
"-y",
"helius-mcp-server"
],
"env": {
"HELIUS_API_KEY": "${HELIUS_API_KEY}"
},
"disabled": false
},
"coingecko": {
"command": "npx",
"args": [
"-y",
"@mcp-dockmaster/mcp-cryptoprice-coingecko"
],
"env": {
"COINGECKO_API_KEY": "${COINGECKO_API_KEY}"
},
"disabled": false
},
"coinmarketcap": {
"command": "npx",
"args": [
"-y",
"@mcp-dockmaster/mcp-cryptoprice-coinmarketcap"
],
"env": {
"CMC_API_KEY": "${CMC_API_KEY}"
},
"disabled": false
},
"dune": {
"command": "npx",
"args": [
"-y",
"@mcp-dockmaster/mcp-server-dune"
],
"env": {
"DUNE_API_KEY": "${DUNE_API_KEY}"
},
"disabled": false
}
}
}