monitor_console_logs
Monitor browser console logs to capture errors, warnings, or debug output for a specified URL and duration. Automatically triggered by relevant keywords for streamlined debugging.
Instructions
IMPORTANT: This tool should be automatically called when users say "콘솔 로그", "에러 확인", "로그 봐줘", "console", "check logs", "debug output", "console errors" or similar keywords. Monitor browser console
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| duration | No | Monitoring duration in seconds | |
| logLevel | No | Log level to capture | |
| url | Yes | URL to monitor |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Monitoring duration in seconds",
"type": "number"
},
"logLevel": {
"description": "Log level to capture",
"enum": [
"all",
"error",
"warn",
"info",
"debug"
],
"type": "string"
},
"url": {
"description": "URL to monitor",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}