Skip to main content
Glama

browser_navigate_forward

Navigate to the next page in a browser session using structured web interactions. Simplifies forward navigation in automated workflows with Playwright MCP.

Instructions

Go forward to the next page

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that implements the browser_navigate_forward tool. It navigates forward in the browser history using tab.page.goForward() and updates the response with a snapshot and code snippet.
    handle: async (tab, params, response) => { await tab.page.goForward(); response.setIncludeSnapshot(); response.addCode(`// Navigate forward`); response.addCode(`await page.goForward();`); },
  • The schema definition for the browser_navigate_forward tool, specifying its name, title, description, empty input schema, and readOnly type.
    schema: { name: 'browser_navigate_forward', title: 'Go forward', description: 'Go forward to the next page', inputSchema: z.object({}), type: 'readOnly', },
  • Exports the browser_navigate_forward tool (as goForward) along with other navigation tools for inclusion in the main tools registry.
    export default [ navigate, goBack, goForward, ];
  • src/tools.ts:36-52 (registration)
    Registers all tools by spreading the navigate tools (including browser_navigate_forward) into the central allTools array.
    export const allTools: Tool<any>[] = [ ...common, ...console, ...dialogs, ...evaluate, ...files, ...install, ...keyboard, ...navigate, ...network, ...mouse, ...pdf, ...screenshot, ...snapshot, ...tabs, ...wait, ];

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nzjami/mcpPlaywright'

If you have feedback or need assistance with the MCP directory API, please join our Discord server