-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathmcp.json
32 lines (32 loc) · 884 Bytes
/
mcp.json
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
{
"inputs": [
{
"id": "github-pat",
"type": "promptString",
"description": "Github Personal Access Token",
"password": true
}
],
"servers": {
"github-mcp-server-dev": {
"type": "stdio",
"command": "./src/github.com/github/github-mcp-server/script/go-run",
"args": [
// ""
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github-pat}"
}
},
"github-mcp-server-docker-dev": {
"type": "stdio",
"command": "./src/github.com/github/github-mcp-server/script/docker-build-run",
"args": [
// ""
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github-pat}"
}
}
}
}