fix(mcp): remove unused ctx parameter from health_check tool (#36992)

This commit is contained in:
Amin Ghadersohi
2026-01-09 00:38:22 -05:00
committed by GitHub
parent 4fc8157d6f
commit 85cf46dc1c

View File

@@ -21,7 +21,6 @@ import datetime
import logging
import platform
from fastmcp import Context
from flask import current_app
from superset_core.mcp import tool
@@ -32,7 +31,7 @@ logger = logging.getLogger(__name__)
@tool(tags=["core"])
async def health_check(ctx: Context) -> HealthCheckResponse:
async def health_check() -> HealthCheckResponse:
"""
Simple health check tool for testing the MCP service.