Skip to main content
Glama

navigate

Direct the browser to a specified URL using Autoconsent MCP, enabling precise navigation for testing and interacting with web pages within an automation framework.

Instructions

Navigate to any URL in the browser

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL to navigate to

Implementation Reference

  • Handler for the 'navigate' tool: uses Puppeteer to navigate the browser page to the specified URL and returns a confirmation message.
    case "navigate": await page.goto(args.url, { waitUntil: "domcontentloaded" }); return { content: [ { type: "text", text: `Navigated to ${args.url}`, }, ], isError: false, };
  • Input schema defining the 'url' parameter as a required string for the 'navigate' tool.
    inputSchema: { type: "object", properties: { url: { type: "string", description: "URL to navigate to" }, }, required: ["url"], },
  • src/index.ts:21-31 (registration)
    Registration of the 'navigate' tool in the TOOLS array used for listing available tools.
    { name: "navigate", description: "Navigate to any URL in the browser", inputSchema: { type: "object", properties: { url: { type: "string", description: "URL to navigate to" }, }, required: ["url"], }, },

Other Tools

Related Tools

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/noisysocks/autoconsent-mcp'

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