is-it-down
Server Details
Is GitHub, npm, Cloudflare or your AI provider down right now? 20 status pages, one call.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolscheck_all_servicesCheck All ServicesARead-onlyIdempotentInspect
Is anything I depend on broken right now?
Checks every supported provider in parallel and returns a one-sentence summary plus per-service detail. Use this first: it answers the whole question in one call. Optionally narrow with ?services=github,npm. A provider whose status page cannot be read is reported as "unknown", never as healthy.
| Name | Required | Description | Default |
|---|---|---|---|
| services | No | Optional comma-separated slugs to narrow the check, e.g. "github,npm,cloudflare". Omit to check all. |
Output Schema
| Name | Required | Description |
|---|---|---|
| down | No | Slugs with a major or critical incident open. |
| checked | Yes | How many services were checked. |
| summary | Yes | One sentence answering "is anything broken right now", safe to show verbatim. |
| unknown | No | Slugs whose status page could not be read. |
| degraded | No | Slugs with a minor incident open. |
| services | Yes | Full per-service detail. |
| all_operational | Yes | True only when every checked service reports no known problems AND every status page was reachable. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds valuable behavioral detail beyond that: parallel checking, the returned summary-plus-detail shape, optional narrowing, and especially the guarantee that unreadable providers are reported as 'unknown' rather than healthy.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with purpose. Every sentence earns its place: the problem framing, the parallel-check behavior, the 'use first' guidance, the optional parameter, and the important unknown-status semantics.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one optional parameter and an output schema, the description is complete. It tells the agent what will happen, how to narrow scope, how failures are represented, and how this tool fits into the overall workflow, leaving no important gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the services parameter at 100% coverage. The description adds meaning beyond the schema by giving concrete example slugs ('github,npm'), explaining that omission checks all providers, and tying the parameter to the behavior of narrowing the check.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: it checks every supported provider in parallel and returns a one-sentence summary plus per-service detail. The opening user-focused question frames the purpose, and the scope is distinct from the sibling check_service_status, which is for a single provider.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context with 'Use this first: it answers the whole question in one call' and explains optional narrowing via the services parameter. It does not explicitly name when to use the sibling check_service_status or list_supported_services instead, so it falls just 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.
check_service_statusCheck Service StatusARead-onlyIdempotentInspect
Current incident state for one named service.
Returns the normalised state (operational, degraded, down, unknown), the provider's own description, and a link to the full status page. Use when you already know which provider you care about.
| Name | Required | Description | Default |
|---|---|---|---|
| service | Yes | Slug of the service to check. One of: github, npm, cloudflare, anthropic, openai, vercel, netlify, render, supabase, mongodb, digitalocean, docker, circleci, sentry, datadog, twilio, atlassian, bitbucket, discord, hashicorp. |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | Human name of the provider. |
| state | Yes | Normalised state. "unknown" means the status page could not be read, NOT that the service is down. |
| cached | No | Whether this answer came from the 45 second cache rather than a fresh fetch. |
| healthy | No | True when operational, false when degraded or down, null when unknown. |
| meaning | Yes | Plain-language reading of the state, safe to show a user verbatim. |
| service | Yes | The slug that was checked. |
| indicator | No | Raw statuspage.io indicator: none, minor, major or critical. |
| reachable | Yes | Whether the status page itself answered. |
| updated_at | No | When the provider last updated the page (ISO 8601). |
| description | No | The provider's own one-line summary, when it publishes one. |
| status_page | No | URL a human can open to read the full incident history. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish the tool is read-only, idempotent, and non-destructive. The description adds useful behavioral context by disclosing what the response contains: normalized state, provider description, and a status page link. This goes beyond the annotations and clarifies the tool's observational nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The core purpose is front-loaded in the first sentence, and return-value details follow immediately, making it easy to parse and act on.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read-only tool with a complete input schema, an output schema, and clear annotations, the description covers purpose, usage context, and return format. Nothing essential is missing for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the service parameter fully documented via enum and description. The tool description adds no extra semantic detail about the parameter, so it stays at the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the current incident state for one named service, listing the specific normalized states and complementary details. It differentiates from siblings by emphasizing 'one named service,' which contrasts with check_all_services and list_supported_services.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Use when you already know which provider you care about' provides a clear usage context and implicitly steers the agent away from list_supported_services or check_all_services. It does not explicitly name alternatives or state when not to use it, so it falls 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.
list_supported_servicesList Supported ServicesARead-onlyIdempotentInspect
Which services can be checked.
Lists every supported slug with its human name and status page URL. The list is fixed; arbitrary URLs are not accepted.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| count | No | |
| services | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds meaningful behavioral context: the list is fixed, arbitrary URLs are not accepted, and the output contains specific fields. This goes 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, no filler, and the key purpose is front-loaded in the first line. Every sentence adds value: one defines what the tool lists, the other clarifies the fixed nature and rejection of arbitrary URLs.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless list endpoint with an output schema and read-only annotations, the description covers what the tool returns, the fixed scope, and a key constraint. Nothing an agent needs to select and call it correctly is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description correctly indicates that no input is needed and reinforces that only fixed supported slugs are valid, which is relevant for any future parameter expectations.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: listing every supported slug with its human name and status page URL. The phrase 'Which services can be checked' immediately frames the resource and scope, and this differs clearly from the sibling checking tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The opening question establishes the use case: discovering which services can be checked. It does not explicitly name sibling alternatives, but the contrast with check_all_services and check_service_status is implicit and sufficient for a zero-parameter discovery tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
check_all_services - First observed
check_service_status - First observed
list_supported_services
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Real-time status for 75+ AI services (OpenAI, Anthropic, Cursor). No auth, CORS-enabled.
Check real-time uptime and incident status for 285 APIs and cloud services.
Live status for 172 cloud and SaaS vendors from their official feeds. Is it you, or is it them?
Real-time status & uptime monitoring for 200+ popular APIs — is it down, and how reliable?
Related MCP Servers
- AlicenseAqualityBmaintenanceLive operational status for 2,400+ major software services — AWS, GitHub, Stripe, OpenAI, Cloudflare, and more — pulled from each provider's official status page and returned as a normalised up / degraded / down result for any service you ask about.51MIT
- AlicenseCqualityBmaintenanceMonitor the real-time status of 200+ popular APIs and services. Check if services like GitHub, Stripe, AWS, and Slack are experiencing outages or degraded performance directly from your AI assistant.5231MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to check real-time status, uptime, and incidents for 200+ popular APIs (Stripe, OpenAI, AWS, GitHub, Twilio, etc.) through read-only, no-authentication tools.-
- AlicenseNot gradedqualityBmaintenanceEnables checking real-time operational status of 75+ AI services (OpenAI, Anthropic, Cursor, etc.) through tools like check_ai_status and list_ai_services.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: listing supported services, checking one named service, and checking all services at once. Even though check_all_services and check_service_status both check status, the all-vs-one distinction is obvious and reinforced by the descriptions.
All tool names follow a consistent verb_noun pattern: check_all_services, check_service_status, and list_supported_services. The naming clearly indicates both the action and the target, making the set predictable.
Three tools is a well-scoped set for a simple uptime/status-checking server. Each tool serves a distinct and necessary purpose with no redundancy or bloat.
The tool surface fully covers the domain: discovery of supported services, checking a single service, and checking all services. There are no obvious gaps for the stated purpose, and unsupported arbitrary URLs are explicitly disallowed.