#!/usr/bin/env python3
"""
MCP Connection Hub CLI entry point.
This script provides a convenient way to run the CLI directly.
"""
import sys
import os
# Adjust Python path to allow importing from the app package
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
from app.cli.main import app
if __name__ == "__main__":
app()