boj_browser_navigate
Navigate Firefox browser to a specified URL using the BoJ-server tool for web automation and browsing control.
Instructions
Navigate Firefox to a URL
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to navigate to |
Implementation Reference
- mcp-bridge/main.js:689-699 (handler)The tool 'boj_browser_navigate' is handled in mcp-bridge/main.js, where it delegates the execution to a REST API via invokeCartridge with the 'browser-mcp' identifier and 'navigate' action.
case "boj_browser_navigate": case "boj_browser_click": case "boj_browser_type": case "boj_browser_read_page": case "boj_browser_screenshot": case "boj_browser_tabs": case "boj_browser_execute_js": { const action = toolName.replace("boj_browser_", ""); const result = await invokeCartridge("browser-mcp", { action, ...args }); sendResult(id, { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }); break;