394c137 97f87a5 394c137
1
2
3
4
5
6
7
8
9
10
11
12
13
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"), }