health_check
Test the functionality of the Browser History Analysis MCP server by running a quick health check to ensure it is operational and ready for use.
Instructions
Simple health check that returns immediately to test if the MCP server is working.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server/main.py:102-109 (handler)The health_check tool handler function, decorated with @mcp.tool() for automatic registration and execution. Returns a simple health status dictionary with status, message, and timestamp.@mcp.tool() def health_check() -> Dict[str, Any]: """Simple health check that returns immediately to test if the MCP server is working.""" return { "status": "healthy", "message": "Browser MCP server is running", "timestamp": time.time() }