Skip to main content
Glama
dmayan-ss

mcflux

by dmayan-ss

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
INFLUXDB_URLNoInfluxDB HTTP API URLhttp://localhost:8086
INFLUXDB_PASSWORDNoPassword for basic auth
INFLUXDB_USERNAMENoUsername 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 7 tools

Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues