diff --git a/backend.py b/backend.py index c12bb98..61b5c67 100644 --- a/backend.py +++ b/backend.py @@ -223,7 +223,7 @@ async def create_invoice(request: Request): "calls": CALLS_PER_TIER, "orderId": f"research-{user['id']}-{int(time.time())}" }, - "checkout": {"redirectURL": f"http://10.30.20.249:8000/dashboard"} + "checkout": {"redirectURL": f"http://10.30.20.250:8000/dashboard"} }, verify=False, timeout=15.0 ) diff --git a/server.py b/server.py index 06c5b21..4561a52 100644 --- a/server.py +++ b/server.py @@ -5,7 +5,7 @@ import json import httpx from mcp.server import FastMCP -BACKEND_URL = "http://10.30.20.249:8000" +BACKEND_URL = "http://10.30.20.250:8000" ADMIN_KEY = "sk-admin-unlimited-2026" client = httpx.Client(timeout=120.0)