bruno_discover_collections
Find Bruno API collections by scanning directories for bruno.json files. Specify a search path and optional depth limit to locate all collections automatically.
Instructions
Discover Bruno collections by recursively searching for bruno.json files in a directory
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| searchPath | Yes | Directory path to search for Bruno collections | |
| maxDepth | No | Maximum directory depth to search (default: 5, max: 10) | 
Input Schema (JSON Schema)
{
  "properties": {
    "maxDepth": {
      "description": "Maximum directory depth to search (default: 5, max: 10)",
      "type": "number"
    },
    "searchPath": {
      "description": "Directory path to search for Bruno collections",
      "type": "string"
    }
  },
  "required": [
    "searchPath"
  ],
  "type": "object"
}