npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-douzone

v1.2.10

Published

MCP server for 더존비즈온 cafeteria menus (강촌/을지) and bread info

Readme

mcp-douzone

더존비즈온(강촌/을지) 구내식당 메뉴 및 빵 정보를 제공하는 MCP 서버입니다.

⚠️ 요구사항

Node.js 18 이상이 필수입니다.

이것이 설치의 가장 기본적인 요구사항입니다. 설치 전에 먼저 확인하세요.

node --version  # v18.0.0 이상인지 확인

제공 도구

| 도구 | 설명 | |------|------| | get_today_all | 오늘의 식당 메뉴와 빵 정보를 한 번에 조회 | | get_menu | 특정 날짜의 식당 메뉴 조회 (강촌/을지 선택 가능) | | get_week_menu | 이번 주 전체 메뉴 조회 | | get_bread | 당일 빵 정보 조회 |


설치 가이드

GenaIDEWS

macOS

~/.genaidews/mcp.json 파일에 추가합니다. 파일이 없으면 새로 생성합니다.

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

Windows

C:\Users\{user}\.genaidews\mcp.json 파일에 추가합니다. 파일이 없으면 새로 생성합니다. ({user}는 Windows 사용자 이름으로 변경하세요)

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

GenaIDEWS를 재시작하면 적용됩니다.


Claude Code

방법 1 — CLI로 추가

macOS:

claude mcp add mcp-douzone npx -y mcp-douzone

Windows:

claude mcp add mcp-douzone -- npx -y mcp-douzone

방법 2 — 설정 파일 직접 편집

macOS: ~/.claude/settings.json (전역) 또는 .claude/settings.json (프로젝트)에 추가:

Windows: %APPDATA%\Claude\settings.json (전역) 또는 .claude\settings.json (프로젝트)에 추가:

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

추가 후 Claude Code를 재시작하면 적용됩니다.


Gemini CLI

macOS

~/.gemini/settings.json 파일에 추가합니다. 파일이 없으면 새로 생성합니다.

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

Windows

%APPDATA%\Gemini\settings.json 파일에 추가합니다. 파일이 없으면 새로 생성합니다.

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

Gemini CLI를 재시작하면 적용됩니다.


Codex (OpenAI Codex CLI)

macOS

~/.codex/config.yaml 파일에 추가합니다. 파일이 없으면 새로 생성합니다.

mcpServers:
  mcp-douzone:
    command: npx
    args:
      - "-y"
      - mcp-douzone

또는 JSON 형식을 선호하는 경우 ~/.codex/config.json:

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

Windows

%APPDATA%\Codex\config.yaml 파일에 추가합니다. 파일이 없으면 새로 생성합니다.

mcpServers:
  mcp-douzone:
    command: npx
    args:
      - "-y"
      - mcp-douzone

또는 JSON 형식을 선호하는 경우 %APPDATA%\Codex\config.json:

{
  "mcpServers": {
    "mcp-douzone": {
      "command": "npx",
      "args": ["-y", "mcp-douzone"]
    }
  }
}

Codex CLI를 재시작하면 적용됩니다.


사용 예시

설정 완료 후 AI에게 자연어로 요청할 수 있습니다:

  • "오늘 구내식당 메뉴 알려줘"
  • "이번 주 강촌 식당 메뉴 뭐야?"
  • "오늘 빵 뭐 나왔어?"
  • "내일 을지 점심 메뉴 알려줘"

로컬 실행

# 의존성 설치
npm install

# 개발 모드 실행
npm run dev

# 빌드
npm run build