|
1 | 1 | { |
2 | 2 | "mcpServers": { |
3 | | - "github": { |
4 | | - "type": "local", |
5 | | - "command": "npx", |
6 | | - "args": [ |
7 | | - "-y", |
8 | | - "@modelcontextprotocol/server-github", |
9 | | - "--toolsets", |
10 | | - "all", |
11 | | - "--tools", |
12 | | - "*" |
13 | | - ], |
14 | | - "env": { |
15 | | - "GITHUB_TOKEN": "${{ secrets.COPILOT_MCP_GITHUB_PERSONAL_ACCESS_TOKEN }}", |
16 | | - "GITHUB_PERSONAL_ACCESS_TOKEN": "${{ secrets.COPILOT_MCP_GITHUB_PERSONAL_ACCESS_TOKEN }}", |
17 | | - "GITHUB_OWNER": "Hack23", |
18 | | - "GITHUB_API_URL": "https://api.githubcopilot.com/mcp/insiders" |
| 3 | + "github": { |
| 4 | + "type": "http", |
| 5 | + "url": "https://api.githubcopilot.com/mcp/insiders", |
| 6 | + "headers": { |
| 7 | + "Authorization": "Bearer ${{ secrets.COPILOT_MCP_GITHUB_PERSONAL_ACCESS_TOKEN }}" |
| 8 | + }, |
| 9 | + "headers": { |
| 10 | + "X-MCP-Toolsets": "*" |
19 | 11 | }, |
20 | | - "tools": ["*"] |
| 12 | + "tools": ["*"] |
21 | 13 | }, |
22 | 14 | "filesystem": { |
23 | 15 | "type": "local", |
24 | | - "command": "npx", |
25 | | - "args": ["-y", "@modelcontextprotocol/server-filesystem", "/home/runner/work/riksdagsmonitor/riksdagsmonitor"], |
26 | | - "tools": ["*"] |
27 | | - }, |
28 | | - "git": { |
29 | | - "type": "local", |
30 | | - "command": "npx", |
31 | | - "args": ["-y", "@modelcontextprotocol/server-git", "--repository", "/home/runner/work/riksdagsmonitor/riksdagsmonitor"], |
| 16 | + "command": "mcp-server-filesystem", |
| 17 | + "args": [ |
| 18 | + "/home/runner/work/riksdagsmonitor/riksdagsmonitor" |
| 19 | + ], |
32 | 20 | "tools": ["*"] |
33 | 21 | }, |
34 | 22 | "memory": { |
35 | | - "type": "local", |
36 | | - "command": "npx", |
37 | | - "args": ["-y", "@modelcontextprotocol/server-memory"], |
| 23 | + "type": "local", |
| 24 | + "command": "mcp-server-memory", |
| 25 | + "args": [], |
38 | 26 | "tools": ["*"] |
39 | 27 | }, |
40 | 28 | "sequential-thinking": { |
41 | 29 | "type": "local", |
42 | | - "command": "npx", |
43 | | - "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"], |
| 30 | + "command": "mcp-server-sequential-thinking", |
| 31 | + "args": [], |
44 | 32 | "tools": ["*"] |
45 | 33 | }, |
46 | | - "playwright": { |
| 34 | + "playwright": { |
47 | 35 | "type": "local", |
48 | 36 | "command": "npx", |
49 | | - "args": ["-y", "@modelcontextprotocol/server-playwright"], |
| 37 | + "args": [ |
| 38 | + "-y", |
| 39 | + "@playwright/mcp@latest", |
| 40 | + "--headless" |
| 41 | + ], |
| 42 | + "env": { |
| 43 | + "DISPLAY": ":99" |
| 44 | + }, |
50 | 45 | "tools": ["*"] |
51 | 46 | } |
52 | 47 | } |
|
0 commit comments