Skip to main content
Glama

mcp-airq

MCP PyPI Total Downloads Python License Tests Coverage

MCP server for air-Q air quality sensor devices. Enables Claude Desktop, Claude Code, and other MCP clients to directly query and configure air-Q devices on your local network.

Built on aioairq, the official async Python library for air-Q.

The same mcp-airq executable also works as a direct CLI when you pass a tool name as a subcommand.

Installation

pip install mcp-airq

Or run directly with uvx:

uvx mcp-airq

Related MCP server: aranet4-mcp-server

CLI Usage

Use the same command directly from the shell:

mcp-airq list-devices
mcp-airq get-air-quality --device "Living Room"
mcp-airq get-air-quality-history --device "Living Room" --last-hours 12 --sensors co2
mcp-airq plot-air-quality-history --sensor co2 --output-format png
mcp-airq export-air-quality-history --sensor co2 --output-format xlsx
mcp-airq set-night-mode --activated --device "Bedroom"

For historical plots and exports:

  • omit device, location, and group to combine all configured devices into one artifact

  • use location or group to combine only the matching devices

  • plot_air_quality_history returns one file per requested sensor, with one series per matching device

  • export_air_quality_history returns one CSV/XLSX file per request, with rows for all matching devices

The CLI subcommands mirror the MCP tool names. Both styles work:

mcp-airq list-devices
mcp-airq list_devices

To force MCP server mode from an interactive terminal, run:

mcp-airq serve

The CLI is pipe-friendly: successful command output goes to stdout, while tool errors go to stderr with exit code 1.

mcp-airq get-air-quality --device "Living Room" | jq '.co2'
mcp-airq get-air-quality --device "Living Room" --compact-json | jq '.co2'
mcp-airq get-air-quality --device "Living Room" --yaml | yq '.co2'

Device Configuration

Create a JSON file with your device(s), e.g. ~/.config/airq-devices.json:

[
  {"address": "192.168.4.1", "password": "your_password", "name": "air-Q Pro", "location": "Living Room", "group": "Home"},
  {"address": "192.168.4.2", "password": "your_password", "name": "air-Q Radon", "location": "Living Room", "group": "Home"},
  {"address": "office_air-q.local", "password": "other_pass", "name": "Office", "group": "Work"}
]

Each entry requires:

  • address — IP address or mDNS hostname (e.g. abcde_air-q.local)

  • password — Device password (default: airqsetup)

  • name (optional) — Human-readable name; defaults to address

  • location (optional) — Physical room/area for grouping (e.g. "Living Room")

  • group (optional) — Second grouping dimension, orthogonal to location (e.g. "Home", "Work")

Then restrict access to the file (it contains passwords):

chmod 600 ~/.config/airq-devices.json

Alternatively, pass the device list inline via the AIRQ_DEVICES environment variable as a JSON string.

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "airq": {
      "command": "uvx",
      "args": ["mcp-airq"],
      "env": {
        "AIRQ_CONFIG_FILE": "/home/you/.config/airq-devices.json"
      }
    }
  }
}

Claude Code

Register the server once via the CLI:

claude mcp add airq -e AIRQ_CONFIG_FILE=~/.config/airq-devices.json -- uvx mcp-airq

This writes to ~/.claude/settings.json and is automatically picked up by the Claude Code VSCode extension as well — no separate configuration needed.

If the server fails to connect: MCP servers run in a subprocess that may not inherit your shell's PATH. Replace uvx with its full path (which uvx → e.g. /home/you/.local/bin/uvx):

claude mcp add airq -e AIRQ_CONFIG_FILE=~/.config/airq-devices.json -- /home/you/.local/bin/uvx mcp-airq

OpenAI Codex

Register the server once via the CLI:

codex mcp add airq --env AIRQ_CONFIG_FILE=~/.config/airq-devices.json -- uvx mcp-airq

This writes to ~/.codex/config.toml and is automatically picked up by the Codex VSCode extension as well.

If the server fails to connect: Use the full path to uvx (see note above).

Available Tools

Read-Only

Tool

Description

list_devices

List all configured air-Q devices (with location/group if set)

get_air_quality

Get sensor readings — by device, location, or group

get_air_quality_history

Get historical sensor data as column-oriented JSON

plot_air_quality_history

Render one historical chart per sensor across all matching devices

export_air_quality_history

Export one historical sensor as one csv/xlsx across matching devices

get_device_info

