From 8fc44eb27a7d7ba58f54e82106bb140e7db29199 Mon Sep 17 00:00:00 2001 From: junjun Date: Mon, 29 Jun 2026 15:33:26 +0800 Subject: [PATCH] feat: Adjust the organizational attribution logic of dialogues in MCP #1221 --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 60d576af..bd2e480e 100644 --- a/backend/main.py +++ b/backend/main.py @@ -185,7 +185,7 @@ async def custom_swagger_ui(request: Request): description="SQLBot MCP Server", describe_all_responses=True, describe_full_response_schema=True, - include_operations=["mcp_datasource_list", "get_model_list", "mcp_question", "mcp_start", "mcp_assistant", "mcp_ws_list"] + include_operations=["mcp_datasource_list", "get_model_list", "mcp_question", "mcp_start", "mcp_assistant", "mcp_ws_list", "access_token"] ) mcp.mount(mcp_app)