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