Skip to main content
Glama

prismix-status-mcp

get_incident_history

Get the recent incident history (last 30 days) for a specific AI service — past outages and degradations with impact level, start time, and resolution/duration. Useful for answering "has Anthropic been reliable lately?" or "how often does Cursor go down?". Also returns the 30-day uptime percentage and total recent-incident count.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
serviceYesService ID or partial name (e.g. "anthropic", "openai", "cursor"). Case-insensitive. Required.

TDQS

A4.2/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It clearly indicates a read-only operation (retrieving history) and lists return fields (impact level, start time, resolution/duration, uptime percentage, incident count). No side effects or contradictions.

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 concise sentences with no waste. The first sentence defines the core function and return data; the second provides usage examples and additional return info. Efficiently structured.

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?

Given one simple parameter and no output schema, the description covers the key aspects: what it retrieves (history), scope (30 days), and return fields. Lacks explicit differentiation from siblings and does not mention authentication requirements, but overall sufficient.

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 coverage is 100% for the single required parameter. The description adds minimal meaning beyond the schema, essentially repeating the schema's description of the 'service' parameter. Baseline 3 is appropriate.

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 clearly states the tool retrieves recent incident history (last 30 days) for a specific AI service, specifying details like impact level, start time, and resolution/duration. It distinguishes itself from siblings: 'check_ai_status' presumably gives current status, 'list_ai_services' lists services, while this tool provides historical data.

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 example queries ('has Anthropic been reliable lately?') indicating appropriate use cases. However, it does not explicitly state when not to use this tool or mention alternatives like 'check_ai_status' for current status.

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 has a distinct purpose: current status (filterable), incident history (per service), and listing all services. No overlap.

Naming Consistency5/5

All names follow a consistent verb_noun pattern with snake_case: check_ai_status, get_incident_history, list_ai_services.

Tool Count5/5

Three tools is appropriate for a focused status-checking server, covering the core needs without excess.

Completeness4/5

Covers listing, current status, and incident history. Minor gap: no tool to drill into a specific incident's details, but not critical.