Skip to main content
Glama
dacebt

Prompt Cleaner MCP Server

by dacebt

health-ping

Monitor server liveness by checking if the health-ping tool returns { ok: true }, ensuring the MCP server is operational and ready for prompt sanitization tasks.

Instructions

Liveness probe; returns { ok: true }

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler function for the 'health-ping' tool. Returns a JSON content wrapper around { ok: true } and logs the elapsed time.
    case "health-ping": { const out = { ok: true } as const; logger.info("health.ping", { elapsed_ms: Date.now() - start }); return jsonContent(out); }
  • src/tools.ts:76-79 (registration)
    Tool registration entry in listTools(), defining name, description, and empty input schema for 'health-ping'.
    name: "health-ping", description: "Liveness probe; returns { ok: true }", inputSchema: { type: "object", properties: {} }, },
  • Input schema definition for 'health-ping' tool: an empty object.
    inputSchema: { type: "object", properties: {} },

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/dacebt/prompt-cleaner-mcp'

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