mongodb-schema-design

Installation
SKILL.md

MongoDB Schema Design

Master data modeling and schema patterns.

Quick Start

One-to-One: Embedded

// User with single address - embed if always accessed together
{
  _id: ObjectId('...'),
  name: 'John',
  email: 'john@example.com',
  address: {
    street: '123 Main St',
    city: 'New York',
    zip: '10001'
  }
}
Related skills

More from pluginagentmarketplace/custom-plugin-mongodb

Installs
3
GitHub Stars
1
First Seen
Feb 28, 2026