Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🗄️ Databases
  3. Mongo MCP
Mongo MCP logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 1:16:21 AM

Mongo MCP

User RatingsBe the first to rate and review this MCP server!
View Repository175 GitHub StarsTotal stargazers on GitHub for the source repository (175 stars).Visit Website
mongodbdatabasemcpdeveloper-tools

Connects an MCP client to MongoDB for schema inspection, queries, index management, and document changes.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

One-click editor setup isn’t available for this listing yet — we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.

Manual Client & Custom JSON ConfigExpand JSON ▾
No confirmed setup config for this listing yet. We only publish a config block when the install details come from the project itself — its README, its docs, or a verified owner. We haven’t found those for QuantGeekDev/mongo-mcp, and we’d rather show nothing than a guess you’d paste into your client. Follow the project’s own setup instructions for the current steps.
Install Directory Badge Claim listing Alternatives🗄️ More in Databases

Overview

QuantGeekDev/mongo-mcp MCP server lets MCP-compatible clients inspect and modify MongoDB databases through natural-language requests. It exposes collection discovery, schema inspection, document queries, CRUD operations, and index management, using a MongoDB connection URL supplied at launch. The README documents Node.js 18+, npx, and Claude Desktop configuration. Reach for it when an agent needs controlled access to MongoDB collections and indexes.

Use cases

•Inspect MongoDB collections and schemas
•Query documents with filters and projections
•Insert, update, or delete individual documents
•Create, list, or remove collection indexes

Key features

•Collection schema inspection
•Filtered document queries
•Single-document CRUD operations
•Index creation and removal
•Collection and index listing

Capabilities & Tool Schemas

Inspect callable tools, capabilities, and parameters exposed to AI agents by Mongo MCP.

Extracted Tool Capabilities
Collection schema inspection
Filtered document queries
Single-document CRUD operations
Index creation and removal
Collection and index listing

How Mongo MCP works

What QuantGeekDev/mongo-mcp MCP server does

QuantGeekDev/mongo-mcp MCP server connects an MCP client to a MongoDB database and exposes database operations as agent tools. It supports listing collections, inspecting collection schemas, filtering and projecting documents, and performing single-document inserts, updates, and deletions.

The server also covers index administration. An agent can list indexes for a collection, create an index, or remove one. Example tasks include finding users by location, filtering products by price and stock status, updating an order status, and removing matching documents.

How it works

The server receives a MongoDB connection URL as a command-line argument. The URL can include the host, port, database, username, password, and authentication source. MCP clients then expose the server’s tools to a language model, which can translate natural-language requests into MongoDB operations.

The available query and data tools are find, listCollections, insertOne, updateOne, and deleteOne. Index-related tools are createIndex, dropIndex, and indexes. The README describes these operations at the collection and document level; it does not document broader database administration features.

Setup and configuration

QuantGeekDev/mongo-mcp MCP server requires Node.js 18 or newer and npx. A MongoDB connection URL is also required. For Claude Desktop, add an mcpServers entry to the platform’s configuration file and set the command to npx, with mongo-mcp and the connection URL in the arguments.

On macOS, the documented Claude Desktop path is ~/Library/Application Support/Claude/claude_desktop_config.json. On Windows, it is %APPDATA%/Claude/claude_desktop_config.json. The README also shows a local-development configuration that starts dist/index.js with a local MongoDB URL.

A Docker Compose sandbox is available for testing. It can start a local MongoDB instance, after which npm run seed creates sample Users, Products, and Orders collections. Docker and Docker Compose are prerequisites for this sandbox only, not for connecting to an existing MongoDB deployment.

Tools and capabilities

QuantGeekDev/mongo-mcp MCP server provides:

  • Collection listing and schema inspection
  • Filtered document queries with projection support
  • Single-document insertion, updates, and deletion
  • Collection index creation, removal, and listing
  • Natural-language access through an MCP client such as Claude Desktop

Limitations and notes

The provided material documents Claude Desktop configuration but does not confirm compatibility with other named clients. Database credentials are supplied through the MongoDB connection URL, so configuration should protect that value. The examples include destructive actions such as deleting documents and dropping indexes; use appropriate database permissions and review agent-generated operations before applying them.

The README does not specify a read-only mode, transaction support, aggregation tooling, bulk operations, or deployment as a hosted remote service. QuantGeekDev/mongo-mcp MCP server is licensed under MIT and is presented as a Node.js project intended to run locally through an MCP client.

Read the full README →View source on GitHub →

Related MCP Servers

View all in Databases View all alternatives
  • MCP Mysql Server logoMCP Mysql Server

    Node.js-based MySQL database integration that provides secure MySQL database operations

    🗄️ Databases5 views
    Compare vs MCP Mysql Server →
  • MCP Server Mysql logoMCP Server Mysql

    MySQL database integration in NodeJS with configurable access controls and schema inspection

    🗄️ Databases3 views
    Compare vs MCP Server Mysql →
  • Supabase MCP logoSupabase MCP

    Official Supabase MCP server to connect AI assistants directly with your Supabase project and allows them to perform tasks like managing tables, fetching config, and querying data.

    🗄️ Databases5 views
    Compare vs Supabase MCP →
  • Airtable MCP Server logoAirtable MCP Server

    Airtable database integration with schema inspection, read and write capabilities

    🗄️ Databases2 views
    Compare vs Airtable MCP Server →

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks — not a rating.

GitHub stars
175
Stargazers on the source repository.
npm downloads
33k
Package downloads in the last 30 days.
Last commit
1y ago
Most recent push to the default branch.
Directory activity
3 views
Config copies, upvotes, and views on AllMCPs.

Reviews

No reviews yet — be the first to share how this listing worked for you.

Frequently Asked Questions about Mongo MCP

Configure an MCP client such as Claude Desktop to run the server with Node.js 18+ and npx, passing the MongoDB connection URL as an argument. The README also documents installation through Smithery.

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMongo MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/quantgeekdev-mongo-mcp?style=directory)](https://allmcps.com/mcp/quantgeekdev-mongo-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/quantgeekdev-mongo-mcp"><img src="https://allmcps.com/api/badge/quantgeekdev-mongo-mcp?style=directory" alt="Mongo MCP on AllMCPs" /></a>

Technical Specs & Signals

Category🗄️Databases
PricingFree
More technical detailsExpand ▾
AuthOther
LicenseMIT
ClientsClaude Desktop
Last updatedSep 7, 2026
8/9 checks healthy over the last 32d
Views3
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars175
GitHub Star CountTotal stargazers on GitHub representing community popularity (175 stars).
Last commit1y ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Mar 15, 2025
npm downloads33,418/mo
Monthly npm DownloadsAverage monthly package installs recorded from npm registry statistics.
40Quality signal: Fair · 40/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools12/30
Adoption & activity8/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

Supply-chain signal

No high-severity advisories surfaced by our automated scan.

Critical 0High 0Medium 0Low 0

Scanned 19d ago via OSV.dev

★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge — proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it — no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🗄️ Databases →Best MCP servers for Databases →Alternatives to Mongo MCP →Install in Claude DesktopInstall in CursorInstall in VS Code