get_ping
Tests connectivity by sending a ping message to verify server responsiveness and network communication status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes |
Implementation Reference
- mcp_server.py:7-9 (handler)The main handler function for the 'get_ping' MCP tool. It takes a string message as input and simply returns the string 'pong'. Decorated with @mcp.tool() for registration.@mcp.tool() async def get_ping(message: str) -> str: return "pong"