tailtest_ping
Verify that the tailtest-cline MCP server is reachable and returns its current version to ensure the testing plugin is operational.
Instructions
Health check. Returns server version and confirms the MCP server is reachable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- Handler for the 'tailtest_ping' tool. Returns a TextContent response with the server version and a reachability confirmation string. This is a simple inline handler (no separate helper module needed).
if name == "tailtest_ping": return [ TextContent( type="text", text=f"tailtest-mcp v{__version__} reachable. V14.1 scenario_plan tool live.", ) ] - Input schema for tailtest_ping: an empty object with no required properties and no additional properties allowed. The tool takes no arguments.
inputSchema={ "type": "object", "properties": {}, "additionalProperties": False, }, - mcp_server/src/tailtest_mcp/server.py:28-36 (registration)Registration of tailtest_ping tool in the list_tools() function, which returns the list of Tool objects exposed by the MCP server.
Tool( name="tailtest_ping", description="Health check. Returns server version and confirms the MCP server is reachable.", inputSchema={ "type": "object", "properties": {}, "additionalProperties": False, }, ), - Version string (__version__ = '1.0.1') used by the ping handler to report the server version.
__version__ = "1.0.1"