summaryrefslogtreecommitdiff
path: root/servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-15 17:27:57 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-15 17:27:57 +0300
commit0d3b300943d44ad69f803f2e196bc643b937ef37 (patch)
tree5ff368783ee80039f7ea4eafefbcd0f7993b8a01 /servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py
parent4e89e51901d9b3726a56d15980a0845b8e2a36b0 (diff)
feat: deprecate gitlab_glab
Diffstat (limited to 'servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py')
-rw-r--r--servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py b/servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py
index 69173f7..92abe0f 100644
--- a/servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py
+++ b/servers/gitlab_glab/src/mcp_server_gitlab_glab/cli.py
@@ -103,6 +103,12 @@ def setup_logging(level: str, transport: str) -> None:
def run_server() -> None:
"""Run the server with CLI arguments."""
+ 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,
+ )
args = validate_args(parse_args())
setup_logging(args.log_level, args.transport)