1 2 3 4 5 6 7 8 9
#!/usr/bin/env python3 """ Command-line interface for the TaskWarrior MCP server. """ from .cli import run_server if __name__ == "__main__": run_server()