Files
ai-develops/.vscode/mcp.json
2025-11-18 17:31:41 +00:00

29 lines
533 B
JSON

{
"inputs": [
{
"type": "promptString",
"id": "gitea_token",
"description": "Gitea 个人访问令牌",
"password": true
}
],
"servers": {
"gitea-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITEA_HOST",
"-e",
"GITEA_ACCESS_TOKEN",
"docker.gitea.com/gitea-mcp-server"
],
"env": {
"GITEA_HOST": "<Your host>",
"GITEA_ACCESS_TOKEN": "<Your token>"
}
}
}
}