playwright_post
Execute HTTP POST requests to specified URLs with data payloads using the Playwright MCP Server, enabling browser automation and web interaction.
Instructions
Perform an HTTP POST request
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to perform POST operation | |
| value | Yes | Data to post in the body |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to perform POST operation",
"type": "string"
},
"value": {
"description": "Data to post in the body",
"type": "string"
}
},
"required": [
"url",
"value"
],
"type": "object"
}