Skip to content

Commit b094b83

Browse files
committed
chore: run generate
1 parent 1b284e9 commit b094b83

File tree

3 files changed

+126
-6
lines changed

3 files changed

+126
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ The MongoDB MCP Server can be configured using multiple methods, with the follow
346346

347347
| CLI Option | Environment Variable | Default | Description |
348348
| -------------------------------------- | --------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
349+
| `allowRequestOverrides` | `MDB_MCP_ALLOW_REQUEST_OVERRIDES` | `false` | When set to true, allows configuration values to be overridden via request headers and query parameters. |
349350
| `apiClientId` | `MDB_MCP_API_CLIENT_ID` | `<not set>` | Atlas API client ID for authentication. Required for running Atlas tools. |
350351
| `apiClientSecret` | `MDB_MCP_API_CLIENT_SECRET` | `<not set>` | Atlas API client secret for authentication. Required for running Atlas tools. |
351352
| `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. |

server.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616
"type": "stdio"
1717
},
1818
"environmentVariables": [
19+
{
20+
"name": "MDB_MCP_ALLOW_REQUEST_OVERRIDES",
21+
"description": "When set to true, allows configuration values to be overridden via request headers and query parameters.",
22+
"isRequired": false,
23+
"format": "string",
24+
"isSecret": false
25+
},
1926
{
2027
"name": "MDB_MCP_API_CLIENT_ID",
2128
"description": "Atlas API client ID for authentication. Required for running Atlas tools.",
@@ -186,6 +193,12 @@
186193
}
187194
],
188195
"packageArguments": [
196+
{
197+
"type": "named",
198+
"name": "--allowRequestOverrides",
199+
"description": "When set to true, allows configuration values to be overridden via request headers and query parameters.",
200+
"isRequired": false
201+
},
189202
{
190203
"type": "named",
191204
"name": "--apiClientId",
@@ -344,6 +357,13 @@
344357
"type": "stdio"
345358
},
346359
"environmentVariables": [
360+
{
361+
"name": "MDB_MCP_ALLOW_REQUEST_OVERRIDES",
362+
"description": "When set to true, allows configuration values to be overridden via request headers and query parameters.",
363+
"isRequired": false,
364+
"format": "string",
365+
"isSecret": false
366+
},
347367
{
348368
"name": "MDB_MCP_API_CLIENT_ID",
349369
"description": "Atlas API client ID for authentication. Required for running Atlas tools.",
@@ -514,6 +534,12 @@
514534
}
515535
],
516536
"packageArguments": [
537+
{
538+
"type": "named",
539+
"name": "--allowRequestOverrides",
540+
"description": "When set to true, allows configuration values to be overridden via request headers and query parameters.",
541+
"isRequired": false
542+
},
517543
{
518544
"type": "named",
519545
"name": "--apiClientId",

0 commit comments

Comments
 (0)