MongoDB MCP Server

MongoDB MCP Server

Enables interaction with MongoDB databases through user management tools including creating, retrieving, and listing users with pagination support.

Category
访问服务器

README

MongoDB MCP Server

A robust Model Context Protocol (MCP) server that provides tools and prompts for interacting with a MongoDB database. Built with Node.js and MongoDB, featuring graceful shutdown handling and comprehensive error management.

Features

  • MongoDB integration using Mongoose
  • User management tools:
    • create-user: Create a new user
    • get-user: Retrieve user by email
    • list-users: List all users with pagination
  • Interactive prompts for guided operations
  • Graceful shutdown handling
  • Comprehensive error management
  • Clean single-file implementation

Prerequisites

  • Node.js (Latest LTS version)
  • MongoDB (v8.0 or higher)
  • Claude for Desktop (latest version)
  • Visual Studio Code with Cursor extension (for development)

Development Setup

  1. Install MongoDB:

    # Using Homebrew on macOS
    brew tap mongodb/brew
    brew install mongodb-community
    
    # Start MongoDB service
    brew services start mongodb-community
    
  2. Install Cursor in VS Code:

    • Open VS Code
    • Go to Extensions (Ctrl+Shift+X)
    • Search for "Cursor"
    • Click Install
  3. Clone and Setup:

    git clone <repository-url>
    cd learn-mcp-mongo
    npm install
    
  4. Configure Environment:

    cp .env.example .env
    # Edit .env with your MongoDB URI if different from default
    

Quick Start

  1. Clone or download this repository

  2. Install dependencies:

    npm install
    
  3. Configure MongoDB:

    • Make sure MongoDB is running locally (default: mongodb://localhost:27017)
    • Or update the .env file with your MongoDB connection string:
      MONGODB_URI=your_mongodb_connection_string
      
  4. Configure Claude for Desktop:

    • Open or create ~/Library/Application Support/Claude/claude_desktop_config.json
    • Add the following configuration:
      {
        "mcpServers": {
          "mcp-mongo": {
            "command": "node",
            "args": ["/absolute/path/to/server.js"]
          }
        }
      }
      
  5. Start Claude for Desktop

    • The MCP server will start automatically
    • Look for the "Search and tools" icon to access the tools

Using Cursor with MCP Server

  1. Install Cursor (AI Code Editor):

  2. Add MCP Server to Cursor:

    • Open Cursor
    • Go to Settings > Integrations > MCP Servers
    • Click Add MCP Server
    • Fill in:
      • Name: mcp-mongo
      • Command: node
      • Arguments: /absolute/path/to/server.js
      • Working Directory: /absolute/path/to/learn-mcp-mongo
    • Save and enable the integration
  3. Use Cursor's AI Features:

    • Open your project folder in Cursor
    • Use /help in the command palette for available AI commands
    • Use /edit, /fix, /doc, and other AI features to interact with your code and MCP tools
    • You can now test, debug, and develop your MCP server directly in Cursor with AI assistance

Usage Examples

Creating a User

Create a new user with:
- name: "John Doe"
- email: "john@example.com"
- age: 30

Finding a User

Get user information for email: john@example.com

Project Structure

learn-mcp-mongo/
├── server.js     # Main server file with all functionality
├── .env          # Environment variables
└── package.json  # Project dependencies and scripts

Available Tools

create-user

Creates a new user in the database.

  • Parameters:
    • name: User's full name (string, required)
    • email: User's email address (string, required, unique)
    • age: User's age (number, required)
  • Response:
    {
      "_id": "user_id",
      "name": "John Doe",
      "email": "john@example.com",
      "age": 30,
      "createdAt": "2025-06-26T00:00:00.000Z"
    }
    

get-user

Retrieves a user by their email address.

  • Parameters:
    • email: User's email address (string, required)
  • Response:
    {
      "_id": "user_id",
      "name": "John Doe",
      "email": "john@example.com",
      "age": 30,
      "createdAt": "2025-06-26T00:00:00.000Z"
    }
    

list-users

Lists all users in the database with pagination.

  • Parameters:
    • limit: Maximum number of users to return (number, optional, default: 10)
  • Response:
    [
      {
        "_id": "user_id",
        "name": "John Doe",
        "email": "john@example.com",
        "age": 30,
        "createdAt": "2025-06-26T00:00:00.000Z"
      },
      // ... more users
    ]
    

Available Prompts

create-new-user

An interactive prompt that guides you through the process of creating a new user by asking for:

  1. Full Name
  2. Email Address
  3. Age

Development Guide

Running the Server

  1. Start in Development Mode:

    # Run with inspector for debugging
    npx @modelcontextprotocol/inspector node mcp-server.js
    
    # Or run directly
    npm start
    
  2. Using Cursor in VS Code:

    • Open the project in VS Code
    • Use Cursor's AI features:
      • Type /help for Cursor commands
      • Use /edit for code suggestions
      • Use /doc to generate documentation
      • Use /fix to get error fixes

Debugging

  1. Check Server Logs:

    # Watch server logs in real-time
    tail -f ~/Library/Logs/Claude/mcp*.log
    
  2. MongoDB Operations:

    # Check MongoDB status
    mongosh
    use mcp-mongo
    db.users.find()  # List all users
    
  3. Test Tools Manually:

    # Using curl to test tools (when running in HTTP mode)
    curl -X POST http://localhost:3000/tools/list-users
    

Server Features

  1. Graceful Shutdown:

    • Handles SIGINT, SIGTERM, SIGHUP signals
    • Closes MongoDB connections properly
    • Logs shutdown process
  2. Error Handling:

    • MongoDB connection errors
    • Tool execution errors
    • Uncaught exceptions
    • Unhandled rejections
  3. Performance Options:

    • MongoDB connection timeout: 5s
    • Heartbeat frequency: 2s
    • User listing pagination

Troubleshooting

  1. Make sure MongoDB is running and accessible
  2. Check Claude for Desktop logs at ~/Library/Logs/Claude/mcp*.log
  3. Verify the server.js path in claude_desktop_config.json is correct
  4. Restart Claude for Desktop after configuration changes

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选