evaluate_javascript
Execute custom JavaScript code within a browser context using the MCP Browser Server, enabling automation for web interactions, data extraction, and dynamic content manipulation.
Instructions
Execute JavaScript in the browser context
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"
}