APIzone

API status for AI agents

APIzone runs a Model Context Protocol (MCP) server, so AI agents can check whether an API is down, look up uptime history, and list recent outages — natively, without you pasting anything. No API key, read-only, free.

Endpoint

https://apizone.io/api/mcp

Streamable HTTP transport. Add it as a remote MCP server in any MCP-compatible client.

Tools

  • list_apis — list monitored APIs and their current status (optionally by category).
  • get_api_status — is a specific API up, degraded, or down right now?
  • check_apis — check several APIs at once to find which dependency is failing.
  • get_api_uptime — uptime % and latency over 24h / 7d / 30d / 90d.
  • list_recent_incidents — recent outages, newest first.

Claude Code / Claude Desktop

claude mcp add --transport http apizone https://apizone.io/api/mcp

Or add it to your MCP config manually:

{
  "mcpServers": {
    "apizone": {
      "type": "http",
      "url": "https://apizone.io/api/mcp"
    }
  }
}

Cursor

Settings → MCP → Add new server → Streamable HTTP → paste the endpoint URL above.

Why

Agents constantly hit third-party APIs and need to know whether a failure is their bug or the vendor being down. APIzone gives them an independent, real-time answer they can query directly. Prefer the raw HTTP API? See the API docs.