-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathcopilot-mcp-config.json
More file actions
46 lines (46 loc) · 985 Bytes
/
copilot-mcp-config.json
File metadata and controls
46 lines (46 loc) · 985 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
43
44
45
46
{
"mcpServers": {
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/insiders",
"headers": {
"Authorization": "Bearer ${{ secrets.COPILOT_MCP_GITHUB_PERSONAL_ACCESS_TOKEN }}",
"X-MCP-Toolsets": "all"
},
"tools": ["*"]
},
"filesystem": {
"type": "local",
"command": "mcp-server-filesystem",
"args": [
"/home/runner/work/cia/cia"
],
"tools": ["*"]
},
"memory": {
"type": "local",
"command": "mcp-server-memory",
"args": [],
"tools": ["*"]
},
"sequential-thinking": {
"type": "local",
"command": "mcp-server-sequential-thinking",
"args": [],
"tools": ["*"]
},
"playwright": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@playwright/mcp@latest",
"--headless"
],
"env": {
"DISPLAY": ":99"
},
"tools": ["*"]
}
}
}