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
You can disable specific tools or categories of tools by using the `disabledTools` option. This option accepts an array of strings,
179
+
where each string can be a tool name, operation type, or category.
180
+
181
+
The way the array is constructed depends on the type of configuration method you use:
182
+
- For **environment variable** configuration, use a comma-separated string: `export MDB_MCP_DISABLED_TOOLS="create,update,delete,atlas,collectionSchema"`.
183
+
- For **command-line argument** configuration, use a space-separated string: `--disabledTools create update delete atlas collectionSchema`.
184
+
185
+
Categories of tools:
186
+
-`atlas` - MongoDB Atlas tools, such as list clusters, create cluster, etc.
187
+
-`mongodb` - MongoDB database tools, such as find, aggregate, etc.
188
+
189
+
Operation types:
190
+
-`create` - Tools that create resources, such as create cluster, insert document, etc.
191
+
-`update` - Tools that update resources, such as update document, rename collection, etc.
192
+
-`delete` - Tools that delete resources, such as delete document, drop collection, etc.
193
+
-`read` - Tools that read resources, such as find, aggregate, list clusters, etc.
194
+
-`metadata` - Tools that read metadata, such as list databases, list collections, collection schema, etc.
195
+
175
196
### Atlas API Access
176
197
177
198
To use the Atlas API tools, you'll need to create a service account in MongoDB Atlas:
0 commit comments