Files
ai-develops/.vscode/mcp.json

29 lines
533 B
JSON
Raw Normal View History

2025-11-18 13:27:01 +00:00
{
2025-11-18 17:31:06 +00:00
"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": {
2025-11-18 17:31:41 +00:00
"GITEA_HOST": "<Your host>",
"GITEA_ACCESS_TOKEN": "<Your token>"
2025-11-18 13:27:01 +00:00
}
}
}
}