Skip to content

Commit 1d56fc7

Browse files
committed
docs: Add Docker example on README
1 parent 9bdb52f commit 1d56fc7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,35 @@ For the Claude Desktop app, you can manually configure the MCP server by editing
198198
}
199199
```
200200

201+
Or, alternatively, if you want to use docker, you can add the following configuration:
202+
203+
```json
204+
{
205+
"mcpServers": {
206+
"sysdig-mcp-server": {
207+
"command": "docker",
208+
"args": [
209+
"run",
210+
"-i",
211+
"--rm",
212+
"-e",
213+
"SYSDIG_HOST",
214+
"-e",
215+
"MCP_TRANSPORT",
216+
"-e",
217+
"SYSDIG_SECURE_TOKEN",
218+
"ghcr.io/sysdiglabs/sysdig-mcp-server"
219+
],
220+
"env": {
221+
"SYSDIG_HOST": "<your_sysdig_host>",
222+
"SYSDIG_SECURE_API_TOKEN": "<your_sysdig_secure_api_token>",
223+
"MCP_TRANSPORT": "stdio"
224+
}
225+
}
226+
}
227+
}
228+
```
229+
201230
3. **Replace the placeholders**:
202231
- Replace `<your_sysdig_host>` with your Sysdig Secure host URL.
203232
- Replace `<your_sysdig_secure_api_token>` with your Sysdig Secure API token.

0 commit comments

Comments
 (0)