Files
demo-ai-develops/.vscode/mcp.json

30 lines
613 B
JSON
Raw Normal View History

2025-11-18 13:28:56 +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 14:31:34 +00:00
"GITEA_HOST": "https://devstar.cn",
2025-11-18 13:28:56 +00:00
"GITEA_ACCESS_TOKEN": "<your personal access token>"
}
}
}
2025-11-18 17:29:35 +00:00
2025-11-18 13:28:56 +00:00
}