Postman MCP Server
by shannonlal
run-collection
Run a Postman Collection using Newman
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Path or URL to the Postman collection | |
environment | No | Optional path or URL to environment file | |
globals | No | Optional path or URL to globals file | |
iterationCount | No | Optional number of iterations to run |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Path or URL to the Postman collection",
"type": "string"
},
"environment": {
"description": "Optional path or URL to environment file",
"type": "string"
},
"globals": {
"description": "Optional path or URL to globals file",
"type": "string"
},
"iterationCount": {
"description": "Optional number of iterations to run",
"type": "number"
}
},
"required": [
"collection"
],
"type": "object"
}