- Add .gitignore to exclude .env, __pycache__, node_modules, and IDE files - Remove all __pycache__ bytecode files from version control - Add MCP config files (mcp.json, mcp.json.example) - Add MCP manager, registry, and config modules - Update routes, orchestrator engine, and agent base with latest changes Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
438 B
JSON
20 lines
438 B
JSON
{
|
|
"mcpServers": {
|
|
"acai-code": {
|
|
"command": "node",
|
|
"args": ["mcp-server/stdio.js"],
|
|
"env": {
|
|
"ACAI_WEB_URL": "http://localhost:8080",
|
|
"ACAI_WEBSITE": "mi-sitio",
|
|
"ACAI_PROJECT_DIR": "/ruta/al/proyecto"
|
|
},
|
|
"timeout": 30,
|
|
"startup_timeout": 10
|
|
},
|
|
"filesystem": {
|
|
"command": "npx",
|
|
"args": ["@modelcontextprotocol/server-filesystem", "/tmp"]
|
|
}
|
|
}
|
|
}
|