mirror of
https://github.com/acedanger/shell.git
synced 2025-12-06 04:30:13 -08:00
27 lines
491 B
JSON
27 lines
491 B
JSON
{
|
|
"inputs": [
|
|
{
|
|
"type": "promptString",
|
|
"id": "github_token",
|
|
"description": "GitHub Personal Access Token",
|
|
"password": true
|
|
}
|
|
],
|
|
"servers": {
|
|
"github": {
|
|
"command": "docker",
|
|
"args": [
|
|
"run",
|
|
"-i",
|
|
"--rm",
|
|
"-e",
|
|
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
|
"ghcr.io/github/github-mcp-server"
|
|
],
|
|
"env": {
|
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}"
|
|
}
|
|
}
|
|
}
|
|
}
|