check_category
Check the operational status of APIs and services within a specific category to identify outages or performance issues.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Category slug, e.g. 'cloud', 'payments'. |
Implementation Reference
- src/index.ts:147-153 (handler)The registration and handler implementation of the 'check_category' tool, which fetches status information for a specific category using an API call.
server.tool( "check_category", { slug: z.string().min(1).describe("Category slug, e.g. 'cloud', 'payments'."), }, async ({ slug }) => handleTool(() => fetchJson("/api/status", { category: slug })) );