"""``python -m app.mcp`` — the same entry point as ``scripts/mcp_server.py``. Having both means a client config can say either ``python -m app.mcp`` (from ``backend/``) or ``python scripts/mcp_server.py`` (from anywhere), and neither needs to know about the other. """ from __future__ import annotations import sys from app.mcp.server import main if __name__ == "__main__": sys.exit(main())