fix: flask_restx namespace path wrong (#24456)

This commit is contained in:
quicksand
2025-08-25 14:56:20 +08:00
committed by GitHub
parent bcf42362e3
commit 424fdf4b52
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ api = ExternalApi(
doc="/docs", # Enable Swagger UI at /mcp/docs
)
mcp_ns = Namespace("mcp", description="MCP operations")
mcp_ns = Namespace("mcp", description="MCP operations", path="/")
from . import mcp