AI Vision Debug MCP Server

console_monitor

Track and analyze console logs from a specified URL, filtering by message types like log, info, warning, or error, within a set duration. Optionally trigger monitoring after user interaction.

Instructions

Monitor console logs on a page

Input Schema

NameRequiredDescriptionDefault
durationNoHow long to monitor in milliseconds. Default: 5000
filterTypesNoTypes of console messages to capture
interactionSelectorNoOptional element to click before monitoring
urlYesURL to monitor console logs from

Input Schema (JSON Schema)

{ "properties": { "duration": { "description": "How long to monitor in milliseconds. Default: 5000", "type": "number" }, "filterTypes": { "description": "Types of console messages to capture", "items": { "enum": [ "log", "info", "warning", "error" ], "type": "string" }, "type": "array" }, "interactionSelector": { "description": "Optional element to click before monitoring", "type": "string" }, "url": { "description": "URL to monitor console logs from", "type": "string" } }, "required": [ "url" ], "type": "object" }
ID: lbb1el5owd