postman-mcp-server

create_collection_request

Create a new request in a collection

Input Schema

NameRequiredDescriptionDefault
collection_idYesCollection ID
folder_idNoOptional folder ID to create request in
requestYesRequest details

Input Schema (JSON Schema)

{ "properties": { "collection_id": { "description": "Collection ID", "type": "string" }, "folder_id": { "description": "Optional folder ID to create request in", "type": "string" }, "request": { "description": "Request details", "properties": { "method": { "type": "string" }, "name": { "type": "string" }, "url": { "type": "string" } }, "type": "object" } }, "required": [ "collection_id", "request" ], "type": "object" }

You must be authenticated.

Other Tools