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 9581337 commit ce905bdCopy full SHA for ce905bd
src/common/config.ts
@@ -99,8 +99,11 @@ const MCP_SERVER_OPTIONS = {
99
} as const;
100
101
const OPTIONS = {
102
- ...MONGOSH_OPTIONS,
103
- ...MCP_SERVER_OPTIONS,
+ string: { ...MONGOSH_OPTIONS.string, ...MCP_SERVER_OPTIONS.string },
+ boolean: { ...MONGOSH_OPTIONS.boolean },
104
+ array: { ...MONGOSH_OPTIONS.array },
105
+ alias: { ...MONGOSH_OPTIONS.alias },
106
+ configuration: { ...MONGOSH_OPTIONS.configuration },
107
108
109
const ALL_CONFIG_KEYS = new Set(
0 commit comments