from fastapi import FastAPI import os app = FastAPI() @app.get("/") async def root(): return { "status": "ok", "service": "biopython", "transport": os.environ.get("MCP_TRANSPORT", "stdio"), }