summaryrefslogtreecommitdiff
path: root/servers/gitlab_python/src/mcp_server_gitlab_python/__main__.py
blob: f2ed2b379e7faa1c134948f62c8cbd593616b28f (plain)
1
2
3
4
5
6
7
#!/usr/bin/env python3
"""Command-line interface for the GitLab Python MCP server."""

from .cli import run_server

if __name__ == "__main__":
    run_server()