We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ytssamuel/FHL-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•538 B
"""
FHL Bible MCP Server - Entry Point
This module provides the entry point for running the MCP server via:
python -m fhl_bible_mcp
"""
import asyncio
import sys
from fhl_bible_mcp.server import main
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
print("\nServer stopped by user", file=sys.stderr)
sys.exit(0)
except Exception as e:
print(f"\nFatal error: {e}", file=sys.stderr)
import traceback
traceback.print_exc()
sys.exit(1)