heartbeat
Check if the Umami Analytics server is running and healthy to ensure continuous website data collection and monitoring.
Instructions
Check if the Umami server is running and healthy
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/account.ts:90-98 (handler)The 'heartbeat' tool implementation, which calls the '/api/heartbeat' endpoint.
server.tool( "heartbeat", "Check if the Umami server is running and healthy", {}, async () => { const data = await client.call("GET", "/api/heartbeat"); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; } );