Skip to main content
Glama
hemantkamalakar

Nordic Thingy:52 MCP Server

read_pressure

Read the current atmospheric pressure in hectopascals from the Thingy:52 sensor. Monitor environmental conditions in real time.

Instructions

Read the current atmospheric pressure from the Thingy device.

Returns: Pressure in hectopascals (hPa)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose that the operation is read-only and that the return value is pressure in hPa, which is useful. It does not mention connection requirements, failure behavior, or the exact return shape.

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, front-loads the action, and adds a clear 'Returns' line for the unit. Every sentence earns its place with no filler.

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 zero-parameter read tool, the description gives the key information: what is read and the unit of the result. It is nearly complete, though it omits whether a prior connection is required and what happens if the device is unavailable.

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, so there is no parameter documentation burden. The description correctly avoids inventing pseudo-parameters and the schema coverage is trivially complete.

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 uses a specific verb ('Read') and resource ('atmospheric pressure from the Thingy device'), clearly identifying what the tool does and distinguishing it from sibling sensor-read tools like read_temperature or read_humidity.

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?

Usage is implied: call this tool when the current atmospheric pressure is needed. However, there is no explicit guidance about when to prefer read_all_sensors instead, nor any stated prerequisite such as having a connected device.

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