from __future__ import annotations
"""Sherlog MCP Server entry point.
This module serves as the main entry point for the Sherlog MCP server.
All functionality is implemented in :pyfile:`sherlog_mcp/main.py`.
"""
from sherlog_mcp.main import main
if __name__ == "__main__":
main()