Skip to main content
Glama
hemantkamalakar

Nordic Thingy:52 MCP Server

read_air_quality

Get current CO2 and TVOC concentrations to assess indoor air quality. Sensor needs warm-up time, so wait 30–60 minutes after startup for accurate readings.

Instructions

Read air quality sensors (CO2 and TVOC) from the Thingy device.

IMPORTANT: The CCS811 gas sensor requires warm-up time:

  • First use: 20 min to 48 hours

  • After power cycle: 30+ minutes

  • For best accuracy: >100 hours continuous operation

If you see 0 values, the sensor is still warming up. This is normal. Leave the device powered on for 30-60 minutes before expecting readings.

Returns: CO2 in ppm, TVOC in ppb, and air quality status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It openly explains the CCS811 warm-up requirement, that 0 values are normal during warm-up, and the expected return values. It does not cover failure modes or the need for a prior connection, so it is not a 5.

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 well-structured: a clear opening sentence, a highlighted important caveat with bullet-style timing details, a brief note about interpreting 0 values, and a concise return summary. Every section earns its place and no content is wasted.

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?

For a simple 0-parameter tool without an output schema, the description adequately covers what is returned and the main behavioral caveat. It could be more complete by mentioning that the device must be connected first and by defining the air quality status values, but these are relatively minor gaps.

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?

The tool has zero parameters and the schema coverage is 100%, so there are no parameter semantics to explain. The description appropriately focuses on outputs (CO2, TVOC, status) instead, which is the baseline expectation for a no-argument tool.

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 states a specific verb ('Read'), resource ('air quality sensors'), and target metrics (CO2 and TVOC), making the tool's function unambiguous. Among many read_* siblings, this clearly identifies the tool as the air-quality-specific one without needing to read the schema.

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 gives strong operational guidance about warm-up time and how to interpret 0 values, which helps the agent know when readings are valid. However, it does not explicitly mention when to prefer read_air_quality over read_all_sensors or other alternatives, so tool-selection guidance is only implied.

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