You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`atlas-list-db-users` - List MongoDB Atlas database users
294
294
-`atlas-create-db-user` - Creates a MongoDB Atlas database user
295
295
-`atlas-list-alerts` - List MongoDB Atlas Alerts for a Project
296
+
-`atlas-get-performance-advisor` - Gets Atlas Performance Advisor recommendations (index suggestions, drop index suggestions, schema suggestions, slow query logs)
296
297
297
298
NOTE: atlas tools are only available when you set credentials on [configuration](#configuration) section.
298
299
@@ -368,6 +369,7 @@ The MongoDB MCP Server can be configured using multiple methods, with the follow
368
369
|`exportCleanupIntervalMs`|`MDB_MCP_EXPORT_CLEANUP_INTERVAL_MS`| 120000 | Time in milliseconds between export cleanup cycles that remove expired export files. |
369
370
|`atlasTemporaryDatabaseUserLifetimeMs`|`MDB_MCP_ATLAS_TEMPORARY_DATABASE_USER_LIFETIME_MS`| 14400000 | Time in milliseconds that temporary database users created when connecting to MongoDB Atlas clusters will remain active before being automatically deleted. |
370
371
|`voyageApiKey`|`MDB_VOYAGE_API_KEY`| <notset> | API key for communicating with Voyage AI. Used for generating embeddings for Vector search. |
372
+
|`previewFeatures`|`MDB_MCP_PREVIEW_FEATURES`|`[]`| An array of preview features to opt into. |
371
373
372
374
#### Logger Options
373
375
@@ -489,6 +491,19 @@ You can disable telemetry using:
489
491
490
492
> **💡 Platform Note:** For Windows users, see [Environment Variables](#environment-variables) for platform-specific instructions.
491
493
494
+
#### Opting into Preview Features
495
+
496
+
The MongoDB MCP Server may offer functionality that is still in development and may change in future releases. These features are considered "preview features" and are not enabled by default. Generally, these features are well tested, but may not offer the complete functionality we intend to provide in the final release or we'd like to gather feedback before making them generally available. To enable one or more preview features, use the `previewFeatures` configuration option.
497
+
498
+
- For **environment variable** configuration, use a comma-separated string: `export MDB_MCP_PREVIEW_FEATURES="vectorSearch,feature1,feature2"`.
499
+
- For **command-line argument** configuration, use a space-separated string: `--previewFeatures vectorSearch feature1 feature2`.
500
+
501
+
List of available preview features:
502
+
503
+
-`vectorSearch` - Enables tools or functionality related to Vector Search in MongoDB Atlas:
504
+
- Index management, such as creating, listing, and dropping vector search indexes.
505
+
- Querying collections using vector search capabilities. This requires a configured embedding model that will be used to generate vector representations of the query data.
506
+
492
507
### Atlas API Access
493
508
494
509
To use the Atlas API tools, you'll need to create a service account in MongoDB Atlas:
0 commit comments