Get device metadata (name, model, firmware version)

get_config

Get full device configuration

get_logs

Get device log entries

identify_device

Make device blink its LEDs for visual identification

get_led_theme

Get current LED visualization theme

get_possible_led_themes

List all available LED visualization themes

get_night_mode

Get current night mode configuration

get_brightness_config

Get current LED brightness configuration

Configuration

Tool

Description

set_device_name

Rename a device

set_led_theme

Change LED visualization (CO₂, VOC, Humidity, PM2.5, …)

set_night_mode

Configure night mode schedule and settings

set_brightness

Adjust LED brightness (day/night)

configure_network

Set static IP or switch to DHCP

Device Control

Tool

Description

restart_device

Restart the device (~30s downtime)

shutdown_device

Shut down the device (manual restart required)

Multi-Device Support

When multiple devices are configured, specify which device to query:

  • By exact name: "air-Q Pro"

  • By partial match (case-insensitive): "pro", "radon"

If only one device is configured, it is selected automatically.

Location and Group Queries

get_air_quality accepts two optional grouping parameters:

  • location — query all devices in the same room (e.g. "Living Room")

  • group — query all devices sharing a group tag (e.g. "Home")

Both are independent: a device can have a location, a group, both, or neither. Matching is case-insensitive and substring-based.

get_air_quality(location="Living Room")  → air-Q Pro + air-Q Radon
get_air_quality(group="Home")            → air-Q Pro + air-Q Radon + …
get_air_quality(device="air-Q Radon")   → just that one device

Exactly one of device, location, or group may be specified per call.

Historical Data

Three tools provide access to data stored on the device's SD card:

Plotting charts

plot_air_quality_history renders a chart for one sensor. When multiple devices match, each device becomes a separate series in the same chart.

CO₂ area chart — single device

Single device (24 h, area chart, PNG)

CO₂ area chart — multiple devices

Multiple devices at one location (24 h, area chart, PNG)

# Single device, last 24 hours (default), PNG output (default)
mcp-airq plot-air-quality-history --sensor co2 --device "Living Room"

# All devices at a location, custom time range, SVG output
mcp-airq plot-air-quality-history --sensor co2 --location "Living Room" \
  --from-datetime "2026-03-16T00:00:00" --to-datetime "2026-03-17T00:00:00" \
  --output-format svg --output co2.svg

# All configured devices, dark mode, line chart
mcp-airq plot-air-quality-history --sensor co2 --dark --chart-type line

# Save to file
mcp-airq plot-air-quality-history --sensor co2 --output co2_chart.png

Output formats: png (default), webp, svg, html (interactive Plotly chart with hover tooltips and zoom)

Customization: --title, --x-axis-title, --y-axis-title, --chart-type (line/area), --dark, --timezone-name

Exporting data

export_air_quality_history produces one CSV or Excel file containing all matching devices.

# CSV export (default)
mcp-airq export-air-quality-history --sensor co2 --device "Living Room" --last-hours 48

# Excel export for all devices at a location
mcp-airq export-air-quality-history --sensor radon --location "Home" \
  --output-format xlsx --output radon.xlsx

Querying raw JSON

get_air_quality_history returns column-oriented JSON, useful for programmatic analysis.

mcp-airq get-air-quality-history --device "Living Room" --last-hours 12 \
  --sensors co2 pm2_5 --max-points 150

Common parameters

Parameter

Default

Description

--last-hours

1 (history) / 24 (plot)

Hours of data to retrieve

--from-datetime / --to-datetime

ISO 8601 time range (overrides --last-hours)

--max-points

300

Downsample to at most N evenly spaced points

--timezone-name

UTC

IANA timezone for timestamps (e.g. Europe/Berlin)

Example Prompts

  • "How is the air quality in the living room?" — queries all devices at that location

  • "What's the air quality at home?" — queries all devices in the "Home" group

  • "Show the CO₂ trend over the last 12 hours as SVG"

  • "Export the radon history from yesterday as Excel"

  • "Show me the radon level" — targets the air-Q Radon device by name

  • "Show CO₂ on the LEDs"

  • "Enable night mode from 10 PM to 7 AM"

  • "Set brightness to 50%"

  • "What's in the device log?"

  • "Make the air-Q blink"

Development

git clone https://github.com/CorantGmbH/mcp-airq.git
cd mcp-airq
uv sync --frozen --extra dev
uv run pre-commit install
uv run pytest

