Coverage for src/qdrant_loader_mcp_server/main.py: 80%

5 statements  

« prev     ^ index     » next       coverage.py v7.8.2, created at 2025-06-04 05:45 +0000

1"""Main application entry point for RAG MCP Server.""" 

2 

3from .cli import cli 

4 

5 

6def main(): 

7 """Main entry point that delegates to the CLI.""" 

8 cli() 

9 

10 

11if __name__ == "__main__": 

12 main()