Cover image
Try Now
2025-03-30

MongoDB MCP服务器를를

3 years

Works with Finder

1

Github Watches

0

Github Forks

0

Github Stars

MongoDB MCP Server

MongoDB 데이터베이스를 위한 Model Context Protocol (MCP) 서버입니다. 이 서버는 MongoDB 데이터베이스의 구조를 분석하고, AI를 활용하여 쿼리를 생성하는 기능을 제공합니다.

기능

1. ERD 생성 (generateErd)

데이터베이스의 컬렉션 구조를 분석하여 ERD(Entity Relationship Diagram)를 생성합니다.

  • 입력 파라미터:

    {
      "database": "string",
      "collections": ["string"],  // 선택적
      "format": "mermaid" | "json"  // 기본값: "mermaid"
    }
    
  • 사용 예시:

    {
      "database": "test",
      "format": "mermaid"
    }
    

2. 쿼리 생성 (generateQuery)

자연어 설명을 기반으로 MongoDB 쿼리를 생성합니다. 데이터베이스의 실제 구조를 분석하여 정확한 쿼리를 생성합니다.

  • 입력 파라미터:

    {
      "database": "string",
      "collection": "string",
      "description": "string",
      "type": "mongodb" | "mongoose",  // 기본값: "mongodb"
      "includeExplanation": boolean  // 기본값: true
    }
    
  • 사용 예시:

    {
      "database": "test",
      "collection": "users",
      "description": "오늘 가입한 사용자 찾기",
      "type": "mongodb"
    }
    

설치 및 실행

  1. 의존성 설치:

    npm install
    
  2. 빌드:

    npm run build
    
  3. 서버 실행:

    node dist/index.js "mongodb://localhost:27017"
    

Claude Desktop 설정

macOS에서 Claude Desktop과 함께 사용하려면 다음과 같이 설정하세요:

  1. 설정 파일 위치: ~/Library/Application Support/Claude/claude_desktop_config.json

  2. MCP 서버 설정 추가:

    {
      "mcp": {
        "servers": [
          {
            "name": "mongodb",
            "command": "node /path/to/mongo-mcp-server/dist/index.js mongodb://localhost:27017/test"
          }
        ]
      }
    }
    
  3. Claude Desktop 재시작

개발

프로젝트 구조

src/
├── index.ts          # 메인 서버 코드
├── tools/
│   ├── generateErd.ts    # ERD 생성 도구
│   └── generateQuery.ts  # 쿼리 생성 도구

새로운 도구 추가

  1. src/tools 디렉토리에 새 도구 파일 생성
  2. 도구 인터페이스 구현:
    export const newTool = {
      parameters: {
        // 파라미터 정의
      },
      async execute(params: any, context: { client: MongoClient }) {
        // 도구 로직 구현
      },
    };
    
  3. src/index.ts에 도구 등록

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Lists Tailwind CSS classes in monospaced font

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://appia.in
  • Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease

  • Daren White
  • A supportive coach for mastering all Spanish tenses.

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • J. DE HARO OLLE
  • Especialista en juegos de palabras en varios idiomas.

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • HiveNexus
  • 一个适用于中小型团队的AI聊天机器人,支持DeepSeek,Open AI,Claude和Gemini等车型。 专为中小团队设计的ai聊天应用,支持deepSeek,打开ai,claude,双子座等模型。

  • ravitemer
  • 一个功能强大的Neovim插件,用于管理MCP(模型上下文协议)服务器

  • patruff
  • Ollama和MCP服务器之间的桥梁,使本地LLMS可以使用模型上下文协议工具

    Reviews

    2 (1)
    Avatar
    user_Xjn15Iyj
    2025-04-16

    I've been a loyal user of mongo_mcp_server by seeun0210 and I'm thrilled with its performance! This server solution offers seamless integration and efficient handling of MongoDB operations. The repository on GitHub is well-documented, making it easy to get started and deploy. Highly recommended for anyone looking to enhance their MongoDB management experience. The welcoming interface adds to a smooth onboarding process, further showcasing the thoughtfulness in its design.