The repository uses a project-local .venv plus uv.lock for reproducible tooling. Run all developer commands through uv run, for example:

uv run ruff check .
uv run ruff format --check .
uv run pyright
uv run pre-commit run --all-files

Release Process

  1. Update version in pyproject.toml.

  2. Commit and create a matching Git tag like v0.1.1.

  3. Publish a GitHub Release from that tag.

The publish workflow validates that the release tag matches pyproject.toml, uploads the package to PyPI, and then publishes the same version to the MCP Registry.

License

Apache License 2.0 — see LICENSE.

Available Tools

20 tools
configure_networkA
DestructiveIdempotent

Configure network settings. Set dhcp=True for DHCP, or provide ip/subnet/gateway/dns for static IP.

After changing network settings, the device must be restarted.

ParametersJSON Schema
NameRequiredDescriptionDefault
dhcpNo
ipNo
subnetNo
gatewayNo
dnsNo
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds the important behavioral note that the device must be restarted after configuration change, which supplements the annotations (destructiveHint=true, readOnlyHint=false). No contradiction with annotations is apparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences deliver all necessary information without extraneous text. The structure is clear: purpose, mode instructions, and post-configuration behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (6 parameters, output schema exists, annotations provided), the description is sufficient for an agent to understand the core functionality. Minor gap: missing explanation of the 'device' parameter, but overall adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description adds meaning for 5 of 6 parameters by explaining the DHCP/static IP modes and which parameters belong to each. However, it does not explain the 'device' parameter, and it omits format details for IP addresses.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it configures network settings and explains the two modes (DHCP vs static IP). It is distinct from sibling tools like set_brightness or restart_device, though it could more explicitly mention it targets a device.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives, or when to choose DHCP versus static IP. The description only mentions parameter options without contextual usage advice.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

export_air_quality_historyA
Read-only

Export historical air-Q sensor data as CSV or Excel.

Selector:
- `device` — one specific device
- `location` — all devices at one location
- `group` — all devices in one group
- if none is specified, all configured devices are exported together

OUTPUT FORMAT:
- "csv" — one UTF-8 CSV file containing all selected devices
- "xlsx" — one Excel workbook containing all selected devices

REQUIRED:
- sensor: one sensor key to export, for example `co2`, `pm2_5`, `radon`

TIME RANGE:
- `last_hours` or `from_datetime` / `to_datetime`
- `timezone_name` controls how timestamps are rendered in the exported file
ParametersJSON Schema
NameRequiredDescriptionDefault
sensorYes
deviceNo
locationNo
groupNo
last_hoursNo
from_datetimeNo
to_datetimeNo
output_formatNocsv
max_pointsNo
timezone_nameNo

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds that the tool exports as CSV/Excel and explains selection logic and time ranges. However, it omits behavioral details like the max_points cap on data points and does not describe what the response contains (e.g., file path or download). For a read tool, the description provides adequate but not comprehensive transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is well-structured with clear sections (Selector, OUTPUT FORMAT, REQUIRED, TIME RANGE). Information is front-loaded in the first sentence. Every line serves a purpose without verbosity. Efficient and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 10 parameters, no output schema, and annotations only providing readOnlyHint, the description should cover return values and all constraints. It does not describe the output response type (e.g., file URL or binary), nor the max_points parameter behavior. Date format expectations are not specified. Sufficient for basic use but leaves gaps for advanced usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%; description compensates by explaining 8 of 10 parameters: sensor, device, location, group, output_format, last_hours, from_datetime, to_datetime, timezone_name. It adds valuable context like mutual exclusivity of selectors and default export scope. However, max_points is not mentioned, leaving a gap in parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description starts with 'Export historical air-Q sensor data as CSV or Excel', which is a specific verb+resource. It distinguishes from sibling tools like get_air_quality_history (retrieve) and plot_air_quality_history (visualize) by focusing on file export. The purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description explains selectors (device, location, group) and when each applies, and states default behavior when none is specified. However, it does not explicitly contrast with sibling tools or provide 'when not to use' guidance. Alternatives like get_air_quality_history or plot_air_quality_history are not mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_air_qualityA
Read-only

Get current air quality sensor readings from one or more devices.

Specify exactly one of:
- 'device' — query a single device by name
- 'location' — query all devices at a given location (e.g. "Wohnzimmer")
- 'group' — query all devices in a group (e.g. "zu Hause")

