File size: 224 Bytes
4d679f6
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"),
    }