puppeteer_evaluate
Run custom JavaScript in the browser console to automate tasks, extract data, or interact with web elements using MCP server’s Puppeteer-based browser automation capabilities.
Instructions
Execute JavaScript in the browser console
Input Schema
Name | Required | Description | Default |
---|---|---|---|
script | Yes | JavaScript code to execute |
Input Schema (JSON Schema)
{
"properties": {
"script": {
"description": "JavaScript code to execute",
"type": "string"
}
},
"required": [
"script"
],
"type": "object"
}