mcpbeat Sign in

Mongodb MCP Server

by mongodb-js Your server? Claim it
local only

Mongodb MCP Server runs on your own machine — the client starts it, so there is no endpoint to ping. 82 973 installs a week from npm. Last commit 17 Sep 2026.

MongoDB Model Context Protocol Server

Installs per day peak 24 963 · avg 10 271 · -17% w/w
a month agotoday
82 973
Installs / week
npm · mongodb-mcp-server
1131
Stars
8 open issues
17 Sep 2026
Last commit
0 releases in 90 days
Apache-2.0
License
TypeScript

What the code does

We read the source, 18 h ago · rules 3dff92dd89df

Capabilities

What this server is able to do. For an MCP server this is often the job itself — a terminal server runs commands because that is what it is for. Listed so you know what you are plugging in, not as an accusation.

Checks whether it runs in a sandbox packages/atlas-telemetry/src/containerEnv.ts:20
            ["/.dockerenv", "/run/.containerenv", "/var/run/.containerenv"].map(async (file) => {
            const exportFilePath = path.join(this.options.exportsDirectoryPath, exportNameWithExtension);
            execFileSync(binary, ["--version"], { timeout: 30_000, stdio: "ignore" });
Dumps the whole environment packages/test-utils/src/testUtils.ts:17
            for (const key of Object.keys(process.env)) {

Is this your server and something here is wrong? Tell us — corrections are free and do not require a plan.

This code can reach further than it looks

We found places where it runs commands, builds paths or queries from values it is given. None of that is a flaw by itself — it becomes one when the code changes, and code changes quietly between releases. We re-read it on every one.

Three servers free · no card

Connect this server

This server runs on your own machine — install it with the package manager and the client starts it for you. Package name taken from the official registry entry.

run in your terminal
claude mcp add mongodb-mcp-server -- npx -y mongodb-mcp-server
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mongodb-mcp-server": {
      "args": [
        "-y",
        "mongodb-mcp-server"
      ],
      "command": "npx"
    }
  }
}
~/.codex/config.toml
[mcp_servers.mongodb-mcp-server]
command = "npx"
args = ["-y", "mongodb-mcp-server"]
.cursor/mcp.json
{
  "mcpServers": {
    "mongodb-mcp-server": {
      "args": [
        "-y",
        "mongodb-mcp-server"
      ],
      "command": "npx"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "mongodb-mcp-server": {
      "args": [
        "-y",
        "mongodb-mcp-server"
      ],
      "command": "npx"
    }
  }
}

This one needs environment variables set before it will start: MDB_MCP_ALLOW_REQUEST_OVERRIDES (When set to true, allows configuration values to be overridden via request headers and query parameters.), MDB_MCP_API_CLIENT_ID (Atlas API client ID for authentication. Required for running Atlas tools.), MDB_MCP_API_CLIENT_SECRET (Atlas API client secret for authentication. Required for running Atlas tools.), MDB_MCP_ASSISTANT_BASE_URL (Base URL for the MongoDB Assistant API.), MDB_MCP_ATLAS_TEMPORARY_DATABASE_USER_LIFETIME_MS (Time in milliseconds that temporary database users created when connecting to MongoDB Atlas clusters will remain active before being automatically deleted.), MDB_MCP_CONFIRMATION_REQUIRED_TOOLS (Comma separated values of tool names that require user confirmation before execution. Requires the client to support elicitation.), MDB_MCP_CONNECTION_SCOPE (Visibility scope for MongoDB connections created at runtime. With 'session' (the default), each MCP session only sees the connections it created (plus the shared 'preconfigured' one) and they are closed when the session ends — recommended when the HTTP transport is exposed to multiple clients without authentication. With 'global', connections are shared across all sessions and survive session rotation.), MDB_MCP_CONNECTION_STRING (MongoDB connection string for direct database connections. Optional, if not set, you'll need to call the connect tool before interacting with MongoDB data.), MDB_MCP_DISABLE_SERVER_SIDE_JS (When set to true, disallows the use of server-side JavaScript operators (such as $where, $function, and $accumulator) in query filters and aggregation pipelines.), MDB_MCP_DISABLED_TOOLS (Comma separated values of tool names, operation types, and/or categories of tools that will be disabled.), MDB_MCP_DRY_RUN (When true, runs the server in dry mode: dumps configuration and enabled tools, then exits without starting the server.), MDB_MCP_ELICITATION_TIMEOUT_MS (Time in milliseconds the user has to respond to an elicitation request (such as a tool confirmation prompt) before it fails.), MDB_MCP_EXPORT_CLEANUP_INTERVAL_MS (Time in milliseconds between export cleanup cycles that remove expired export files.), MDB_MCP_EXPORT_TIMEOUT_MS (Time in milliseconds after which an export is considered expired and eligible for cleanup.), MDB_MCP_EXPORTS_PATH (Folder to store exported data files.), MDB_MCP_EXTERNALLY_MANAGED_SESSIONS (When true, the HTTP transport allows requests with a session ID supplied externally through the 'mcp-session-id' header. When an external ID is supplied, the initialization request is optional.), MDB_MCP_HEALTH_CHECK_HOST (Deprecated. Use `monitoringServerHost` instead. Host address to bind the healthCheck HTTP server to (only used when transport is 'http'). If provided, `healthCheckPort` must also be set.), MDB_MCP_HEALTH_CHECK_PORT (Deprecated. Use `monitoringServerPort` instead. Port number for the healthCheck HTTP server (only used when transport is 'http'). If provided, `healthCheckHost` must also be set.), MDB_MCP_HTTP_BODY_LIMIT (Maximum size of the HTTP request body in bytes (only used when transport is 'http'). This value is passed as the optional limit parameter to the Express.js json() middleware.), MDB_MCP_HTTP_HEADERS (Header that the HTTP server will validate when making requests (only used when transport is 'http').), MDB_MCP_HTTP_HOST (Host address to bind the HTTP server to (only used when transport is 'http').), MDB_MCP_HTTP_PORT (Port number for the HTTP server (only used when transport is 'http'). Use 0 for a random port.), MDB_MCP_HTTP_RESPONSE_TYPE (The HTTP response type for tool responses: 'sse' for Server-Sent Events, 'json' for standard JSON responses.), MDB_MCP_IDLE_TIMEOUT_MS (Idle timeout for a client to disconnect (only applies to http transport).), MDB_MCP_INDEX_CHECK (When set to true, enforces that query operations must use an index, rejecting queries that perform a collection scan.), MDB_MCP_LOG_PATH (Folder to store logs.), MDB_MCP_LOGGERS (Comma separated values of logger types.), MDB_MCP_MAX_ACTIVE_CONNECTIONS (Maximum number of MongoDB connections a single scope (an MCP session by default, see connectionScope) can hold open. When exceeded, the scope's least-recently-used connection is closed and its connectionId revoked. The preconfigured connection does not count towards the limit.), MDB_MCP_MAX_BYTES_PER_QUERY (The maximum size in bytes for results from a find or aggregate tool call. This serves as an upper bound for the responseBytesLimit parameter in those tools.), MDB_MCP_MAX_DOCUMENTS_PER_QUERY (The maximum number of documents that can be returned by a find or aggregate tool call. For the find tool, the effective limit will be the smaller of this value and the tool's limit parameter.), MDB_MCP_MAX_SESSIONS (Maximum number of concurrent sessions the HTTP transport will hold in memory (only used when transport is 'http'). Each session holds a full server instance, transport, and timers, so choose a value based on your deployment's available memory; the default is a conservative safety net rather than a recommended production value.), MDB_MCP_MAX_TIME_M_S (The maximum time in milliseconds that operations are allowed to run on the MongoDB server. When set, this value is passed as the maxTimeMS option to read operations such as find, aggregate, and count.), MDB_MCP_MCP_CLIENT_LOG_LEVEL (Minimum severity level for log messages forwarded to the MCP client.), MDB_MCP_MONITORING_SERVER_FEATURES (Features to expose on the monitoring server (only used when transport is 'http' and monitoringServerHost/monitoringServerPort are set).), MDB_MCP_MONITORING_SERVER_HOST (Host address to bind the monitoring HTTP server to (only used when transport is 'http'). If provided, `monitoringServerPort` must also be set.), MDB_MCP_MONITORING_SERVER_PORT (Port number for the monitoring HTTP server (only used when transport is 'http'). If provided, `monitoringServerHost` must also be set.), MDB_MCP_NOTIFICATION_TIMEOUT_MS (Notification timeout for a client to be aware of disconnect (only applies to http transport).), MDB_MCP_PREVIEW_FEATURES (Comma separated values of preview features that are enabled.), MDB_MCP_READ_ONLY (When set to true, only allows read, connect, and metadata operation types, disabling create/update/delete operations.), MDB_MCP_TELEMETRY (When set to disabled, disables telemetry collection.), MDB_MCP_TRANSPORT (Either 'stdio' or 'http'.), MDB_MCP_VOYAGE_API_KEY (API key for Voyage AI embeddings service (required for creating Atlas Local deployments with auto-embed vector search capabilities).). The author declared them in the registry entry; get the values from the project itself.

Alternatives to Mongodb MCP Server

same job, measured the same way
Tokenlite Mysql MCP
by andezdev

A secure, efficient, and intelligent MySQL server for the Model Context Protocol

41 installs/wk local only
I
Bollard MCP
by imdeepaksingh

An AI-powered, safe database access gateway built on the Model Context Protocol (MCP).

121 installs/wk local only
Mosta Net
by apolocine

1 MCP server, 13 databases, zero config. Multi-protocol transport with Auth + RBAC.

203 installs/wk local only
datamcp — Hosted Model Context Protocol for Databases, APIs, and Agent Memory
by mironovisa

PostgreSQL, MySQL, OpenAPI/Swagger, and shared Agent Memory with scoped access.

answering
SQL Server
by hlgurgel

Servidor MCP para SQL Server com controle de permissões e modo somente-leitura

local only
MCP DB Connect
by phatngoit

MCP server for Oracle, MSSQL, PostgreSQL, MySQL, SQLite, MongoDB, and Qdrant vector search access.

61 installs/wk local only
Colabfit MCP
by colabfit

An MCP server that provides access to the ColabFit database

81 installs/wk local only
Florentine AI
by florentine-ai

MCP server for Florentine.ai - Natural language to MongoDB aggregations

4 409 installs/wk local only

Mongodb MCP Server — questions

Answers built from our own checks of this server.

Why is there no uptime for Mongodb MCP Server?
Mongodb MCP Server runs on your own machine over stdio — there is no network address to reach, so uptime cannot be measured for it by anyone. What can be measured is adoption: the npm package mongodb-mcp-server was installed 82 973 times last week.
How do I connect Mongodb MCP Server?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It runs locally, so the command pulls mongodb-mcp-server straight from npm; nothing to host, nothing to sign up for.
How many people use Mongodb MCP Server?
The npm package mongodb-mcp-server was installed 82 973 times in the last week. Week over week that is -17%. We show installs rather than GitHub stars on purpose: a star is a bookmark, an install is someone actually running it.
Is Mongodb MCP Server open source?
Yes — it is published under the Apache-2.0 licence, written in TypeScript, 1 131 stars on GitHub and 8 open issues. The source link is on this page, so you can read exactly what it does with your data before you connect it.