health
Retrieve the server version and status to confirm the Keel server is operational.
Instructions
Return server version and status.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/sounding/server.py:50-53 (handler)The 'health' tool handler function. Registered with @mcp.tool(), returns server version and status.
@mcp.tool() async def health() -> dict: """Return server version and status.""" return {"status": "ok", "version": __version__} - src/sounding/server.py:50-50 (registration)Registration of the 'health' tool via the @mcp.tool() decorator on the health function.
@mcp.tool() - src/sounding/__init__.py:1-3 (helper)The __version__ constant ("0.2.0") imported and used by the health handler.
"""Sounding — network diagnostics MCP server.""" __version__ = "0.2.0"