#!/usr/bin/env python3 """Command-line interface for the GitLab Python MCP server.""" from .cli import run_server if __name__ == "__main__": run_server()