mcflux
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| INFLUXDB_URL | No | InfluxDB HTTP API URL | http://localhost:8086 |
| INFLUXDB_PASSWORD | No | Password for basic auth | |
| INFLUXDB_USERNAME | No | Username for basic auth |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pingA | Check connectivity to the InfluxDB instance. Returns the server version. |
| list_databasesA | List all databases on the InfluxDB instance. |
| list_measurementsA | List all measurements in a database. Args: database: Name of the InfluxDB database. |
| list_tag_keysA | List tag keys in a database, optionally filtered by measurement. Args: database: Name of the InfluxDB database. measurement: Optional measurement name to filter by. |
| list_field_keysA | List field keys and their types in a database, optionally filtered by measurement. Args: database: Name of the InfluxDB database. measurement: Optional measurement name to filter by. |
| list_tag_valuesA | List values for a specific tag key. Args: database: Name of the InfluxDB database. tag_key: The tag key whose values you want to list. measurement: Optional measurement name to filter by. |
| queryA | Execute a read-only InfluxQL query against a database. Only SELECT and SHOW statements are allowed. Write operations are blocked. Args: database: Name of the InfluxDB database to query. influxql: The InfluxQL query to execute (e.g. SELECT * FROM cpu LIMIT 10). epoch: Timestamp precision in the response (ns, u, ms, s, m, h). Default: ms. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool has a distinct purpose: ping for connectivity, list_* tools for schema exploration (databases, measurements, tags, fields), and query for executing InfluxQL. No overlapping functionality.
Most tools follow the verb_noun pattern (list_databases, list_measurements, etc.). 'ping' and 'query' are exceptions but are standard, recognizable verbs in this context, so naming remains predictable.
Seven tools is well within the ideal range for a focused server. Each tool addresses a core aspect of read-only InfluxDB interaction without redundancy.
The toolset covers the full read-only lifecycle: connectivity, database listing, schema exploration (measurements, tags, fields), and querying. Any missing metadata can be obtained through the query tool with SHOW statements.