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

boj-mcp

v1.2.2

Published

Unofficial MCP server for BOJ (solved.ac)

Readme

BOJ-MCP

npm version License: MIT Release to NPM

백준에 있는 문제를 검색하는 기능을 제공하는 비공식 MCP입니다.

BOJ-MCP지만, solved.ac의 비공식 API를 사용합니다.

한창 개발 중입니다.

설치 방법

1) npm 사용 (권장)

컴퓨터에 node.js가 설치되어 있어야 합니다.

Claude Desktop

Windows: %APPDATA%\Claude\claude_desktop_config.json

MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json

해당 위치에 파일이 없으면 생성합니다.

{
  "mcpServers": {
    "boj-mcp": {
      "command": "npx",
      "args": ["-y", "boj-mcp", "--handle=your-handle"]
    }
  }
}

위 내용을 추가하고 Claude Desktop을 종료 후 다시 시작합니다.

정상적으로 설치가 되었다면 위와 같이 표시됩니다.

Claude Code
claude mcp add boj-mcp -- npx -y boj-mcp
# OR
claude mcp add boj-mcp -- npx -y boj-mcp --handle=your-handle
Codex
codex mcp add boj-mcp -- npx -y boj-mcp
# OR
codex mcp add boj-mcp -- npx -y boj-mcp --handle=your-handle
Gemini Cli
gemini mcp add boj-mcp npx -y boj-mcp
# OR
gemini mcp add boj-mcp npx -y boj-mcp --handle=your-handle
Cursor

Ctrl + Shift + P를 누르고 Open MCP Settings를 찾아 들어갑니다. New MCP Server를 클릭하고 다음 내용을 붙여넣습니다.

{
  "mcpServers": {
    "boj-mcp": {
      "command": "npx",
      "args": ["-y", "boj-mcp", "--handle=your-handle"]
    }
  }
}

2) 로컬 빌드 후 실행

git clone https://github.com/csh1668/boj-mcp
cd boj-mcp
pnpm i
pnpm start

그리고 Cursor 설정에 다음처럼 추가합니다.

{
  "mcpServers": {
    "boj-mcp": {
      "command": "node",
      "args": ["dist/index.js"]
    }
  }
}

사용 방법

설치가 완료되면 AI에게 다음과 같이 질문하여 백준 문제를 검색하거나 추천받을 수 있습니다.

1. 문제 검색

  • "골드 5 난이도의 DP 문제 찾아줘"
  • "다익스트라 문제 중 푼 사람이 10명 이하인 문제 찾아줘"

2. 문제 추천

  • "코딩 테스트 준비를 위해 실버 난이도의 구현 문제 5개 추천해줘"
  • "ICPC 예선 대비를 위한 문제 세트 추천해줘"

3. 대회 및 태그 정보

  • "UCPC 2023 대회의 출제 경향을 분석해줘"
  • "비트마스킹 태그가 붙은 문제들은 어떤 게 있어?"