Add MCP bridge server for Claude Code integration
All checks were successful
Build and Push Agent / build (push) Successful in 4s

- MCP bridge: stdio protocol <-> HTTP endpoints
- Config file for Claude Code with aiworker MCP server
- Maps Claude MCP calls to /api/mcp/* endpoints
- To install: copy to /root/.config/claude/config.json in pod

Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hector Ros
2026-01-20 02:24:48 +01:00
parent 924bf2244d
commit 7ea10571c4
2 changed files with 112 additions and 0 deletions

11
claude-code-config.json Normal file
View File

@@ -0,0 +1,11 @@
{
"mcpServers": {
"aiworker": {
"command": "node",
"args": ["/workspace/mcp-bridge-server.js"],
"env": {
"BACKEND_URL": "https://api.fuq.tv"
}
}
}
}