Fix LOCAL_SERVER_URL para escritura de archivos en Docker

El MCP acai-code usa HTTP al server Python para operaciones de
ficheros (write, view, delete). En Docker, el server Python está
en el container app:9091, no en localhost:29871 (legacy local).

- mcp.json: env LOCAL_SERVER_URL=http://app:9091 para acai-code

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jordan Diaz
2026-04-03 13:19:20 +00:00
parent 414210bceb
commit 3aa7a463d0

View File

@@ -3,7 +3,9 @@
"acai-code": {
"command": "node",
"args": ["mcp-server/stdio.js"],
"env": {},
"env": {
"LOCAL_SERVER_URL": "http://app:9091"
},
"timeout": 30,
"startup_timeout": 10
},