When using 'location' or 'group', the response contains one entry per
device. Returns sensor names mapped to values. Set return_average=True
for time-averaged data (recommended) or False for instantaneous readings.
The response includes a _sensor_guide field with full unit and index
documentation — read it before interpreting any values.
ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo
locationNo
groupNo
return_averageNo
clip_negativeNo
include_uncertaintiesNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint=true and destructiveHint=false. The description adds behavioral details: when using location/group, each device gets its own entry; the response includes a _sensor_guide field with documentation; and the option for averaged vs instantaneous readings. This goes beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: the first sentence states the purpose, followed by a clear bullet-like list of query modes, then a sentence on response structure and a recommendation. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that an output schema exists, the description does not need to detail return values. It mentions that the response contains sensor names mapped to values and includes a _sensor_guide field. It covers the three main parameters and return_average, but misses two supplementary parameters. Overall, it is mostly complete for a 6-parameter tool with an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% (no parameter descriptions), so the description must compensate. It explains the three mutually exclusive parameters (device, location, group) and return_average, but does not explain clip_negative or include_uncertainties. Thus, not all parameters are fully documented.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool gets current air quality sensor readings from one or more devices. It distinguishes itself from siblings like get_air_quality_history (historical) and list_devices (device listing) by specifying the real-time nature and the options for single device, location, or group queries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says to specify exactly one of 'device', 'location', or 'group', with examples for each. It recommends using return_average=True. However, it does not explicitly state when to use this tool over alternatives like get_air_quality_history or export_air_quality_history, though the sibling context provides some distinction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_air_quality_historyA
Read-only

Get historical air quality data stored on the device's SD card.

IMPORTANT — 'sensors' must be a JSON array, not a plain string.
  Correct:   sensors=["pm1","pm2_5"]
  Wrong:     sensors="pm1"

IMPORTANT — response size: air-Q records every ~2 minutes, so long ranges
produce large responses (24 h ≈ 720 readings × ~25 sensors). Always use
'sensors' and 'max_points' when querying more than 1–2 hours to stay within
response size limits. Example for a 24 h chart: sensors=["pm1","pm2_5","pm10"],
max_points=150.

Time range — specify one of:
- 'last_hours' — data from the last N hours (default: 1 hour)
- 'from_datetime' / 'to_datetime' — ISO 8601 strings
  (e.g. "2026-03-10T14:00:00" or "2026-03-10T14:00:00+01:00")
  'from_datetime' takes precedence over 'last_hours'.
  'to_datetime' defaults to now.
- 'timezone_name' — optional IANA timezone such as "Europe/Berlin".
  Naive datetimes are interpreted in this timezone. Output timestamps are
  localized into `datetime` using the same timezone.

Optional filtering:
- 'sensors' — list of sensor names to include (e.g. ["pm1", "pm2_5", "pm10"]).
  Omit to get all sensors.
- 'max_points' — downsample to at most this many evenly spaced points.

Response: column-oriented JSON with `timestamp` (Unix seconds) and localized
`datetime` columns. Compound sensor values like `[value, quality]` are split
into `<sensor>` and `<sensor>_quality`. Includes `_sensor_guide` and
`_history_guide`.
ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo
last_hoursNo
from_datetimeNo
to_datetimeNo
sensorsNo
max_pointsNo
timezone_nameNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Goes beyond readOnlyHint and destructiveHint annotations: describes response size implications, sensors format (must be JSON array), timezone handling, response structure (timestamp, datetime, quality columns). No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured with sections and bullet points; every sentence adds value. Slightly verbose but appropriate for the complexity of the tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters (0 required) and output schema present, description covers all necessary information: parameter semantics, response format, and important caveats. No gaps for agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema coverage, description fully explains all 7 parameters: time range options, sensor filtering, max_points downsampling, device, timezone_name. Includes examples and important formatting notes for sensors parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'Get historical air quality data stored on the device's SD card.' Uses specific verb and resource, and distinguishes from siblings like get_air_quality (real-time) and export_air_quality_history.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides detailed when-to-use guidance: warns about response size, explains time range options, and gives examples. Lacks explicit exclusion for alternatives but context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_brightness_configB
Read-only

