fix: flask_restx namespace path wrong (#24456)

This commit is contained in:
quicksand 2025-08-25 14:56:20 +08:00 committed by GitHub
commit 424fdf4b52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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