scCellFie / app.py
guohanghui's picture
Create app.py
20fcbf0 verified
Raw
History Blame Contribute Delete
226 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
return {
"status": "ok",
"service": "scCellFie",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}