check_status
Check real-time operational status of popular APIs and services to identify outages or performance issues.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | API slug, e.g. 'cloudflare', 'github', 'openai'. |
Implementation Reference
- src/index.ts:128-134 (registration)The 'check_status' tool is registered here using 'server.tool', defining its input schema using 'zod' and its execution handler.
server.tool( "check_status", { slug: z.string().min(1).describe("API slug, e.g. 'cloudflare', 'github', 'openai'."), }, async ({ slug }) => handleTool(() => fetchJson("/api/status", { api: slug })) );