Skip to main content
Glama

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
NameRequiredDescriptionDefault

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" }] }) );
  • The handler function for the 'health' tool, which executes a simple fixed response: { content: [{ type: "text", text: "ok" }] }
    async () => ({ content: [{ type: "text", text: "ok" }] })
  • Tool schema definition including title, description, and empty inputSchema (no input parameters required).
    { title: "Health", description: "acomo MCP server health check (fixed response)", inputSchema: {}, },

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/progress-all/acomo-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server