You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+77-8Lines changed: 77 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -28,28 +28,97 @@ The remote GitHub MCP Server is hosted by GitHub and provides the easiest method
28
28
29
29
For quick installation, use one of the one-click install buttons above. Once you complete that flow, toggle Agent mode (located by the Copilot Chat text input) and the server will start. Make sure you're using [VS Code 1.101](https://code.visualstudio.com/updates/v1_101) or [later](https://code.visualstudio.com/updates) for remote MCP and OAuth support.
30
30
31
-
### Usage in other MCP Hosts
32
31
33
-
For MCP Hosts that have been [configured to use the remote GitHub MCP Server](docs/host-integration.md), add the following JSON block to the host's configuration:
32
+
Alternatively, to manually configure VS Code, choose the appropriate JSON block from the examples below and add it to your host configuration:
34
33
34
+
<table>
35
+
<tr><th>Using OAuth</th><th>Using a GitHub PAT</th></tr>
36
+
<tr><thalign=leftcolspan=2>VS Code (version 1.101 or greater)</th></tr>
For MCP Hosts that are [Remote MCP-compatible](docs/host-integration.md), choose the appropriate JSON block from the examples below and add it to your host configuration:
83
+
84
+
<table>
85
+
<tr><th>Using OAuth</th><th>Using a GitHub PAT</th></tr>
86
+
<trvalign=top>
87
+
<td>
88
+
89
+
```json
90
+
{
91
+
"mcpServers": {
92
+
"github-remote": {
93
+
"url": "https://api.githubcopilot.com/mcp/"
94
+
}
44
95
}
45
96
}
46
97
```
47
98
99
+
</td>
100
+
<td>
101
+
102
+
```json
103
+
{
104
+
"mcpServers": {
105
+
"github-remote": {
106
+
"url": "https://api.githubcopilot.com/mcp/",
107
+
"authorization_token": "Bearer <your GitHub PAT>"
108
+
}
109
+
}
110
+
}
111
+
```
112
+
113
+
</td>
114
+
</tr>
115
+
</table>
116
+
48
117
> **Note:** The exact configuration format may vary by host. Refer to your host's documentation for the correct syntax and location for remote MCP server setup.
49
118
50
119
### Configuration
51
120
52
-
See [Remote Server Documentation](docs/remote-server.md) on how to pass configuration settings to the remote GitHub MCP Server.
121
+
See [Remote Server Documentation](docs/remote-server.md) on how to pass additional configuration settings to the remote GitHub MCP Server.
0 commit comments