Skip to main content
Glama

ping

Test connectivity to the Coolify MCP Server by sending a simple request and receiving a response, ensuring the server is operational and accessible.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
random_stringNoDummy parameter for no-parameter tools

Implementation Reference

  • Registers the 'ping' MCP tool with an inline Zod input schema (optional random_string parameter) and an inline async handler function that returns a text content confirming the Coolify MCP server is running and connected.
    server.tool( 'ping', { random_string: z.string().optional().describe("Dummy parameter for no-parameter tools") }, async () => ({ content: [{ type: 'text', text: 'Coolify MCP server is running and connected!' }] }) );
  • The handler function for the 'ping' tool, which simply returns a structured content message indicating the server is operational.
    async () => ({ content: [{ type: 'text', text: 'Coolify MCP server is running and connected!' }] })
  • Input schema for the 'ping' tool using Zod, defining an optional 'random_string' parameter as a dummy for no-parameter tools.
    { random_string: z.string().optional().describe("Dummy parameter for no-parameter tools") },

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/FelixAllistar/coolify-mcp'

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