Skip to content

Commit 683c1c8

Browse files
chore: release v1.3.0-pre.1
1 parent b7bba29 commit 683c1c8

File tree

4 files changed

+34
-5
lines changed

4 files changed

+34
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ The MongoDB MCP Server can be configured using multiple methods, with the follow
352352
| `confirmationRequiredTools` | `MDB_MCP_CONFIRMATION_REQUIRED_TOOLS` | `"atlas-create-access-list,atlas-create-db-user,drop-database,drop-collection,delete-many,drop-index"` | Comma separated values of tool names that require user confirmation before execution. Requires the client to support elicitation. |
353353
| `connectionString` | `MDB_MCP_CONNECTION_STRING` | `<not set>` | MongoDB connection string for direct database connections. Optional, if not set, you'll need to call the connect tool before interacting with MongoDB data. |
354354
| `disabledTools` | `MDB_MCP_DISABLED_TOOLS` | `""` | Comma separated values of tool names, operation types, and/or categories of tools that will be disabled. |
355+
| `dryRun` | `MDB_MCP_DRY_RUN` | `false` | When true, runs the server in dry mode: dumps configuration and enabled tools, then exits without starting the server. |
355356
| `embeddingsValidation` | `MDB_MCP_EMBEDDINGS_VALIDATION` | `true` | When set to false, disables validation of embeddings dimensions. |
356357
| `exportCleanupIntervalMs` | `MDB_MCP_EXPORT_CLEANUP_INTERVAL_MS` | `120000` | Time in milliseconds between export cleanup cycles that remove expired export files. |
357358
| `exportTimeoutMs` | `MDB_MCP_EXPORT_TIMEOUT_MS` | `300000` | Time in milliseconds after which an export is considered expired and eligible for cleanup. |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mongodb-mcp-server",
33
"description": "MongoDB Model Context Protocol Server",
4-
"version": "1.2.0",
4+
"version": "1.3.0-pre.1",
55
"type": "module",
66
"packageManager": "[email protected]",
77
"mcpName": "io.github.mongodb-js/mongodb-mcp-server",

server.json

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"url": "https://github.com/mongodb-js/mongodb-mcp-server",
77
"source": "github"
88
},
9-
"version": "1.2.0",
9+
"version": "1.3.0-pre.1",
1010
"packages": [
1111
{
1212
"registryType": "npm",
1313
"identifier": "mongodb-mcp-server",
14-
"version": "1.2.0",
14+
"version": "1.3.0-pre.1",
1515
"transport": {
1616
"type": "stdio"
1717
},
@@ -58,6 +58,13 @@
5858
"format": "string",
5959
"isSecret": false
6060
},
61+
{
62+
"name": "MDB_MCP_DRY_RUN",
63+
"description": "When true, runs the server in dry mode: dumps configuration and enabled tools, then exits without starting the server.",
64+
"isRequired": false,
65+
"format": "boolean",
66+
"isSecret": false
67+
},
6168
{
6269
"name": "MDB_MCP_EMBEDDINGS_VALIDATION",
6370
"description": "When set to false, disables validation of embeddings dimensions.",
@@ -222,6 +229,13 @@
222229
"description": "Comma separated values of tool names, operation types, and/or categories of tools that will be disabled.",
223230
"isRequired": false
224231
},
232+
{
233+
"type": "named",
234+
"name": "--dryRun",
235+
"description": "When true, runs the server in dry mode: dumps configuration and enabled tools, then exits without starting the server.",
236+
"isRequired": false,
237+
"format": "boolean"
238+
},
225239
{
226240
"type": "named",
227241
"name": "--embeddingsValidation",
@@ -339,7 +353,7 @@
339353
},
340354
{
341355
"registryType": "oci",
342-
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.2.0",
356+
"identifier": "docker.io/mongodb/mongodb-mcp-server:1.3.0-pre.1",
343357
"transport": {
344358
"type": "stdio"
345359
},
@@ -386,6 +400,13 @@
386400
"format": "string",
387401
"isSecret": false
388402
},
403+
{
404+
"name": "MDB_MCP_DRY_RUN",
405+
"description": "When true, runs the server in dry mode: dumps configuration and enabled tools, then exits without starting the server.",
406+
"isRequired": false,
407+
"format": "boolean",
408+
"isSecret": false
409+
},
389410
{
390411
"name": "MDB_MCP_EMBEDDINGS_VALIDATION",
391412
"description": "When set to false, disables validation of embeddings dimensions.",
@@ -550,6 +571,13 @@
550571
"description": "Comma separated values of tool names, operation types, and/or categories of tools that will be disabled.",
551572
"isRequired": false
552573
},
574+
{
575+
"type": "named",
576+
"name": "--dryRun",
577+
"description": "When true, runs the server in dry mode: dumps configuration and enabled tools, then exits without starting the server.",
578+
"isRequired": false,
579+
"format": "boolean"
580+
},
553581
{
554582
"type": "named",
555583
"name": "--embeddingsValidation",

src/common/packageInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file was generated by scripts/updatePackageVersion.ts - Do not edit it manually.
22
export const packageInfo = {
3-
version: "1.2.0",
3+
version: "1.3.0-pre.1",
44
mcpServerName: "MongoDB MCP Server",
55
};

0 commit comments

Comments
 (0)