You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.info(f"Extracted actual tool name for tools/call: '{actual_tool_name}'")
739
739
740
+
# Check if user has any scopes - if not, deny access (fail closed)
741
+
ifnotuser_scopes:
742
+
logger.warning(f"Access denied for user {validation_result.get('username')} to {server_name}.{method} (tool: {actual_tool_name}) - no scopes configured")
743
+
raiseHTTPException(
744
+
status_code=403,
745
+
detail=f"Access denied to {server_name}.{method} - user has no scopes configured",
0 commit comments