Skip to content

Commit 27b82d6

Browse files
authored
Fixed "Other MCP Hosts" example
1 parent c1e61b8 commit 27b82d6

File tree

1 file changed

+8
-24
lines changed

1 file changed

+8
-24
lines changed

README.md

Lines changed: 8 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,9 @@ For MCP Hosts that have been [configured to use the remote GitHub MCP Server](do
3939

4040
```json
4141
{
42-
"mcp": {
43-
"servers": {
44-
"github": {
45-
"type": "http",
46-
"url": "https://api.githubcopilot.com/mcp/"
47-
}
42+
"mcpServers": {
43+
"github": {
44+
"url": "https://api.githubcopilot.com/mcp/"
4845
}
4946
}
5047
}
@@ -55,25 +52,12 @@ For MCP Hosts that have been [configured to use the remote GitHub MCP Server](do
5552

5653
```json
5754
{
58-
"mcp": {
59-
"servers": {
60-
"github": {
61-
"type": "http",
62-
"url": "https://api.githubcopilot.com/mcp/"
63-
"headers": {
64-
"Authorization": "Bearer ${input:github_mcp_pat}",
65-
}
66-
}
67-
}
68-
},
69-
"inputs": [
70-
{
71-
"id": "github_mcp_pat",
72-
"type": "promptString",
73-
"description": "GitHub Personal Access Token",
74-
"password": true
55+
"mcpServers": {
56+
"github": {
57+
"url": "https://api.githubcopilot.com/mcp/",
58+
"authorization_token": "<your GitHub PAT>"
7559
}
76-
]
60+
}
7761
}
7862
```
7963

0 commit comments

Comments
 (0)