postman-mcp-server

create_environment

Create a new environment in a workspace. Creates in "My Workspace" if workspace not specified.

Input Schema

NameRequiredDescriptionDefault
environmentYesEnvironment details
workspaceNoWorkspace ID (optional)

Input Schema (JSON Schema)

{ "properties": { "environment": { "description": "Environment details", "properties": { "name": { "description": "Environment name", "type": "string" }, "values": { "description": "Environment variables", "items": { "properties": { "enabled": { "description": "Variable enabled status", "type": "boolean" }, "key": { "description": "Variable name", "type": "string" }, "type": { "description": "Variable type", "enum": [ "default", "secret" ], "type": "string" }, "value": { "description": "Variable value", "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" } }, "required": [ "name" ], "type": "object" }, "workspace": { "description": "Workspace ID (optional)", "type": "string" } }, "required": [ "environment" ], "type": "object" }

You must be authenticated.

Other Tools