We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 607c250 commit 04a77caCopy full SHA for 04a77ca
src/common/config/userConfig.ts
@@ -167,4 +167,14 @@ export const UserConfigSchema = z4.object({
167
)
168
.default([])
169
.describe("An array of preview features that are enabled."),
170
+ toolMetadataOverrides: z4
171
+ .record(
172
+ z4.string().describe("Original name of the MongoDB MCP server tool that needs to be overridden."),
173
+ z4.object({
174
+ name: z4.string().nonempty().optional().describe("New name to be used for the tool."),
175
+ description: z4.string().nonempty().optional().describe("New description to be used for the tool."),
176
+ })
177
+ )
178
+ .default({})
179
+ .describe("A map of name of the MongoDB MCP server tool to the metadata that needs to be used for that tool."),
180
});
0 commit comments