Skip to main content
Glama
__main__.py564 B
#!/usr/bin/env python3 """Entry point for the CVE MCP Server.""" import asyncio import sys from pathlib import Path # Ensure src is in path sys.path.insert(0, str(Path(__file__).parent.parent)) from mcp_server.server import run_server def main(): """Main entry point.""" try: asyncio.run(run_server()) except KeyboardInterrupt: print("\nServer stopped.", file=sys.stderr) sys.exit(0) except Exception as e: print(f"Server error: {e}", file=sys.stderr) sys.exit(1) if __name__ == "__main__": 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/davidculver/cve-mcp-server'

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