Add agent access documentation and MCP usage guide
All checks were successful
Build and Push Agent / build (push) Successful in 4s

- Complete guide for accessing terminal web (claude.fuq.tv)
- MCP endpoints usage examples
- Typical workflow from task to PR
- Troubleshooting section
- MCP config template (for future use)

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

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

@@ -0,0 +1,11 @@
{
"mcpServers": {
"aiworker": {
"command": "node",
"args": ["-e", "require('child_process').spawn('curl', ['-X', 'POST', process.argv[1], '-H', 'Content-Type: application/json', '-d', JSON.stringify({method: process.argv[2], params: JSON.parse(process.argv[3])})], {stdio: 'inherit'})"],
"env": {
"MCP_ENDPOINT": "https://api.fuq.tv/api/mcp"
}
}
}
}