Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
14 changes: 7 additions & 7 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
},
{
Expand Down Expand Up @@ -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"
},
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/packageInfo.ts
Original file line number Diff line number Diff line change
@@ -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",
};