Skip to content

Commit 8a039b9

Browse files
committed
Add Docker docs for README
1 parent f73b32b commit 8a039b9

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,32 @@ docker run -i --rm \
210210
zenmldocker/mcp-zenml:latest
211211
```
212212

213+
### Canonical MCP config using Docker
214+
215+
```json
216+
{
217+
"mcpServers": {
218+
"zenml": {
219+
"command": "docker",
220+
"args": [
221+
"run", "-i", "--rm",
222+
"-e", "ZENML_STORE_URL=https://...",
223+
"-e", "ZENML_STORE_API_KEY=ZENKEY_...",
224+
"-e", "ZENML_ACTIVE_PROJECT_ID=...",
225+
"-e", "LOGLEVEL=WARNING",
226+
"-e", "NO_COLOR=1",
227+
"-e", "ZENML_LOGGING_COLORS_DISABLED=true",
228+
"-e", "ZENML_LOGGING_VERBOSITY=WARN",
229+
"-e", "ZENML_ENABLE_RICH_TRACEBACK=false",
230+
"-e", "PYTHONUNBUFFERED=1",
231+
"-e", "PYTHONIOENCODING=UTF-8",
232+
"zenmldocker/mcp-zenml:latest"
233+
]
234+
}
235+
}
236+
}
237+
```
238+
213239
### Build Locally
214240

215241
From the repository root:

0 commit comments

Comments
 (0)