-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmcp-config.docker.example.json
More file actions
51 lines (51 loc) · 1.19 KB
/
mcp-config.docker.example.json
File metadata and controls
51 lines (51 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"mcpServers": {
"aci": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"HOST_SOURCE_PATH:/workspace:ro",
"-v",
"aci-mcp-data:/data",
"-e",
"ACI_MCP_WORKSPACE_ROOT=/workspace",
"-e",
"ACI_MCP_PATH_MAPPINGS=HOST_SOURCE_PATH=/workspace",
"-e",
"ACI_EMBEDDING_API_URL",
"-e",
"ACI_EMBEDDING_API_KEY",
"-e",
"ACI_EMBEDDING_MODEL",
"-e",
"ACI_EMBEDDING_DIMENSION",
"-e",
"ACI_VECTOR_STORE_URL=http://host.docker.internal:6333",
"-e",
"ACI_VECTOR_STORE_VECTOR_SIZE=1024",
"-e",
"ACI_GRAPH_ENABLED",
"-e",
"ACI_LLM_ENABLED",
"-e",
"ACI_LLM_API_URL",
"-e",
"ACI_LLM_API_KEY",
"-e",
"ACI_LLM_MODEL",
"-e",
"ACI_HTTP_ENABLED",
"aci-mcp:latest"
],
"env": {
"ACI_EMBEDDING_API_URL": "https://api.openai.com/v1/embeddings",
"ACI_EMBEDDING_API_KEY": "your_api_key_here",
"ACI_EMBEDDING_MODEL": "text-embedding-3-small",
"ACI_EMBEDDING_DIMENSION": "1024"
}
}
}
}