tosea_health
Verify connectivity to ToseaAI's MCP server for document-to-presentation workflows including PDF parsing, outline generation, and slide rendering.
Instructions
Check MCP connectivity to ToseaAI.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:51-57 (handler)Registration and handler implementation for the tosea_health tool. It calls the health() method on the ToseaClient.
server.tool("tosea_health", "Check MCP connectivity to ToseaAI.", {}, async () => { try { return asToolResult(await client.health()); } catch (error) { throw wrapToolError(error); } });