Skip to main content
Glama
hsgui
by hsgui
main.py488 B
from __future__ import annotations from fastapi import FastAPI from app.api.routes import router from app.core.config import get_settings from app.core.database import Base, engine settings = get_settings() def create_app() -> FastAPI: application = FastAPI(title=settings.app_name) @application.on_event("startup") def _startup() -> None: Base.metadata.create_all(bind=engine) application.include_router(router) return application app = create_app()

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/hsgui/daily-work-mcp'

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