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:
4
mcp.json
4
mcp.json
@@ -3,7 +3,9 @@
|
|||||||
"acai-code": {
|
"acai-code": {
|
||||||
"command": "node",
|
"command": "node",
|
||||||
"args": ["mcp-server/stdio.js"],
|
"args": ["mcp-server/stdio.js"],
|
||||||
"env": {},
|
"env": {
|
||||||
|
"LOCAL_SERVER_URL": "http://app:9091"
|
||||||
|
},
|
||||||
"timeout": 30,
|
"timeout": 30,
|
||||||
"startup_timeout": 10
|
"startup_timeout": 10
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user