You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When path mappings are configured, MCP tools can accept the host path provided by the client and resolve it to the mounted container path automatically.
241
+
200
242
### Available MCP Tools
201
243
202
244
| Tool | Description |
@@ -235,6 +277,7 @@ REINDEX=1 uv run python scripts/measure_mcp_search.py
235
277
### Debug Mode
236
278
237
279
Set `ACI_ENV=development` in `.env` to enable debug logging:
280
+
238
281
```
239
282
ACI_ENV=development
240
283
```
@@ -266,6 +309,7 @@ cp .env.example .env
266
309
```
267
310
268
311
Key settings:
312
+
269
313
| Variable | Description | Required |
270
314
|----------|-------------|----------|
271
315
|`ACI_EMBEDDING_API_KEY`| API key for embedding service | Yes |
@@ -275,6 +319,8 @@ Key settings:
275
319
|`ACI_VECTOR_STORE_API_KEY`| Qdrant API key (for Qdrant Cloud) | No |
276
320
|`ACI_VECTOR_STORE_HOST`| Qdrant host | No (defaults to localhost) |
277
321
|`ACI_VECTOR_STORE_PORT`| Qdrant port | No (defaults to 6333) |
322
+
|`ACI_MCP_WORKSPACE_ROOT`| Base directory for relative MCP paths inside the container/runtime | No |
323
+
|`ACI_MCP_PATH_MAPPINGS`| Host-to-container path prefix mappings for MCP, separated by `;`| No |
278
324
|`ACI_SERVER_HOST`| HTTP server host | No (defaults to 0.0.0.0) |
279
325
|`ACI_SERVER_PORT`| HTTP server port | No (defaults to 8000) |
280
326
|`ACI_ENV`| Environment (development/production) | No |
@@ -284,3 +330,6 @@ See `.env.example` for the full list of options.
284
330
The CLI and HTTP server will attempt to auto-start a local Qdrant Docker container only when
285
331
targeting a local endpoint (`localhost` / `127.0.0.1`). For cloud Qdrant (`ACI_VECTOR_STORE_URL`),
286
332
it will not run Docker.
333
+
334
+
When ACI itself is running inside a container, it will not attempt to launch nested Docker for Qdrant.
335
+
In that setup, run Qdrant as a separate local container or point `ACI_VECTOR_STORE_URL` to Qdrant Cloud.
0 commit comments