mcp-playwright
playwright_post
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"
}