health
Monitor and verify the operational status of the ACOMO MCP Server using a fixed response health check tool, ensuring reliable backend service interaction.
Instructions
acomo MCP server health check (fixed response)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:24-32 (registration)Registration of the 'health' tool with server.registerTool, including metadata, empty input schema, and inline handler function that returns a fixed 'ok' response.server.registerTool( "health", { title: "Health", description: "acomo MCP server health check (fixed response)", inputSchema: {}, }, async () => ({ content: [{ type: "text", text: "ok" }] }) );
- src/server.ts:31-31 (handler)The handler function for the 'health' tool, which executes a simple fixed response: { content: [{ type: "text", text: "ok" }] }async () => ({ content: [{ type: "text", text: "ok" }] })
- src/server.ts:26-30 (schema)Tool schema definition including title, description, and empty inputSchema (no input parameters required).{ title: "Health", description: "acomo MCP server health check (fixed response)", inputSchema: {}, },