Skip to main content

browserNavigate

client.mcp.browserNavigate(data: McpBrowserNavigateRequest): Promise<unknown>

Navigates to a URL using the browser MCP server.

Sends a navigation command to the browser automation MCP server, instructing it to load a specific web page. Requires the browser MCP server to be installed and enabled.

Parameters

ParameterTypeRequiredDescription
dataMcpBrowserNavigateRequestYesThe navigation request

Returns

Promise<unknown> — A promise that resolves when the navigation has been initiated

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.mcp.browserNavigate(/* McpBrowserNavigateRequest */);
console.log(result);