summaryrefslogtreecommitdiff
path: root/servers/gitlab_glab/src/mcp_server_gitlab_glab/__main__.py
blob: e393b6c9bc20e6458d7b1dde845f4a2e76bb01c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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()