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

@baekho-lim/mcp-naver-commerce

v1.0.0

Published

MCP Server for Naver Commerce API - Search Discussions, Wiki, Releases from GitHub

Readme

mcp-naver-commerce

MCP Server for Naver Commerce API - AI-powered developer assistant for Korean e-commerce

npm version License: MIT Node.js

What is this?

네이버 스마트스토어 개발 시 자주 찾는 정보를 Claude Code에서 바로 검색할 수 있는 MCP(Model Context Protocol) Server입니다.

This MCP server helps developers working with Naver Commerce API by providing instant access to:

  • GitHub Discussions Q&A - 인증 에러, API 사용법 등 개발 질문과 답변
  • Wiki Guide Documents - 그룹상품 연동, 주문 상태 흐름도 등 구현 가이드
  • Release Notes - API 변경 공지 및 업데이트 정보

Features

| Tool | Description | |------|-------------| | search_discussions | Q&A 검색 (키워드, 카테고리 필터) | | get_discussion_detail | 특정 Discussion 상세 조회 | | get_wiki_pages | Wiki 문서 목록/내용 조회 | | get_releases | 최신 API 변경 공지 조회 |

Category Filters

| Category | Slug | |----------|------| | 상품관리 | product | | 주문처리 | order-process | | 주문수집 | order-collect | | API호출 | api-call | | FAQ | faq |

Installation

Option 1: npx (Recommended)

Add to your ~/.mcp.json:

{
  "mcpServers": {
    "naver-commerce": {
      "command": "npx",
      "args": ["-y", "@baekho-lim/mcp-naver-commerce"]
    }
  }
}

Option 2: Global Install

npm install -g @baekho-lim/mcp-naver-commerce

Then add to ~/.mcp.json:

{
  "mcpServers": {
    "naver-commerce": {
      "command": "mcp-naver-commerce"
    }
  }
}

Option 3: Build from Source

git clone https://github.com/baekho-lim/mcp-naver-commerce.git
cd mcp-naver-commerce
npm install
npm run build

Then add to ~/.mcp.json:

{
  "mcpServers": {
    "naver-commerce": {
      "command": "node",
      "args": ["/path/to/mcp-naver-commerce/dist/index.js"]
    }
  }
}

Usage

After restarting Claude Code, ask questions in natural language:

"네이버 API 401 인증 에러 해결법 알려줘"
→ search_discussions("401 인증", "api-call")

"주문 상태 변경 흐름도 보여줘"
→ get_wiki_pages("주문-상태-변경-흐름도")

"최근 API 변경사항 알려줘"
→ get_releases(5)

"Discussion #123 상세 내용 보여줘"
→ get_discussion_detail(123)

Tool Details

search_discussions

Q&A 검색

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | Yes | 검색어 (예: "401 인증", "주문 상태") | | category | string | No | 카테고리 필터 | | limit | number | No | 결과 개수 (기본 10, 최대 20) |

get_discussion_detail

특정 Discussion 상세 조회

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | number | number | Yes | Discussion 번호 |

get_wiki_pages

Wiki 문서 조회

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | page | string | No | 페이지 이름 (생략 시 목록 반환) |

get_releases

API 변경 공지 조회

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | limit | number | No | 조회 개수 (기본 5, 최대 20) |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | GITHUB_TOKEN | No | GitHub Personal Access Token (Rate Limit 증가용) |

Without a token, you're limited to 60 requests/hour. With a token, the limit increases to 5,000 requests/hour.

Related Links

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT License - see the LICENSE file for details.


Author

Baekho Lim — AI Engineer & E-commerce Consultant

Building AI-powered tools for Korean e-commerce ecosystem.