Get the current LED brightness configuration (day and night values) of a device.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, indicating a safe read operation. The description adds context about the return including day and night values, but does not disclose additional behavioral traits such as error handling or need for device existence. With annotations, this is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that clearly conveys the tool's purpose. There is no extraneous information, making it efficiently front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While an output schema exists (so return values are covered), the description lacks details on the device parameter. Given the tool's simplicity and the presence of annotations, it is minimally complete but could better address parameter semantics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, meaning the 'device' parameter lacks any description. The main description only mentions 'of a device' without explaining parameter format, allowed values, or default behavior (null). The description fails to compensate for the missing schema details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'current LED brightness configuration (day and night values) of a device'. It effectively distinguishes from sibling tools like set_brightness (write) and get_config (general config), though it does not explicitly differentiate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, nor does it mention prerequisites or limitations. It simply states what the tool does without context for appropriate usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_configA
Read-only

Get the full configuration of a device as a JSON dict.

The response includes a _config_guide field with full documentation of
all configuration keys — read it before interpreting or modifying values.
ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate a safe read operation. The description adds behavioral context by noting the response includes a _config_guide field for interpreting keys, which advises a recommended workflow for agents. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core purpose. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 optional param, read-only, output schema present), the description provides sufficient context about what it returns and how to interpret results. It covers the essential aspects for correct usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single parameter 'device' has 0% schema description coverage, yet the description does not explain its meaning, default behavior, or effect when omitted. This leaves a significant gap for the agent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves the full configuration of a device as a JSON dict. This verb+resource combination is specific and distinguishes it from siblings that deal with individual settings or operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide explicit guidance on when to use this tool versus alternatives. It implies a read-only context but omits scenarios or exclusions, such as when to use get_device_info instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_device_infoA
Read-only

Get device metadata: ID, name, model, firmware/hardware version, and suggested area.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds a list of returned metadata fields but does not disclose other behavioral traits such as default behavior when no device parameter is provided or any rate limits. It neither contradicts nor significantly enriches the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently conveys the tool's purpose without unnecessary words. Every part of the sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the low complexity (one optional parameter, no required inputs, simple read operation), the description is largely adequate but misses explaining the optional device parameter. This gap reduces completeness for an AI agent reasoning about how to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema describes one optional parameter 'device', but the description does not explain its purpose, format, or default behavior. With 0% schema description coverage, the description fails to compensate for this lack of detail, leaving the agent uncertain about how to use the parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves device metadata and lists specific fields (ID, name, model, etc.), which distinguishes it from siblings like list_devices (which lists all devices) and configure_network (which configures network settings).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for a single device's metadata, but does not explicitly state when to use this tool versus alternatives like list_devices. No guidance on prerequisites or exclusions is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_led_themeB
Read-only

Get the current LED visualization theme for both sides of a device.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds no additional behavioral context beyond what annotations provide, such as authentication requirements or side effects. It is consistent but does not add value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence of 14 words with no redundancy. Every word contributes to understanding the tool's action and scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

While the description clearly states the tool's purpose and a potential output exists (output schema present), it lacks essential information about the sole parameter. Without parameter documentation, the description is incomplete for correct usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain the 'device' parameter, its format, or its role. The agent has no guidance on how to specify the device, making the tool difficult to invoke correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get', the resource 'current LED visualization theme', and the scope 'for both sides of a device.' It distinguishes itself from sibling tools like 'get_possible_led_themes' (lists all themes) and 'set_led_theme' (changes the theme).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for reading the current theme, but does not explicitly state when to use this tool versus alternatives like 'get_possible_led_themes' or 'set_led_theme'. No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_logsC
Read-only

Get log entries from a device.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is clear. Description adds minimal context about log entries; could mention what kind of logs or scope.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Very concise (5 words) but under-specified. Lacks necessary details for effective tool use.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema and many siblings, the description is too minimal. Does not cover log content, filtering, or how device parameter works.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Parameter 'device' has 0% schema coverage. Description only implies device selection via 'from a device', but does not explain meaning, accepted values, or default behavior (null means all devices?).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states verb and resource (get log entries from device), but does not differentiate from sibling getters like get_config or get_device_info.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. Among many sibling getters, no context is provided for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_night_modeB
Read-only

Get the current night mode configuration of a device.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate readOnlyHint=true and destructiveHint=false, so the description adds no further behavioral context beyond stating the verb 'Get'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is concise and front-loaded, with no extraneous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the parameter semantics gap and low complexity, the description is partially complete but fails to clarify the parameter's role, relying on the output schema for return values.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description only mentions 'of a device' without specifying what device refers to (ID, name, etc.), leaving the meaning of the parameter unclear.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool gets the night mode configuration of a device, which distinguishes it from set_night_mode and other getter tools like get_brightness_config.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives like get_config. The context is implied but lacks exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_possible_led_themesA
Read-only

