19 lines
571 B
JSON
19 lines
571 B
JSON
{
|
|
"comment": "Docker configuration that mounts your home directory",
|
|
"comment2": "Update paths: /path/to/zen-mcp-server/.env and /Users/your-username",
|
|
"comment3": "The container auto-detects /workspace as sandbox from WORKSPACE_ROOT",
|
|
"mcpServers": {
|
|
"zen": {
|
|
"command": "docker",
|
|
"args": [
|
|
"run",
|
|
"--rm",
|
|
"-i",
|
|
"--env-file", "/path/to/zen-mcp-server/.env",
|
|
"-e", "WORKSPACE_ROOT=/Users/your-username",
|
|
"-v", "/Users/your-username:/workspace:ro",
|
|
"zen-mcp-server:latest"
|
|
]
|
|
}
|
|
}
|
|
} |