Loading...

Exposes InfluxDB v2 functionality (query, write, manage) via the Model Context Protocol, enabling AI agents to interact with time-series data.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
Exposes InfluxDB v2 functionality (query, write, manage) via the Model Context Protocol, enabling AI agents to interact with time-series data.
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.
Performance depends on the complexity of Flux queries and the size of the InfluxDB dataset. Consider optimizing queries and indexing data for better performance.
Cost depends on InfluxDB usage, including data storage, query execution, and API calls. Monitor usage and optimize queries to minimize costs.
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"
}
}
}
}INFLUXDB_TOKENwrite-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.
Token
local
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.
Autonomy depends on the configuration and permissions granted to the InfluxDB token. Exercise caution when granting write or delete permissions to automated agents.
Production Tip
Implement robust input validation and error handling to prevent unexpected behavior and security vulnerabilities in production.
It allows AI agents to interact with InfluxDB v2 instances using the Model Context Protocol.
The server uses an InfluxDB token for authentication.
You can read and write data, execute queries, and manage database objects like buckets and organizations.
You need to set the `INFLUXDB_TOKEN` environment variable, and optionally `INFLUXDB_URL` and `INFLUXDB_ORG`.
The line protocol is a text-based format for writing time-series data to InfluxDB. Refer to the `line-protocol-guide` prompt for details.
Use the `query-data` tool or the `influxdb://query` resource with the appropriate organization name and Flux query.
It depends on your configuration and security practices. Ensure you protect your InfluxDB token and implement proper access controls.