List all available LED visualization themes for a device.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true and destructiveHint=false, so the description's 'list' action is consistent. However, the description does not add behavioral context beyond what annotations already provide, such as whether the device must be connected or the response format. It is adequate but not enhanced.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is front-loaded and concise. Every word is necessary—no fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one optional parameter, read-only, output schema exists), the description covers the primary purpose. However, it could be improved by noting the parameter's optionality and default behavior, but this is partly in the schema. Still, it is mostly complete for the task.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 1 parameter ('device') with 0% description coverage. The description does not explain the parameter's meaning, usage, or default behavior. Despite the parameter being optional, the absence of any elaboration fails to compensate for the low schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool 'list all available LED visualization themes for a device.' It uses a specific verb ('list') and resource ('available LED visualization themes'), distinguishing it from siblings like 'get_led_theme' (current theme) and 'set_led_theme' (set theme).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for viewing available themes, but does not explicitly state when to use it versus alternatives (e.g., 'get_led_theme' for current theme) or provide context for when not to use it. The purpose is clear but lacks direct guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

identify_deviceB
Read-only

Make a device blink its LEDs in rainbow colors for visual identification. Returns the device ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds that the tool makes the device blink LEDs, which is a temporary visual effect, not a state change. This aligns with annotations, but there is no disclosure of any side effects or required permissions, limiting transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with the purpose. Every sentence adds value without redundancy. Ideal length for a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one optional parameter and an output schema (not shown). The description covers the core function and return value. However, it lacks details on parameter behavior and use cases, making it slightly incomplete for a fully autonomous agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has one parameter 'device' with no enum or description. The description does not explain what the parameter does, allowed values, or behavior when null. With 0% schema description coverage, the tool is missing crucial parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: make a device blink LEDs in rainbow colors for visual identification. The verb 'identify' and resource 'device' are specific. However, it does not explicitly distinguish from sibling tools like list_devices or get_device_info, but the unique visual function sets it apart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The description does not mention prerequisites, limitations, or scenarios where this is appropriate, leaving the agent without decision support.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_devicesA
Read-only

List all configured air-Q devices with their names, addresses, locations, and groups.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so safety is clear. The description adds what the output includes but does not disclose additional behavioral traits such as pagination, sorting, or rate limits. Given the low complexity, this is adequate but minimal beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently conveys the tool's action and output. Every word serves a purpose; no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With zero parameters and an output schema existing, the description sufficiently lists what information is returned. No additional context is needed for a straightforward list operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so no parameter documentation is needed. Per rubric, '0 params = baseline 4'. The description does not attempt to explain nonexistent parameters, which is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly states the verb 'List' and the resource 'all configured air-Q devices', and lists the returned fields (names, addresses, locations, groups). This clearly differentiates it from siblings like 'get_device_info' which likely targets a single device.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for retrieving all devices but does not explicitly state when to use this tool versus alternatives like 'get_device_info' for a specific device, or provide exclusions. With zero parameters, usage is straightforward, but no guidance is given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

plot_air_quality_historyA
Read-only

Generate a chart of historical air-Q sensor data.

WHEN TO USE THIS TOOL: Call this whenever the user asks to see a graph,
chart, plot, or visual representation of historical sensor data.

Selector:
- `device` — one specific device
- `location` — all devices at one location
- `group` — all devices in one group
- if none is specified, all configured devices are plotted together

OUTPUT FORMAT:
- "png" (default) — one inline image containing all selected devices
- "webp" — inline image with smaller payload size
- "svg" — vector graphic as downloadable MCP resource
- "html" — self-contained interactive HTML as downloadable MCP resource

REQUIRED:
- sensor: the sensor key to visualise (one sensor per chart)

TIME RANGE:
- `last_hours` or `from_datetime` / `to_datetime`
- `timezone_name` controls how timestamps are rendered on the X axis and
  how naive input datetimes are interpreted
