Skip to main content
Glama

healthchecksio

List flips

healthchecksio_list_flips
Read-only

List a check's status changes ("flips") over time — [{timestamp, up}]. Optionally scope by a lookback window or an explicit start/end range. Healthchecks: GET /checks/{uuid}/flips/.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoReturn only flips at/before this Unix timestamp.
uuidYesThe check's UUID.
startNoReturn only flips at/after this Unix timestamp.
secondsNoReturn only flips from the last N seconds.

TDQS

A3.8/5.0
Behavior4/5

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

Annotations cover the read-only safety profile, and the description adds useful behavior beyond that: flips are status changes, the response is an array of timestamp/up pairs, and filters can constrain the range. It doesn't mention pagination or rate limits, but for a simple read-only list endpoint the description gives adequate behavioral context.

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 cover purpose, response shape, optional scoping, and the REST endpoint with no filler. The most important action is front-loaded and every clause 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?

For a read-only list tool with no output schema, the description compensates by stating the response shape and filter semantics, and the required uuid is in the schema. It is missing only minor operational details such as pagination or maximum result limits, so it is nearly complete.

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 description coverage is 100%, so the schema already documents each parameter. The description adds only light grouping—calling seconds a 'lookback window' and start/end an 'explicit range'—which is helpful but not substantial enough to move beyond the baseline.

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 uses a specific verb and resource: 'List a check's status changes (“flips”) over time' and even gives the response shape [{timestamp, up}] and endpoint. It is clear, but it does not explicitly differentiate itself from sibling tools such as healthchecksio_list_pings or healthchecksio_get_check, so it falls short of full sibling distinction.

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 by describing what the tool returns and offers parameter guidance ('Optionally scope by a lookback window or an explicit start/end range'). It does not state when to prefer this over list_pings or list_checks, nor does it give exclusions or alternative conditions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool maps to a distinct resource and action: check CRUD, pause/resume, pings, flips, badges, and integrations. The only potentially related pair, list_pings and get_ping_body, is clearly separated by metadata vs raw body.

Naming Consistency5/5

All tools follow a clean verb_noun snake_case pattern, with list_* for collections and get_/create_/update_/delete_/pause_/resume_ for single-resource actions. There are no mixed casing styles or inconsistent verb choices.

Tool Count5/5

12 tools is well within the ideal range for this domain, and each tool covers a distinct, necessary operation for managing and inspecting Healthchecks monitoring. The set feels complete without being bloated.

Completeness4/5

The check lifecycle is fully covered with create, get, update, delete, pause, and resume, plus history and supporting data like pings, flips, badges, and integrations. The main minor gap is that there is no tool to send a ping or manually trigger a check success/failure, so end-to-end ping verification must happen out-of-band.