mongo-list-collections
List all collections in a MongoDB database to view available data structures and organize database management tasks.
Instructions
List all collections in a MongoDB database
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database | Yes | Database name | 
Input Schema (JSON Schema)
{
  "properties": {
    "database": {
      "description": "Database name",
      "type": "string"
    }
  },
  "required": [
    "database"
  ],
  "type": "object"
}