From ec8405aeea625e82864bfa4e7796d4e61037a88d Mon Sep 17 00:00:00 2001 From: Arijit Kumar Roy <43462564+arijitroy003@users.noreply.github.com> Date: Fri, 31 Jul 2026 23:31:39 +0530 Subject: [PATCH] chore(mcp): remove unused MCP_SERVICE_HOST and MCP_SERVICE_PORT config (#42569) Signed-off-by: arijitroy003 --- superset/mcp_service/mcp_config.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/superset/mcp_service/mcp_config.py b/superset/mcp_service/mcp_config.py index d0f2e135a24..5094251e1c7 100644 --- a/superset/mcp_service/mcp_config.py +++ b/superset/mcp_service/mcp_config.py @@ -56,10 +56,6 @@ SUPERSET_WEBSERVER_ADDRESS = "http://localhost:9001" WEBDRIVER_BASEURL = "http://localhost:9001/" WEBDRIVER_BASEURL_USER_FRIENDLY = WEBDRIVER_BASEURL -# MCP Service Host/Port -MCP_SERVICE_HOST = "localhost" -MCP_SERVICE_PORT = 5008 - # Bug-report support contact surfaced by the generate_bug_report tool. Each # deployment should override this in superset_config.py to point users at the # right channel (e.g. an internal support address, a vendor support team). @@ -691,8 +687,6 @@ def get_mcp_config(app_config: dict[str, Any] | None = None) -> dict[str, Any]: "SUPERSET_WEBSERVER_ADDRESS": SUPERSET_WEBSERVER_ADDRESS, "WEBDRIVER_BASEURL": WEBDRIVER_BASEURL, "WEBDRIVER_BASEURL_USER_FRIENDLY": WEBDRIVER_BASEURL_USER_FRIENDLY, - "MCP_SERVICE_HOST": MCP_SERVICE_HOST, - "MCP_SERVICE_PORT": MCP_SERVICE_PORT, "MCP_DEBUG": MCP_DEBUG, "MCP_RBAC_ENABLED": MCP_RBAC_ENABLED, "MCP_DISABLED_TOOLS": set(MCP_DISABLED_TOOLS),