get_indexes
Retrieve detailed information about indexes on a MongoDB collection, including names, fields, types, sizes, options, and usage statistics, to optimize database performance and analysis.
Instructions
Get information about indexes on a collection.
Returns details about:
- Index names and fields 
- Index types (single field, compound, text, etc.) 
- Index sizes 
- Index options 
- Usage statistics 
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| collection | Yes | Collection name | |
| database | No | Database name (optional if default database is configured) | 
Input Schema (JSON Schema)
{
  "properties": {
    "collection": {
      "description": "Collection name",
      "type": "string"
    },
    "database": {
      "description": "Database name (optional if default database is configured)",
      "type": "string"
    }
  },
  "required": [
    "collection"
  ],
  "type": "object"
}