"""
Main server script for the Odos MCP client using FastMCP.
This script imports the centralized FastMCP application instance,
which already has tools registered, and starts the Uvicorn server.
"""
from . import ( # Import all tools to ensure registration # pylint: disable=unused-import
tools,
)
from .mcp import mcp
if __name__ == "__main__":
mcp.run(transport="stdio")