Skip to main content
Glama
cli.py413 B
""" CLI entry point for the Daniel LightRAG MCP server. """ import asyncio import sys from .server import main def cli(): """CLI entry point.""" try: asyncio.run(main()) except KeyboardInterrupt: print("\nShutting down server...") sys.exit(0) except Exception as e: print(f"Error starting server: {e}") sys.exit(1) if __name__ == "__main__": cli()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/desimpkins/daniel-lightrag-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server