Add .finir/mcp.json config and .gitignore

This commit is contained in:
Finir
2026-07-28 20:24:12 +00:00
parent 8bfd50de08
commit 7f13fbd016
2 changed files with 28 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"mcpServers": {
"bash": {
"command": "python3",
"args": [
"/app/finir_agent/mcp_servers/bash_mcp_server.py"
]
},
"gitea": {
"command": "python3",
"args": [
"/app/finir_agent/mcp_servers/gitea_mcp_server.py"
],
"env": {
"GITEA_TOKEN": "${GITEA_TOKEN}",
"GITEA_URL": "https://git.hanime.zip"
}
},
"ponytail": {
"command": "python3",
"args": [
"/app/finir_agent/mcp_servers/ponytail_mcp_server.py"
]
}
}
}