run-collection
Execute Bruno Collections from the command line, with optional environment files and variables, using the Bruno MCP server for streamlined API testing and automation.
Instructions
Run a Bruno Collection using Bruno CLI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Path to the Bruno collection | |
environment | No | Optional path to environment file | |
variables | No | Optional environment variables |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"collection": {
"description": "Path to the Bruno collection",
"type": "string"
},
"environment": {
"description": "Optional path to environment file",
"type": "string"
},
"variables": {
"description": "Optional environment variables",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"collection"
],
"type": "object"
}