Kaballas commited on
Commit
7914788
·
1 Parent(s): ecba792
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,8 +8,8 @@ app = FastAPI()
8
  async def root():
9
  return {"status": "ok"}
10
 
11
- # Mount the MCP app at /mcp
12
- app.mount("/mcp", mcp.http_app())
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: