boj_browser_screenshot
Capture browser page screenshots to document content, troubleshoot issues, or share visual information from web applications.
Instructions
Take a screenshot of the current page
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp-bridge/main.js:689-700 (handler)Handler block for browser-related tools including 'boj_browser_screenshot'. It invokes 'browser-mcp' cartridge with the action 'screenshot'.
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; } - mcp-bridge/main.js:493-500 (registration)Registration of the 'boj_browser_screenshot' tool in the tool list provided to the MCP client.
tools.push({ name: "boj_browser_screenshot", description: "Take a screenshot of the current page", inputSchema: { type: "object", properties: {}, }, });