mcp-playwright

playwright_post

Perform an HTTP POST request

Input Schema

NameRequiredDescriptionDefault
urlYesURL to perform POST operation
valueYesData 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" }