playwright_console_logs
Capture and retrieve console logs from web interactions via the AI Vision Debug MCP Server, with options to filter by type, set a limit, or clear logs after retrieval.
Instructions
Retrieve console logs captured so far
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clear | No | Whether to clear logs after retrieval | |
limit | No | Maximum number of logs to return | |
type | No | Type of logs to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"clear": {
"description": "Whether to clear logs after retrieval",
"optional": true,
"type": "boolean"
},
"limit": {
"description": "Maximum number of logs to return",
"optional": true,
"type": "number"
},
"type": {
"description": "Type of logs to retrieve",
"enum": [
"all",
"error",
"warning",
"log",
"info",
"debug"
],
"optional": true,
"type": "string"
}
},
"required": [],
"type": "object"
}