Skip to main content
Glama

List monitored APIs

list_apis
Read-onlyIdempotent

List the APIs APIzone monitors and their current status (operational, degraded, down, or unknown). Optionally filter by category. Use this to discover which APIs are tracked and get a quick health overview.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryNoFilter to one category. One of: payments, ai, cloud, developer-tools, communication, email, auth, analytics, maps, commerce, social, media, data, finance, gaming, productivity, shipping, web3

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context by specifying the status values (operational, degraded, down, unknown) and the optional category filter, going 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?

Two tight sentences with zero filler. The main action and output are front-loaded in the first sentence, and the optional filter and use case are in the second. Every phrase 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?

For a simple, read-only list tool with one optional parameter and no output schema, the description is complete. It tells the agent what it returns (list of APIs with statuses), the optional filter, and when to use it. Annotations cover safety, so nothing needed for correct invocation is missing.

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%—the category parameter is fully documented with an enum list and description. The tool description only adds 'Optionally filter by category,' which merely restates what required:0 already implies. No additional meaning is provided beyond the schema.

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 ('List') and resource ('the APIs APIzone monitors'), and clearly states the output: their current status with enumerated values. This distinguishes it from siblings like get_api_status (singular) and list_recent_incidents (incidents, not APIs).

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 provides a clear use case: 'Use this to discover which APIs are tracked and get a quick health overview.' It implies when to select this tool over more specific ones, but it doesn't explicitly name alternatives or state when not to use it, so it stops short of a 5.

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
Disambiguation4/5

Most tools have clear, distinct purposes: listing monitored APIs, checking individual status, checking multiple statuses at once, and retrieving uptime history. The only ambiguity is between check_apis and list_apis, as both return status information, though one targets specific APIs and the other provides a broader directory.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: check_apis, get_api_status, get_api_uptime, list_apis, list_recent_incidents. The verbs (check, get, list) are used predictably to distinguish action types, and nouns are descriptive.

Tool Count5/5

Five tools is an ideal size for an API monitoring server. Each tool covers a distinct monitoring need without redundancy or bloat, and the scope is tightly focused on status and reliability queries.

Completeness5/5

The tool surface fully covers the core domain: discovering tracked APIs, checking current status individually or in bulk, retrieving historical uptime, and listing recent incidents. No essential monitoring operation appears to be missing for common agent workflows.