Puppeteer MCP Server

make_http_request

Make an HTTP request with curl

Input Schema

NameRequiredDescriptionDefault
bodyYesBody to include in the request
headersYesHeaders to include in the request
typeYesType of the request. GET, POST, PUT, DELETE
urlYesUrl to make the request to

Input Schema (JSON Schema)

{ "properties": { "body": { "description": "Body to include in the request", "type": "object" }, "headers": { "description": "Headers to include in the request", "type": "object" }, "type": { "description": "Type of the request. GET, POST, PUT, DELETE", "type": "string" }, "url": { "description": "Url to make the request to", "type": "string" } }, "required": [ "type", "url", "headers", "body" ], "type": "object" }