What problem does it solve? It lets you explore and query MongoDB databases directly from your AI workflow without writing connection boilerplate, while enforcing read-only safety and query performance best practices. ## Core Features & Use Cases - Database Discovery: List databases, collections, and schemas using mcp__mongodb__* tools to understand data structure before querying. - Read-Only Querying: Retrieve records, run aggregation pipelines, and inspect indexes without any risk of writes, updates, or deletes. - Performance Analysis: Check explain plans to detect COLLSCAN vs IXSCAN and get compound index suggestions for slow queries. - Use Case: Ask the agent to show all collections in your analytics database, inspect the schema of the orders collection, and run an aggregation that groups revenue by month. ## Quick Start Ask the agent to list all MongoDB databases and show the schema of a specific collection using the configured MONGODB_URI connection.