"""FastMCP application instance. Tools register themselves by importing this.""" from fastmcp import FastMCP from starlette.requests import Request from starlette.responses import Response __all__ = ["mcp"] mcp = FastMCP(name="tiktok-scraper") @mcp.custom_route("/health", methods=["GET"]) async def health(_: Request) -> Response: return Response("ok")