From 9c03aa67487a5b0b1aa190cc63977ccf517dc1eb Mon Sep 17 00:00:00 2001 From: "mongodb-devtools-bot[bot]" <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 11:03:38 +0000 Subject: [PATCH] chore: release v1.3.0-pre.2 --- README.md | 2 +- package.json | 2 +- server.json | 14 +++++++------- src/common/packageInfo.ts | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fbf5660f..b241dfa4 100644 --- a/README.md +++ b/README.md @@ -359,7 +359,7 @@ The MongoDB MCP Server can be configured using multiple methods, with the follow | `exportTimeoutMs` | `MDB_MCP_EXPORT_TIMEOUT_MS` | `300000` | Time in milliseconds after which an export is considered expired and eligible for cleanup. | | `exportsPath` | `MDB_MCP_EXPORTS_PATH` | see below\* | Folder to store exported data files. | | `httpHost` | `MDB_MCP_HTTP_HOST` | `"127.0.0.1"` | Host address to bind the HTTP server to (only used when transport is 'http'). | -| `httpPort` | `MDB_MCP_HTTP_PORT` | `3000` | Port number for the HTTP server (only used when transport is 'http'). | +| `httpPort` | `MDB_MCP_HTTP_PORT` | `3000` | Port number for the HTTP server (only used when transport is 'http'). Use 0 for a random port. | | `idleTimeoutMs` | `MDB_MCP_IDLE_TIMEOUT_MS` | `600000` | Idle timeout for a client to disconnect (only applies to http transport). | | `indexCheck` | `MDB_MCP_INDEX_CHECK` | `false` | When set to true, enforces that query operations must use an index, rejecting queries that perform a collection scan. | | `logPath` | `MDB_MCP_LOG_PATH` | see below\* | Folder to store logs. | diff --git a/package.json b/package.json index 6fef5e0c..51505c7f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mongodb-mcp-server", "description": "MongoDB Model Context Protocol Server", - "version": "1.3.0-pre.1", + "version": "1.3.0-pre.2", "type": "module", "packageManager": "pnpm@10.23.0", "mcpName": "io.github.mongodb-js/mongodb-mcp-server", diff --git a/server.json b/server.json index 83756058..810e7658 100644 --- a/server.json +++ b/server.json @@ -6,12 +6,12 @@ "url": "https://github.com/mongodb-js/mongodb-mcp-server", "source": "github" }, - "version": "1.3.0-pre.1", + "version": "1.3.0-pre.2", "packages": [ { "registryType": "npm", "identifier": "mongodb-mcp-server", - "version": "1.3.0-pre.1", + "version": "1.3.0-pre.2", "transport": { "type": "stdio" }, @@ -109,7 +109,7 @@ }, { "name": "MDB_MCP_HTTP_PORT", - "description": "Port number for the HTTP server (only used when transport is 'http').", + "description": "Port number for the HTTP server (only used when transport is 'http'). Use 0 for a random port.", "isRequired": false, "format": "string", "isSecret": false @@ -283,7 +283,7 @@ { "type": "named", "name": "--httpPort", - "description": "Port number for the HTTP server (only used when transport is 'http').", + "description": "Port number for the HTTP server (only used when transport is 'http'). Use 0 for a random port.", "isRequired": false }, { @@ -366,7 +366,7 @@ }, { "registryType": "oci", - "identifier": "docker.io/mongodb/mongodb-mcp-server:1.3.0-pre.1", + "identifier": "docker.io/mongodb/mongodb-mcp-server:1.3.0-pre.2", "transport": { "type": "stdio" }, @@ -464,7 +464,7 @@ }, { "name": "MDB_MCP_HTTP_PORT", - "description": "Port number for the HTTP server (only used when transport is 'http').", + "description": "Port number for the HTTP server (only used when transport is 'http'). Use 0 for a random port.", "isRequired": false, "format": "string", "isSecret": false @@ -638,7 +638,7 @@ { "type": "named", "name": "--httpPort", - "description": "Port number for the HTTP server (only used when transport is 'http').", + "description": "Port number for the HTTP server (only used when transport is 'http'). Use 0 for a random port.", "isRequired": false }, { diff --git a/src/common/packageInfo.ts b/src/common/packageInfo.ts index 1750924c..06829a1d 100644 --- a/src/common/packageInfo.ts +++ b/src/common/packageInfo.ts @@ -1,5 +1,5 @@ // This file was generated by scripts/updatePackageVersion.ts - Do not edit it manually. export const packageInfo = { - version: "1.3.0-pre.1", + version: "1.3.0-pre.2", mcpServerName: "MongoDB MCP Server", };