LogoFindMcp
Logo of mongo-mcp

mongo-mcp

A MongoDB server implementing the Model Context Protocol (MCP), enabling LLMs to interact with MongoDB using natural language.

Introduction

🗄️ MongoDB MCP Server for LLMS

A Model Context Protocol (MCP) server that enables LLMs to interact directly with MongoDB databases. Query collections, inspect schemas, and manage data seamlessly through natural language.

✨ Features
  • 🔍 Collection schema inspection
  • 📊 Document querying and filtering
  • 📈 Index management
  • 📝 Document operations (insert, update, delete)
🚀 Quick Start

To get started, find your mongodb connection url and add this configuration to your Claude Desktop config file:

MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "mongodb": {
      "command": "npx",
      "args": [
        "mongo-mcp",
        "mongodb://<username>:<password>@<host>:<port>/<database>?authSource=admin"
      ]
    }
  }
}
📝 Available Tools

The server provides these tools for database interaction:

Query Tools
  • find: Query documents with filtering and projection
  • listCollections: List available collections
  • insertOne: Insert a single document
  • updateOne: Update a single document
  • deleteOne: Delete a single document
Index Tools
  • createIndex: Create a new index
  • dropIndex: Remove an index
  • indexes: List indexes for a collection
📜 License

This project is licensed under the MIT License

Newsletter

Join the Community

Subscribe to our newsletter for the latest news and updates