#!/usr/bin/env python3 """Command-line interface for the GitLab CLI MCP server.""" import sys print( "\u26A0\uFE0F DEPRECATION NOTICE: The gitlab_glab MCP server is deprecated and will no longer be maintained. " "Please migrate to the gitlab_python MCP server, which is the recommended and actively supported replacement. " "See servers/gitlab_python/README.md for details.", file=sys.stderr, ) from .cli import run_server if __name__ == "__main__": run_server()