Skip to content

navigate

Kelly Ferrone edited this page Sep 10, 2026 · 4 revisions

navigate

Go to a URL. Returns the resulting URL and page title.

MCP tool navigate
HTTP POST /browser/navigate

Use this to move somewhere unconditionally. To act on a page in one step, prefer passing url to click, write, extract or screenshot.

Parameters

Name Type Required Default Notes
url string yes
session_id string yes over HTTP The session_id returned by /browser/open. Required here.

Returns

Field Type Notes
url string Current URL after the action.
title string Page title after the action.

Errors are 400 for a bad argument, 401 without a token, 500 when the Grid refuses. Over MCP the same failures arrive as a tool error.

Example

MCP

navigate(url="…")

HTTP

curl -X POST $SELENIUM_FLOW/browser/navigate \
  -H "Authorization: Bearer $TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{
    "session_id": "…",
    "url": "…"
  }'

← All actions · Installing · Deployment

Clone this wiki locally