Skip to main content
Glama

health_check

Verify the French Tax MCP Server is responsive and operational for calculating French income tax and retrieving current tax brackets using official government data.

Instructions

Simple health check to verify the server is responsive

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ctxNo

Implementation Reference

  • The main handler function that implements the logic for the health_check tool, returning server status and available tools list.
    async def health_check(ctx: Optional[Context] = None) -> Dict: """Simple health check to verify the server is responsive. Returns: Dict: Status information about the server """ if ctx: await ctx.info("Health check requested") return { "status": "success", "message": "French Tax MCP Server is running", "timestamp": datetime.now().isoformat(), "available_tools": [ "calculate_income_tax", "get_tax_brackets", "get_scheme_details", "calculate_pinel_benefit", "calculate_lmnp_benefit" ] }
  • Tool registration using the @mcp.tool decorator, specifying the name 'health_check' and its description.
    @mcp.tool( name="health_check", description="Simple health check to verify the server is responsive", )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cornelcroi/french-tax-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server