Skip to main content
Glama

ping

Check if the Omnisend MCP Server is running correctly to verify connectivity before performing marketing platform operations.

Instructions

Simple tool to check if the MCP server is running correctly.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the "ping" tool. It returns a structured response confirming the MCP server is operational and includes the server version.
    async () => { return { content: [{ type: "text", text: `Omnisend MCP server is working correctly. Server version: ${SERVER_VERSION}` }] }; }
  • Registers the "ping" tool on the McpServer instance, including name, description, empty input schema, and the handler function.
    server.tool( "ping", "Simple tool to check if the MCP server is running correctly.", {}, async () => { return { content: [{ type: "text", text: `Omnisend MCP server is working correctly. Server version: ${SERVER_VERSION}` }] }; } );
  • src/index.ts:30-30 (registration)
    Invokes registerPingTool to add the "ping" tool to the main MCP server.
    registerPingTool(server);
  • Re-exports the registerPingTool function from ping.ts for use in other modules.
    export { registerPingTool } from './shared/ping.js';

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/plutzilla/omnisend-mcp'

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