We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/danttis/eternity-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•309 B
"""Main entry point for the Eternity application."""
import uvicorn
from .main import app # noqa: F401
def start():
"""Entry point for the application script"""
uvicorn.run("eternity.main:app",
host="0.0.0.0", port=8000, reload=True) # noqa: S104
if __name__ == "__main__":
start()