-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservers.json.example
More file actions
30 lines (30 loc) · 843 Bytes
/
servers.json.example
File metadata and controls
30 lines (30 loc) · 843 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
{
"mcpServers": {
"code-collaboration": {
"command": "npx",
"args": ["-y", "@github/github-mcp-server"],
"env": {
"GITHUB_TOKEN": "YOUR_GITHUB_PAT"
}
},
"browser-automation": {
"command": "npx",
"args": ["-y", "@playwright/mcp@latest", "--extension"],
"env": {}
},
"design-handoff": {
"url": "http://localhost:8000/mcp?role=Developer&name=YourName"
},
"api-documentation": {
"command": "npx",
"args": [
"-y",
"apifox-mcp-server@latest",
"--project=YOUR_APIFOX_PROJECT_ID"
],
"env": {
"APIFOX_ACCESS_TOKEN": "YOUR_APIFOX_TOKEN"
}
}
}
}