From 3aa7a463d0ad7fe40dc28605bea7dd26b27f8292 Mon Sep 17 00:00:00 2001 From: Jordan Diaz Date: Fri, 3 Apr 2026 13:19:20 +0000 Subject: [PATCH] Fix LOCAL_SERVER_URL para escritura de archivos en Docker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- mcp.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mcp.json b/mcp.json index 007eff1..6ab73c8 100644 --- a/mcp.json +++ b/mcp.json @@ -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 },