Skip to main content
Glama
evtapps

Ditto MCP Server

by evtapps

ping

Check the operational status and connectivity of the Ditto MCP server to ensure it's ready for secure database queries.

Instructions

Health check for the Ditto MCP server

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'ping' tool, which returns a simple 'pong' response.
    async () => ({ content: [{ type: 'text', text: 'pong' }] }),
  • The input schema for the 'ping' tool, which is empty (no parameters expected).
    inputSchema: {},
  • src/mcpServer.ts:26-34 (registration)
    Registration of the 'ping' tool using McpServer.registerTool, including schema and handler.
    server.registerTool( 'ping', { title: 'Ping', description: 'Health check for the Ditto MCP server', inputSchema: {}, }, async () => ({ content: [{ type: 'text', text: 'pong' }] }), );
Install Server

Other 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/evtapps/ditto-mcp'

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