#!/usr/bin/env python3
"""
Module entry point for MCP Server
This file enables running the server with: uv run -m src.mcp_server.server
or python -m src.mcp_server.server
"""
from .server import main
if __name__ == "__main__":
import asyncio
asyncio.run(main())