Skip to main content
Glama

MCP cldkctl Server

by raffelprama
__main__.py548 B
"""Entry point for mcp-cldkctl.""" import asyncio import sys import traceback from .server import main def cli_main(): """CLI entry point that properly handles the async main function.""" try: asyncio.run(main()) except KeyboardInterrupt: print("Server stopped by user.", file=sys.stderr) sys.exit(0) except Exception as e: print(f"Server error: {e}", file=sys.stderr) traceback.print_exc(file=sys.stderr) sys.exit(1) if __name__ == "__main__": cli_main()

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/raffelprama/mcp-cldkctl'

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