Loading...
npx -y @smithery/cli install @idoru/influxdb-mcp-server --client claude{
"mcpServers": {
"influxdb": {
"command": "npx",
"args": ["influxdb-mcp-server"],
"env": {
"INFLUXDB_TOKEN": "your_token",
"INFLUXDB_URL": "http://localhost:8086",
"INFLUXDB_ORG": "your_org"
}
}
}
}write-dataWrites time-series data to InfluxDB in line protocol format.
Allows writing data to InfluxDB, potentially overwriting existing data.
query-dataExecutes Flux queries against InfluxDB and returns the results.
Read-only operation, no data modification.
create-bucketCreates a new bucket in InfluxDB for storing time-series data.
Creates new buckets, which could consume resources and affect performance.
create-orgCreates a new organization in InfluxDB.
Creates new organizations, which could affect resource allocation and access control.
This MCP server provides access to InfluxDB, which can be risky if not configured correctly. It's safe to use for read-only operations and data analysis in a controlled environment. However, write and delete operations should be carefully monitored and restricted to authorized agents to prevent data loss or security breaches.