postman-mcp-server

create_collection

Create a new collection in a workspace. Supports Postman Collection v2.1.0 format.

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection details in Postman Collection Format v2.1
workspaceNoWorkspace ID. Creates in "My Workspace" if not specified.

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "Collection details in Postman Collection Format v2.1", "properties": { "info": { "properties": { "name": { "type": "string" }, "schema": { "type": "string" } }, "required": [ "name", "schema" ], "type": "object" } }, "required": [ "info" ], "type": "object" }, "workspace": { "description": "Workspace ID. Creates in \"My Workspace\" if not specified.", "type": "string" } }, "required": [ "collection" ], "type": "object" }

You must be authenticated.

Other Tools