initialize_browserless
Establish a connection to a Browserless instance for browser automation, enabling tasks like PDF generation, screenshots, content extraction, and performance audits.
Instructions
Initialize connection to Browserless instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
concurrent | No | ||
host | No | localhost | |
port | No | ||
protocol | No | http | |
timeout | No | ||
token | Yes |
Input Schema (JSON Schema)
{
"properties": {
"concurrent": {
"default": 5,
"type": "number"
},
"host": {
"default": "localhost",
"type": "string"
},
"port": {
"default": 3000,
"type": "number"
},
"protocol": {
"default": "http",
"enum": [
"http",
"https",
"ws",
"wss"
],
"type": "string"
},
"timeout": {
"default": 30000,
"type": "number"
},
"token": {
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}