File size: 196 Bytes
71b4454
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from fastapi import FastAPI

from backend import mcp_routes
app = FastAPI(title="Generated API")
app.include_router(mcp_routes.router)

@app.get("/")
async def root():
    return {"status": "ok"}