-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy path.mcp.json
More file actions
35 lines (35 loc) · 843 Bytes
/
.mcp.json
File metadata and controls
35 lines (35 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
31
32
33
34
35
{
"mcpServers": {
"clickup": {
"type": "http",
"url": "https://mcp.clickup.com/mcp",
"headers": {
"Authorization": "Bearer ${CLICKUP_API_TOKEN}"
}
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
},
"filesystem_workspace": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"filesystem_docs": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "./docs/content"]
},
"code-review-graph": {
"command": "pipx",
"args": [
"run",
"code-review-graph==2.3.2",
"serve"
],
"type": "stdio"
}
}
}