-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathconfig.example.json
More file actions
53 lines (53 loc) · 1.22 KB
/
config.example.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"mcpServers": {
"example-server": {
"command": "node",
"args": ["/path/to/server.js"],
"env": {
"API_KEY": "your-api-key-here"
}
},
"airtable": {
"command": "node",
"args": ["/path/to/airtable-mcp/build/index.js"],
"env": {
"AIRTABLE_API_KEY": "your-airtable-api-key"
}
},
"brave-search": {
"command": "node",
"args": ["/path/to/brave-search/dist/index.js"],
"env": {
"BRAVE_API_KEY": "your-brave-api-key"
}
},
"github": {
"command": "node",
"args": ["/path/to/github/dist/index.js"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "your-github-token"
}
},
"google-maps": {
"command": "node",
"args": ["/path/to/google-maps/dist/index.js"],
"env": {
"GOOGLE_MAPS_API_KEY": "your-google-maps-api-key"
}
},
"filesystem": {
"command": "node",
"args": [
"/path/to/filesystem/dist/index.js",
"/path/to/allowed/directory"
]
},
"perplexity": {
"command": "node",
"args": ["/path/to/perplexity/dist/index.js"],
"env": {
"PERPLEXITY_API_KEY": "your-perplexity-api-key"
}
}
}
}