health_check
Test if the Browser History Analysis MCP server is operational by performing a quick connectivity check.
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 implementation, registered via @mcp.tool() decorator. This function returns a dictionary confirming the server is healthy with a 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() }