"""
Utility functions for Web Parser MCP
"""

from .detection import detect_js_site
from .browser import fetch_with_playwright
from .requests_utils import fetch_with_requests

__all__ = [
    "detect_js_site",
    "fetch_with_playwright", 
    "fetch_with_requests"
]
