Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mcp_robot_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_robot_state():
robot = get_robot()
move_result = robot.get_current_robot_state()
result_json = move_result.to_json()
logger.info(f"MCP: get_robot_state outcome: {result_json.get("status", "success")}, Msg: {move_result.msg}")
logger.info(f"MCP: get_robot_state outcome: {result_json.get('status', 'success')}, Msg: {move_result.msg}")
return get_state_with_images(result_json, is_movement=False)


Expand Down