Kaballas's picture
s
5e15700
raw
history blame
287 Bytes
from fastapi import FastAPI
from fastmcp.server import create_server # corrected import
app = FastAPI()
vector_app = create_server(transport="sse") # keep your flags
app.mount("/sse", vector_app)
@app.get("/", tags=["health"])
async def root():
return {"status": "ok"}