"""Configuration for navi-web MCP server."""

from __future__ import annotations

import os


class Settings:
    """Env-based settings."""

    def __init__(self) -> None:
        self.searxng_url = os.environ.get("NAVI_WEB_SEARXNG_URL", "").rstrip("/")
        self.brave_api_key = os.environ.get("NAVI_WEB_BRAVE_API_KEY", "")
        self.ddg_region = os.environ.get("NAVI_WEB_DDG_REGION", "ua-uk")
