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,
158
160
where each string can be a tool name, operation type, or category.
159
161
160
162
The way the array is constructed depends on the type of configuration method you use:
163
+
161
164
- For **environment variable** configuration, use a comma-separated string: `export MDB_MCP_DISABLED_TOOLS="create,update,delete,atlas,collectionSchema"`.
162
165
- For **command-line argument** configuration, use a space-separated string: `--disabledTools create update delete atlas collectionSchema`.
163
166
164
167
Categories of tools:
168
+
165
169
-`atlas` - MongoDB Atlas tools, such as list clusters, create cluster, etc.
166
170
-`mongodb` - MongoDB database tools, such as find, aggregate, etc.
167
171
168
172
Operation types:
173
+
169
174
-`create` - Tools that create resources, such as create cluster, insert document, etc.
170
175
-`update` - Tools that update resources, such as update document, rename collection, etc.
171
176
-`delete` - Tools that delete resources, such as delete document, drop collection, etc.
0 commit comments