You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
436 B
Python
17 lines
436 B
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from app.config import get_settings
|
|
from app.mcp import mcp
|
|
|
|
settings = get_settings()
|
|
logger = logging.getLogger("personal-agent.mcp")
|
|
effective_mode = settings.auth_mode if settings.mcp_auth_mode == "inherit" else settings.mcp_auth_mode
|
|
logger.info(
|
|
"MCP authentication mode=%s (base AUTH_MODE=%s)",
|
|
effective_mode,
|
|
settings.auth_mode,
|
|
)
|
|
app = mcp.streamable_http_app()
|