Meet Patel commited on
Commit
22f81ff
·
1 Parent(s): 2902ce4

fix: Update SERVER_URL to point to the production SSE endpoint

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,8 +21,8 @@ from mcp.client.sse import sse_client
21
  from mcp.client.session import ClientSession
22
 
23
  # Server configuration
24
- SERVER_URL = "http://localhost:8000/sse" # Ensure this is the SSE endpoint
25
-
26
  # Utility functions
27
 
28
  async def ping_mcp_server() -> None:
 
21
  from mcp.client.session import ClientSession
22
 
23
  # Server configuration
24
+ # SERVER_URL = "http://localhost:8000" # Ensure this is the SSE endpoint
25
+ SERVER_URL = "https://tutorx-mcp.onrender.com/sse"
26
  # Utility functions
27
 
28
  async def ping_mcp_server() -> None: