Skip to main content
Glama

browser_navigate

Navigate to specified URLs during web application penetration testing to facilitate automated vulnerability detection and security assessment.

Instructions

Navigate to a URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes

Implementation Reference

  • Handler implementation for the browser_navigate tool. Navigates the Playwright page to the specified URL and returns a success message.
    case ToolName.BrowserNavigate:
      await page.goto(args.url);
      return {
        content: [{
          type: "text",
            text: `Navigated to ${args.url}`,
          }],
        isError: false,
      };
  • Input schema for browser_navigate tool, defining a required 'url' string property.
    inputSchema: {
      type: "object",
      properties: {
        url: { type: "string" },
      },
      required: ["url"],
    },
  • index.ts:39-49 (registration)
    Registration of the browser_navigate tool in the TOOLS array, including name, description, and schema.
    {
      name: ToolName.BrowserNavigate,
      description: "Navigate to a URL",
      inputSchema: {
        type: "object",
        properties: {
          url: { type: "string" },
        },
        required: ["url"],
      },
    },
  • index.ts:23-23 (registration)
    Enum definition mapping ToolName.BrowserNavigate to the string 'browser_navigate'.
    BrowserNavigate = "browser_navigate",

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/9olidity/MCP-Server-Pentest'

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