Skip to main content
Glama

list_status_pages

Read-onlyIdempotent

List a project's status pages with monitors, visibility, and public URLs. Run this before updating a page to capture its current monitor set.

Instructions

Requires an API key with the read scope or higher. List the project's status pages: id, slug, title, the monitors on each, visibility, and the public URL of any public page. A status page is how a monitor's health is shown to people who are not in the project — customers, or another team. This is also the read you need before update_status_page, because its check_ids REPLACE the page's monitor set.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint true, idempotentHint true, and destructiveHint false, so the safety profile is covered. The description adds useful behavioral context: the API key requirement and the nuance that the public URL is only present for public pages. It also reveals that each status page includes its monitors, which helps an agent anticipate the response 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 three sentences, each serving a distinct purpose: auth requirement, list action with fields, and conceptual context with a concrete follow-up usage. It is front-loaded with the essential requirement and avoids redundancy. Every sentence earns its place.

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 is a simple zero-parameter, read-only list operation with no output schema, the description is complete: it covers auth, the exact fields returned, the meaning of a status page, and its role before update_status_page. There is no missing information an agent would need to invoke it correctly.

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 input schema is empty with 100% schema description coverage and zero parameters, so there are no parameter semantics to document. The description does not need to add parameter details, and the baseline for a zero-parameter tool is 4. No parameter-related gaps exist.

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 what the tool does: it lists the project's status pages and enumerates the returned fields (id, slug, title, monitors, visibility, public URL). It also defines a status page, distinguishing it from the related monitor tools. This is a clear verb+resource+scope statement.

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

Usage Guidelines5/5

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

The description gives a specific usage context: it is the read you need before calling update_status_page because check_ids replace the monitor set. It also states the required auth level (API key with read scope or higher), giving the agent an explicit precondition. No alternative list tool exists among siblings, so the when-to-use guidance is sufficient.

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