browser_file_upload
Upload one or multiple files to a web page using Playwright MCP. Input absolute file paths to enable browser automation for file upload tasks.
Instructions
Upload one or multiple files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | The absolute paths to the files to upload. Can be a single file or multiple files. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"description": "The absolute paths to the files to upload. Can be a single file or multiple files.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}