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 🙏

© 2025 – Pkg Stats / Ryan Hefner

naver-shopping-search-mcp

v0.0.2

Published

Naver Shopping Search MCP

Readme

naver-shopping-search-mcp

이 프로젝트는 네이버 쇼핑 검색 API를 Model Context Protocol(MCP) 인터페이스로 제공하는 서버입니다.

기능

쇼핑 검색

  • 네이버 쇼핑 검색 API의 키워드 기반 상품 검색 기능 제공
  • 다양한 정렬 옵션 지원 (정확도순, 날짜순, 가격 오름차순/내림차순)
  • 네이버페이 상품 필터링 지원
  • 상품 유형 제외 기능 (중고, 렌탈, 해외직구/구매대행)
  • 페이지네이션 지원 (최대 1000개)
  • 한 번에 표시할 결과 개수 조절 (최대 100개)

설치

npm을 통한 설치

npm install -g naver-shopping-search-mcp-server

소스코드로 설치

# 저장소 클론
git clone https://github.com/your-username/naver-shopping-search-mcp.git
cd naver-shopping-search-mcp

# 의존성 설치 및 빌드
npm install
npm run build

개발 환경 설정

환경 변수 설정

.env 파일을 생성하고 다음 내용을 추가합니다:

# .env.example 파일을 복사하여 .env 파일 생성
cp .env.example .env

# .env 파일을 열고 다음 내용을 수정
NAVER_CLIENT_ID=your_naver_client_id_here
NAVER_CLIENT_SECRET=your_naver_client_secret_here

개발 서버 실행

# 개발 모드로 실행
npm run dev

# 빌드
npm run build

# 실행
npm start

API 사용 방법

쇼핑 검색 파라미터

{
  query: string;              // 검색을 원하는 질의어 (UTF-8 인코딩 필요)
  display?: number;           // 한 번에 표시할 검색 결과 개수 (기본값: 10, 최대: 100)
  start?: number;             // 검색 시작 위치 (기본값: 1, 최대: 1000)
  sort?: 'sim' | 'date' | 'asc' | 'dsc';  // 정렬 옵션 (sim: 정확도순, date: 날짜순, asc: 가격↑, dsc: 가격↓)
  filter?: 'naverpay';        // 네이버페이 상품만 표시
  exclude?: string;           // 제외할 상품 유형 (예: 'used:rental:cbshop')
}

MCP 서버 설정

MCP 서버 실행

npx -y naver-shopping-search-mcp-server

MCP 설정 예시

{
  "naver-shopping-search": {
    "command": "npx",
    "args": [
      "-y",
      "naver-shopping-search-mcp"
    ],
    "env": {
      "NAVER_CLIENT_ID": "your_naver_client_id_here",
      "NAVER_CLIENT_SECRET": "your_naver_client_secret_here"
    }
  }
}

시스템 요구사항

  • Node.js >= 18.0.0

라이선스

MIT