test: add /v3/mcp/ to allowed public endpoints

This commit is contained in:
YueGuobin 2026-06-05 01:07:20 +08:00
parent f9f7ba7a53
commit f1078a97e2
No known key found for this signature in database

View File

@ -41,7 +41,8 @@ ALLOWED_CONTROLLER_ENDPOINTS = [
("/v3/symbols", "GET"),
("/v3/symbols/{symbol_id:path}/raw", "GET"),
("/v3/symbols/{symbol_id:path}/dimensions", "GET"),
("/v3/symbols/default_symbols", "GET")
("/v3/symbols/default_symbols", "GET"),
("/v3/mcp/", "GET"),
]
class TestRoutes: