health_check
Monitor server status and verify operational health to ensure reliable document processing functionality.
Instructions
Check server health and status.
Returns: Dictionary with health status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/docx_mcp/server.py:1185-1197 (handler)The health_check tool implementation in src/docx_mcp/server.py which provides basic service status and version information.
@app.tool() def health_check() -> dict[str, Any]: """ Check server health and status. Returns: Dictionary with health status """ return { "status": "healthy", "service": "docx-mcp", "version": "0.1.0", }