Initial commit
Some checks failed
ai-reviews / review (pull_request) Failing after 6m45s

This commit is contained in:
2025-11-18 13:28:56 +00:00
commit ac3a18bb6b
5 changed files with 146 additions and 0 deletions

31
.vscode/mcp.json vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"mcp": {
"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": "--host https://devstar.cn",
"GITEA_ACCESS_TOKEN": "<your personal access token>"
}
}
}
}
}