health_check
Verify the mu-mcp email server is operational and ready to query, view, and interact with local emails through the mu indexer.
Instructions
Health check for the MCP server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Implementation Reference
- mu_mcp/mu_mcp.py:13-16 (handler)The health_check tool handler function. Decorated with @mcp.tool("health_check"), it takes no parameters and returns 'ok' as a simple health check response.
@mcp.tool("health_check") def health_check() -> str: """Health check for the MCP server.""" return "ok"