boj_browser_read_page
Extract text content from web pages to access information for analysis, research, or processing tasks.
Instructions
Read the text content of the current page
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp-bridge/main.js:689-700 (handler)The handler for 'boj_browser_read_page' (and other browser tools) which routes the request to a 'browser-mcp' cartridge via an HTTP call.
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; }