Initial commit

This commit is contained in:
2026-03-17 07:15:38 +00:00
commit ed207ab5a4
9 changed files with 2137 additions and 0 deletions

43
opencode.json Normal file
View File

@@ -0,0 +1,43 @@
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@tarquinen/opencode-dcp@latest"],
"mcp": {
"docker": {
"type": "local",
"command": ["uv", "run", "python", "mcps/docker_mcp.py"],
"enabled": true
},
"websearch": {
"type": "local",
"command": ["uv", "run", "python", "mcps/websearch.py"],
"enabled": true
},
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
"enabled": true
},
"gitea": {
"type": "local",
"command": ["uv", "run", "python", "mcps/gitea_mcp.py"],
"enabled": true,
"environment": {
"GITEA_URL": "http://localhost:3000",
"GITEA_TOKEN": "de9361e539143100d847fbe602b4881742741527"
}
},
"sec-edgar": {
"type": "local",
"command": ["uvx", "--from", "sec-edgar-mcp", "sec-edgar-mcp"],
"enabled": true,
"environment": {
"SEC_EDGAR_USER_AGENT": "OpenCode Agent (opencode@example.com)"
}
},
"yfinance": {
"type": "local",
"command": ["uvx", "--from", "yahoo-finance-mcp", "yahoo-finance-mcp"],
"enabled": true
}
}
}