Skip to main content
Glama
pipethedev
by pipethedev

browsercat_navigate

Navigate to a specified URL using a cloud browser service to automate web browsing tasks without local installation.

Instructions

Navigate to a URL

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes

Implementation Reference

  • Executes the browsercat_navigate tool by navigating the Puppeteer page to the provided URL and returning a success text message.
    case "browsercat_navigate":
      await page.goto(args.url);
      return {
        content: [{
          type: "text",
          text: `Navigated to ${args.url}`,
        }],
        isError: false,
      };
  • Defines the tool schema for browsercat_navigate, including name, description, and input schema requiring a 'url' string property.
    {
      name: "browsercat_navigate",
      description: "Navigate to a URL",
      inputSchema: {
        type: "object",
        properties: {
          url: { type: "string" },
        },
        required: ["url"],
      },
    },
  • index.ts:421-423 (registration)
    Registers the list of available tools, including browsercat_navigate, for the ListToolsRequestSchema.
    server.setRequestHandler(ListToolsRequestSchema, async () => ({
      tools: TOOLS,
    }));
  • index.ts:425-427 (registration)
    Registers the general tool call handler that dispatches to specific tool implementations based on the tool name.
    server.setRequestHandler(CallToolRequestSchema, async (request) =>
      handleToolCall(request.params.name, request.params.arguments ?? {})
    );

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/pipethedev/browsercat-mcp-server'

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