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