mcp-playwright
playwright_patch
Perform an HTTP PATCH request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to perform PUT operation | |
value | Yes | Data to PATCH in the body |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to perform PUT operation",
"type": "string"
},
"value": {
"description": "Data to PATCH in the body",
"type": "string"
}
},
"required": [
"url",
"value"
],
"type": "object"
}