apizone
Server Details
Real-time status & uptime monitoring for 200+ popular APIs — is it down, and how reliable?
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- HappyMealSteak/apizone-mcp
- GitHub Stars
- 0
- Server Listing
- APIzone
Available Tools
5 toolscheck_apisCheck several APIs at onceARead-onlyIdempotentInspect
Check the current status of multiple APIs in one call — useful when diagnosing a failing app that depends on several services (e.g. ['stripe','openai','aws s3']). Returns each API's status so an agent can tell which dependency is the culprit.
| Name | Required | Description | Default |
|---|---|---|---|
| apis | Yes | API names or slugs to check, e.g. ['stripe','openai','github']. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful behavior beyond that: it returns each API's status in a single call, which helps the agent understand the batch result style.
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?
One dense sentence with an illustrative example, no filler. The purpose, usage context, and output are all communicated efficiently with front-loaded meaning.
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 tool with robust annotations, this is complete. The agent knows what the tool does, when to use it, how to pass input, and what to expect in return.
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 coverage is 100%, so the schema fully documents the 'apis' parameter. The description's example reinforces the expected format, but adds little beyond the schema.
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 action ('Check the current status'), the resource ('multiple APIs'), and the batch scope ('in one call'). This distinguishes it from sibling tools like get_api_status, which suggests a singular check.
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?
It provides an explicit use case: diagnosing a failing app that depends on several services. It doesn't mention exclusions or point to alternatives like get_api_status for single-API checks, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_api_statusGet current API statusARead-onlyIdempotentInspect
Check whether a specific API is currently up, degraded, or down. Accepts an API name or slug (e.g. 'stripe', 'OpenAI', 'aws s3'). Returns current status, last measured latency, and when it was last checked. Use this to answer 'is X down right now?'.
| Name | Required | Description | Default |
|---|---|---|---|
| api | Yes | API name or slug, e.g. 'stripe', 'OpenAI', 'github'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey readOnly, idempotent, openWorld, and non-destructive behavior. The description adds valuable context about return contents: current status, last measured latency, and last-checked time. It does not contradict the annotations and is sufficiently transparent for a read-only status check.
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?
Three sentences with no wasted words: the first states the core behavior, the second covers input and output, and the third gives the intended use case. The most important information is front-loaded.
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 one-parameter read-only tool with no output schema, the description is complete. It specifies accepted input, the possible statuses, the return fields, and a concrete usage scenario. An agent can invoke and interpret results without needing additional details.
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 coverage is 100%, and the schema already describes the 'api' parameter as an API name or slug with examples. The description repeats this and adds slightly more examples ('OpenAI', 'aws s3'), but it does not provide meaningful meaning beyond the schema.
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 checks whether a specific API is currently up, degraded, or down, with concrete examples like 'stripe' and 'OpenAI'. It distinguishes itself from plural/list-oriented siblings by emphasizing 'specific API' and 'currently', making its singular, real-time scope evident.
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 an explicit use case: 'Use this to answer "is X down right now?"' This tells the agent when to invoke the tool. It does not, however, state when not to use it or mention alternatives such as get_api_uptime or check_apis.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_api_uptimeGet API uptime historyARead-onlyIdempotentInspect
Get uptime percentage and latency (median + 95th percentile) for an API over the last 24 hours, 7 days, 30 days, and 90 days. Use this for reliability questions like 'how reliable has Stripe been this month?'.
| Name | Required | Description | Default |
|---|---|---|---|
| api | Yes | API name or slug, e.g. 'stripe', 'openai'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover the safe read-only/idempotent profile. The description adds valuable context about the exact behavioral output—historical uptime and latency percentiles across multiple periods—which is especially useful because there is no output schema. No contradictions or missing safety disclosures.
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 sentences deliver the core action, output metrics, time ranges, and a use-case example with no filler. The most important information is front-loaded.
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 read-only lookup with one parameter, the description covers input, output shape, time granularity, and an example use case. It does not specify latency units or response format, but those are minor given the simplicity and no output schema.
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 coverage is 100%: the only parameter, 'api', is documented with a type and example in the schema. The description mentions an API name but adds no meaning beyond the schema, so the baseline score of 3 is appropriate.
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 uses a specific verb ('Get'), identifies the resource ('API'), and precisely defines the output (uptime percentage plus median and 95th percentile latency) and time windows (24h, 7d, 30d, 90d). This clearly differentiates it from siblings like get_api_status or list_recent_incidents by focusing on historical reliability metrics.
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?
It explicitly says to use this for reliability questions and gives a concrete example ('how reliable has Stripe been this month?'). It provides clear context for when to use it, though it does not explicitly state when to prefer an alternative such as get_api_status.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_apisList monitored APIsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Filter 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
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.
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.
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.
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.
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.
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.
list_recent_incidentsList recent API outagesARead-onlyIdempotentInspect
List recent API outages and degradations detected by APIzone, newest first. Optionally filter by category. Use this to answer 'what APIs have had problems recently?' or to check a category's incident history.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max incidents to return (1-50). | |
| category | No | Filter 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
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already communicate readOnly, idempotent, and non-destructive behavior. The description adds some useful context beyond the schema—outages plus degradations are included, and results are newest first—but it does not describe return shape, pagination behavior, or data freshness. This is moderate added value, consistent with a 3.
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?
Three short sentences each earn their place: the first defines scope and ordering, the second adds the filter option, and the third explains user intent. The most decision-relevant information is front-loaded with no filler.
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 read-only list tool with zero required parameters, full schema coverage, and annotations covering safety, the description is complete enough for correct invocation. It tells the agent what is listed, how results are ordered, when to use it, and that category filtering is optional; the schema supplies parameter details.
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 coverage is 100%, with the limit bounds and category enum fully described in the schema. The description only restates the optional category filter and does not add new parameter meaning, so the baseline 3 is appropriate.
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 action ('list'), a clear resource ('recent API outages and degradations'), and an explicit ordering ('newest first'). It also distinguishes itself from sibling status/uptime tools by framing itself as incident history, so an agent can disambiguate without inspecting sibling schemas.
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 concrete user questions that should trigger this tool ('what APIs have had problems recently?') and mentions checking a category's incident history. It does not explicitly name sibling alternatives or state when not to use it, 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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
- First observed
check_apis - First observed
get_api_status - First observed
get_api_uptime - First observed
list_apis - First observed
list_recent_incidents
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
Check real-time uptime and incident status for 285 APIs and cloud services.
Real-time status for 75+ AI services (OpenAI, Anthropic, Cursor). No auth, CORS-enabled.
Is GitHub, npm, Cloudflare or your AI provider down right now? 20 status pages, one call.
31Uptime monitoring for developers — monitors, incidents, heartbeats and status pages
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
- AlicenseAqualityDmaintenanceReal-time status monitoring, uptime tracking, incident history, and API pricing for 42+ AI tools including ChatGPT, Claude, Gemini, Cursor, GitHub Copilot, Perplexity, DeepSeek, and Groq. No API key required. Data updated every 5 minutes from independent monitoring infrastructure.7541MIT
- AlicenseAqualityNot gradedmaintenanceTrustPilot for APIs, built for AI agents. Independent reliability ratings for APIs and MCP servers — look up trust scores, compare providers side by side, and leave reviews from real agent traffic.31-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.