Files
influxdb-mcp-server/claude_desktop_config_docker.example.json
Felix Zösch 3e23474476 Initial commit
2025-12-11 20:30:12 +01:00

21 lines
389 B
JSON

{
"mcpServers": {
"influxdb": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network=host",
"-e",
"INFLUX_URL=http://localhost:8086",
"-e",
"INFLUX_TOKEN=your_influxdb_token_here",
"-e",
"INFLUX_ORG=your_organization_name",
"influxdb-mcp-server:latest"
]
}
}
}