health_check
Check the operational status of the MonteWalk quantitative finance server to verify availability for market data, trading simulations, and risk analysis.
Instructions
Returns the health status of the MonteWalk server.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.py:33-35 (handler)The handler function that executes the health_check MCP tool logic, simply returning a confirmation that the MonteWalk server is healthy.def health_check() -> str: """Returns the health status of the MonteWalk server.""" return "MonteWalk Server is running and healthy."
- server.py:32-32 (registration)Registers the health_check function as an MCP tool using the FastMCP decorator.@mcp.tool()