Skip to content

Commit d72a937

Browse files
authored
Remove Claude labelling
Claude may not yet support GitHub OAuth fully.
1 parent ad1df84 commit d72a937

File tree

1 file changed

+51
-3
lines changed

1 file changed

+51
-3
lines changed

README.md

Lines changed: 51 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,68 @@ The remote GitHub MCP Server is hosted by GitHub and provides the easiest method
2828

2929
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.
3030

31+
32+
To manually configure VS Code, choose the appropriate JSON block from the examples below and add it to your host configuration:
33+
34+
<table>
35+
<tr><th>Using OAuth</th><th>Using a GitHub PAT</th></tr>
36+
<tr><th align=left colspan=2>VS Code (version 1.101 or greater)</th></tr>
37+
<tr valign=top>
38+
<td>
39+
40+
```json
41+
{
42+
"servers": {
43+
"github-remote": {
44+
"type": "http",
45+
"url": "https://api.githubcopilot.com/mcp/"
46+
}
47+
}
48+
}
49+
```
50+
51+
</td>
52+
<td>
53+
54+
```json
55+
{
56+
"servers": {
57+
"github-remote": {
58+
"type": "http",
59+
"url": "https://api.githubcopilot.com/mcp/",
60+
"headers": {
61+
"Authorization": "Bearer ${input:github_mcp_pat}",
62+
}
63+
}
64+
},
65+
"inputs": [
66+
{
67+
"type": "promptString",
68+
"id": "github_mcp_pat",
69+
"description": "GitHub Personal Access Token",
70+
"password": true
71+
}
72+
]
73+
}
74+
```
75+
76+
</td>
77+
</tr>
78+
</table>
79+
3180
### Usage in other MCP Hosts
3281

3382
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:
3483

3584
<table>
3685
<tr><th>Using OAuth</th><th>Using a GitHub PAT</th></tr>
37-
<tr><th align=left colspan=2>Claude Desktop</th></tr>
3886
<tr valign=top>
3987
<td>
4088

4189
```json
4290
{
4391
"mcpServers": {
44-
"github": {
92+
"github-remote": {
4593
"url": "https://api.githubcopilot.com/mcp/"
4694
}
4795
}
@@ -54,7 +102,7 @@ For MCP Hosts that are [Remote MCP-compatible](docs/host-integration.md), choose
54102
```json
55103
{
56104
"mcpServers": {
57-
"github": {
105+
"github-remote": {
58106
"url": "https://api.githubcopilot.com/mcp/",
59107
"authorization_token": "<your GitHub PAT>"
60108
}

0 commit comments

Comments
 (0)