mirror of
https://github.com/dnlbauer/cordra-mcp.git
synced 2026-09-10 21:55:30 +00:00
doc: document how to use the docker build
This commit is contained in:
28
README.md
28
README.md
@@ -44,3 +44,31 @@ Run the MCP server:
|
|||||||
```bash
|
```bash
|
||||||
uv run mcp-cordra
|
uv run mcp-cordra
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Claude Code
|
||||||
|
|
||||||
|
You can add this MCP to Claude Code by registering it in the settings
|
||||||
|
of your project or creating a `.mcp.json` file in your workdir:
|
||||||
|
|
||||||
|
Example using the docker build:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"cordra": {
|
||||||
|
"command": "docker",
|
||||||
|
"args": [
|
||||||
|
"run",
|
||||||
|
"-i",
|
||||||
|
"--rm",
|
||||||
|
"-e",
|
||||||
|
"CORDRA_BASE_URL",
|
||||||
|
"ghcr.io/dnlbauer/cordra-mcp:latest"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"CORDRA_BASE_URL": "https://cordra.example.de"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user