xxx
Browse files
app.py
CHANGED
@@ -8,8 +8,8 @@ app = FastAPI()
|
|
8 |
async def root():
|
9 |
return {"status": "ok"}
|
10 |
|
11 |
-
# Mount the MCP app at /
|
12 |
-
app.mount("/
|
13 |
|
14 |
print("Registered routes in main app:")
|
15 |
for route in app.routes:
|
|
|
8 |
async def root():
|
9 |
return {"status": "ok"}
|
10 |
|
11 |
+
# Mount the MCP app at /sse (to match README and default behavior)
|
12 |
+
app.mount("/sse", mcp.http_app())
|
13 |
|
14 |
print("Registered routes in main app:")
|
15 |
for route in app.routes:
|