check_url
Check the real-time status of any public API or service URL to detect outages or performance issues. Monitor service availability directly from your AI assistant.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public URL to check. |
Implementation Reference
- src/index.ts:155-161 (handler)Registration and handler for the 'check_url' tool. It uses `handleTool` to process the `fetchJson` request to '/api/check'.
server.tool( "check_url", { url: z.string().url().describe("Public URL to check."), }, async ({ url }) => handleTool(() => fetchJson("/api/check", { url })) );