mirror of
https://gitea.com/gitea/gitea-mcp.git
synced 2025-08-23 14:23:05 +00:00
- Add .air.toml configuration file for Air live reloading with specific build and file watch settings - Ignore the tmp directory in .gitignore - Rename the gitea server configuration to gitea-mcp-stdio in the VSCode config and add separate configuration for gitea-mcp-http Signed-off-by: appleboy <appleboy.tw@gmail.com> Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/57 Co-authored-by: appleboy <appleboy.tw@gmail.com> Co-committed-by: appleboy <appleboy.tw@gmail.com>
40 lines
977 B
JSON
40 lines
977 B
JSON
{
|
|
// 💡 Inputs are prompted on first server start, then stored securely by VS Code.
|
|
"inputs": [
|
|
{
|
|
"type": "promptString",
|
|
"id": "gitea-host",
|
|
"description": "Gitea Host",
|
|
"password": false
|
|
},
|
|
{
|
|
"type": "promptString",
|
|
"id": "gitea-token",
|
|
"description": "Gitea Access Token",
|
|
"password": true
|
|
},
|
|
{
|
|
"type": "promptString",
|
|
"id": "gitea-insecure",
|
|
"description": "Allow insecure connections (e.g., self-signed certificates)",
|
|
"default": "false"
|
|
}
|
|
],
|
|
"servers": {
|
|
"gitea-mcp-stdio": {
|
|
"type": "stdio",
|
|
"command": "gitea-mcp",
|
|
"args": ["-t", "stdio"],
|
|
"env": {
|
|
"GITEA_HOST": "${input:gitea-host}",
|
|
"GITEA_ACCESS_TOKEN": "${input:gitea-token}",
|
|
"GITEA_INSECURE": "${input:gitea-insecure}"
|
|
}
|
|
},
|
|
"gitea-mcp-http": {
|
|
"type": "http",
|
|
"url": "http://localhost:8080/mcp",
|
|
}
|
|
}
|
|
}
|