Skip to content

Commit a07c392

Browse files
committed
Update MCP server endpoint and fix plan_id response
Changed MCP_SERVER_ENDPOINT port in .env.sample from 9000 to 8080. Fixed API response in router.py to return the correct plan_id variable instead of input_task.plan_id.
1 parent 3a52cfe commit a07c392

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/backend/.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ AZURE_AI_AGENT_ENDPOINT=
2020
AZURE_BING_CONNECTION_NAME=
2121
REASONING_MODEL_NAME=o3
2222
APP_ENV=dev
23-
MCP_SERVER_ENDPOINT=http://localhost:9000/mcp
23+
MCP_SERVER_ENDPOINT=http://localhost:8080/mcp
2424
MCP_SERVER_NAME=MyMC
2525
MCP_SERVER_DESCRIPTION=My MCP Server
2626
TENANT_ID=

src/backend/v3/api/router.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ async def run_with_context():
280280
return {
281281
"status": "Request started successfully",
282282
"session_id": input_task.session_id,
283-
"plan_id": input_task.plan_id,
283+
"plan_id": plan_id,
284284
}
285285

286286
except Exception as e:

0 commit comments

Comments
 (0)