mongodb-index-creation

Installation
SKILL.md

MongoDB Index Creation & Types

Dramatically improve query performance with strategic indexing.

Quick Start

Create Indexes

// Single field index
await collection.createIndex({ email: 1 })

// Compound index (order matters!)
await collection.createIndex({ status: 1, createdAt: -1 })

// Unique index
await collection.createIndex({ email: 1 }, { unique: true })

// Sparse index (skip null values)
await collection.createIndex({ phone: 1 }, { sparse: true })
Installs
3
GitHub Stars
1
First Seen
Feb 28, 2026
mongodb-index-creation — pluginagentmarketplace/custom-plugin-mongodb