ParametersJSON Schema
NameRequiredDescriptionDefault
sensorYes
deviceNo
locationNo
groupNo
last_hoursNo
from_datetimeNo
to_datetimeNo
titleNo
x_axis_titleNo
y_axis_titleNo
chart_typeNoarea
darkNo
output_formatNopng
max_pointsNo
timezone_nameNo

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds value by detailing output formats (png, webp, svg, html), time range handling, and timezone behavior. It doesn't contradict annotations and provides transparency beyond structured fields.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is well-structured with clear sections (purpose, when to use, selector, output format, required, time range). Every sentence adds value; no redundancy or fluff. Concise yet comprehensive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 15 parameters, 1 required, no output schema, the description covers essential aspects: data selection, required sensor, time range, output formats, and timezone handling. It lacks clarity on combining multiple selectors and details on chart_type/dark mode, but overall provides sufficient context for an AI agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description compensates by explaining critical parameters: sensor, device/location/group selectors, time range (last_hours, from/to_datetime), output_format, and timezone_name. It misses some parameters like title, axis titles, chart_type, dark, max_points, but covers the most important ones.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Generate a chart of historical air-Q sensor data' with a specific verb (Generate) and resource (historical air-Q sensor data). It distinguishes from sibling tools like get_air_quality_history which likely returns raw data, not a chart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Description has a 'WHEN TO USE THIS TOOL' section explicitly stating to call it when user asks for a graph, chart, plot, or visual representation. It explains selector logic (device, location, group) and output format options. Lacks explicit when-not-to-use, but context implies alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

restart_deviceB
Destructive

Restart a device. It will be unreachable for about 30 seconds.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Adds the behavioral detail that the device will be unreachable for about 30 seconds, which goes beyond the annotations' destructive hint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler; every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Provides essential behavioral context but omits prerequisites, concurrent operations, or return value; adequate for a simple tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description does not explain the 'device' parameter at all, despite 0% schema coverage, leaving the agent unsure of its meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the action 'Restart a device' and a key consequence. However, it does not distinguish from sibling 'shutdown_device'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use or when not to use, nor any mention of alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_brightnessA
Idempotent

Set LED brightness. 'default' is the normal brightness (0-100%), 'night' is optional night brightness.

ParametersJSON Schema
NameRequiredDescriptionDefault
defaultYes
nightNo
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare idempotentHint=true, readOnlyHint=false, destructiveHint=false. The description adds parameter context (default range, optional night) but does not disclose additional behavioral traits like side effects or permissions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise at two sentences, front-loaded with the core action. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with 3 parameters and an output schema. However, the description omits explanation for the 'device' parameter and does not discuss value bounds or error cases, leaving some gaps for complete understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema coverage, the description partially compensates by explaining 'default' (0-100%) and 'night' (optional night brightness) but ignores the 'device' parameter. This leaves ambiguity for the device field.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Set LED brightness' with a specific verb and resource. It distinguishes from sibling tools like get_brightness_config by indicating a write operation. The mention of 'default' and 'night' aligns with input parameters.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for setting brightness but provides no explicit when-to-use or when-not-to-use guidance. It does not mention alternatives or prerequisites, which is adequate for a simple setter but lacks clarity on context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_device_nameB
Idempotent

Rename a device. The new name appears on the device display.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate idempotency and non-destructiveness. The description adds the display effect but omits behavior for unspecified optional device parameter or return value.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with the primary purpose. No superfluous information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple rename tool with output schema (not shown) and sibling tools, the description provides basic intent but lacks detail on return values, error scenarios, or behavior when device parameter is null.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description does not elaborate on the 'name' or 'device' parameters, leaving the agent to infer constraints or expected formats from context.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool renames a device and adds the effect on the display. However, it does not distinguish this from other device configuration tools like set_brightness or set_led_theme.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives (e.g., identify_device or list_devices). Missing prerequisites or exclusion criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_led_themeA
Idempotent

Set the LED visualization theme for one or both sides of the device.

Common themes: 'standard', 'CO2', 'VOC', 'Humidity', 'PM2.5', 'Noise'.
Use get_possible_led_themes to see all available themes.
ParametersJSON Schema
NameRequiredDescriptionDefault
leftNo
rightNo
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate idempotentHint=true, so the description adds value by listing common theme values and noting that themes are named. It aligns with annotations (readOnlyHint=false, destructiveHint=false) and does not contradict them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no redundant information. The first sentence states purpose, the second adds helpful examples and a pointer to another tool. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers the main purpose and provides theme examples. Output schema exists, so return values need not be described. However, it does not clarify behavior when both parameters are null or the effect of setting only one side. Still, it is mostly complete for a simple setter.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema parameter descriptions are absent (0% coverage). The description partially compensates by mentioning 'one or both sides' and listing example theme names, but does not explicitly describe each parameter (left, right, device) or their allowed values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'set' and the resource 'LED visualization theme', specifying the scope 'for one or both sides of the device'. It effectively distinguishes from sibling tools like get_led_theme (get vs set) and other set tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit examples of common themes and directs users to get_possible_led_themes for a complete list. This gives clear context on how to use the tool, though it does not explicitly state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

