remove mcp session id

This commit is contained in:
Taylor Wilsdon
2025-07-26 12:05:22 -04:00
parent 0aeed0cc16
commit f0976514e2
4 changed files with 13 additions and 44 deletions

View File

@@ -5,14 +5,9 @@ This module centralizes OAuth scope definitions for Google Workspace integration
Separated from service_decorator.py to avoid circular imports.
"""
import logging
from typing import Dict
logger = logging.getLogger(__name__)
# Temporary map to associate OAuth state with MCP session ID
# This should ideally be a more robust cache in a production system (e.g., Redis)
OAUTH_STATE_TO_SESSION_ID_MAP: Dict[str, str] = {}
# Individual OAuth Scope Constants
USERINFO_EMAIL_SCOPE = 'https://www.googleapis.com/auth/userinfo.email'
OPENID_SCOPE = 'openid'