tesseract / app.py
guohanghui's picture
Update app.py
97f87a5 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": "tesseract",
"transport": os.environ.get("MCP_TRANSPORT", "stdio"),
}