set_night_modeA
Idempotent

Configure night mode. Times in 'HH:mm' format (UTC).

brightness_day/brightness_night are percentages (0-100).
fan_night_off disables the particle sensor fan at night.
wifi_night_off caches data to SD and uploads when wifi returns.
alarm_night_off disables acoustic warnings (fire/gas still trigger).
ParametersJSON Schema
NameRequiredDescriptionDefault
activatedYes
start_nightNo22:00
start_dayNo06:00
brightness_dayNo
brightness_nightNo
fan_night_offNo
wifi_night_offNo
alarm_night_offNo
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds behavioral context beyond annotations, explaining actions like wifi_night_off caching data and alarm_night_off still allowing fire/gas triggers. Annotations are minimal, so the description effectively fills gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, front-loaded with purpose, and uses efficient bullet-point-like structure. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 9 parameters and a required field, the description covers all parameters with sufficient detail, including edge cases (fire/gas still trigger). The presence of an output schema further reduces the need to explain returns.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description fully explains each parameter (e.g., brightness percentages, boolean flags with side effects), adding critical meaning beyond names and types.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Configure night mode' and provides specific details about time format and parameter effects, distinguishing it from siblings like get_night_mode.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description lacks explicit guidance on when to use this tool versus alternatives, such as when to use get_night_mode for reading or set_brightness for brightness only. The context is implied but not directive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

shutdown_deviceA
Destructive

Shut down a device. It must be manually powered on again. Only use if explicitly requested.

ParametersJSON Schema
NameRequiredDescriptionDefault
deviceNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate destructiveHint=true. The description adds critical context: the device must be manually powered on after shutdown. This is valuable behavioral information beyond what annotations provide, and there is no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with zero waste. Every word serves a purpose, and the description is front-loaded with the core action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, and the description covers the main function and a key behavioral note. However, lack of parameter documentation leaves a gap in completeness. An output schema exists, so return values need not be explained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description should compensate but does not explain the 'device' parameter at all. It merely repeats the parameter name without adding meaning about format, defaults, or allowed values. Users cannot infer how to specify the device.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Shut down a device') and distinguishes it from sibling tools like restart_device by noting it must be manually powered on again. It is specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description includes 'Only use if explicitly requested,' which provides strong guidance on when to use this tool. However, it does not explicitly compare to restart_device or other alternatives, missing an opportunity for even clearer differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 20 tool updatesv1.6.3
    • First observedconfigure_network
    • First observedexport_air_quality_history
    • First observedget_air_quality
    • First observedget_air_quality_history
    • First observedget_brightness_config
    • First observedget_config
    • First observedget_device_info
    • First observedget_led_theme
    • First observedget_logs
    • First observedget_night_mode
    • First observedget_possible_led_themes
    • First observedidentify_device
    • First observedlist_devices
    • First observedplot_air_quality_history
    • First observedrestart_device
    • First observedset_brightness
    • First observedset_device_name
    • First observedset_led_theme
    • First observedset_night_mode
    • First observedshutdown_device

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a distinct action on air-Q devices: network config, data export, current/historical readings, configuration get/set, device management, and plotting. No two tools have overlapping purposes.

Naming Consistency5/5

All 20 tools follow a consistent verb_noun pattern (e.g., configure_network, get_air_quality, set_night_mode). No mixing of styles or vague verbs.

Tool Count4/5

20 tools is slightly above the ideal range but each tool serves a clear purpose in the air quality monitoring domain. The count does not feel excessive given the breadth of functionality (configuration, data retrieval, device control).

Completeness4/5

The tool surface covers device management, configuration, data export, and visualization. Minor gaps exist (e.g., no firmware update or sensor calibration), but essential CRUD and lifecycle operations are present.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CorantGmbH/mcp-airq'

If you have feedback or need assistance with the MCP directory API, please join our Discord server