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

naver-powerlink-budget-estimator

v0.1.1

Published

MCP server for Naver Powerlink Budget Estimation

Readme

Naver Powerlink Budget Estimator MCP Server

네이버 파워링크 광고의 입찰가와 성과를 예측하는 Model Context Protocol (MCP) 서버입니다.

기능

  • 입찰가 조회: 특정 키워드와 순위에 대한 예상 입찰가를 조회
  • 성과 예측: 키워드와 입찰가로 예상 노출수, 클릭수, 비용을 예측
  • 일괄 처리: 여러 키워드의 PC/모바일 데이터를 한번에 조회

설치 방법

npm에서 설치 (권장)

npm install -g naver-powerlink-budget-estimator

또는 소스코드에서 빌드

git clone https://github.com/pango-gy/Naver-Powerlink-Budget-Estimator.git
cd Naver-Powerlink-Budget-Estimator
npm install
npm run build

Claude Desktop 설정

Claude Desktop의 MCP 설정 파일에 다음을 추가하세요:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

npm 패키지로 설치한 경우 (권장):

{
  "mcpServers": {
    "naver-powerlink": {
      "command": "npx",
      "args": ["-y", "naver-powerlink-budget-estimator"],
      "env": {
        "NAVER_API_KEY": "your_api_key_here",
        "NAVER_SECRET_KEY": "your_secret_key_here",
        "NAVER_CUSTOMER_ID": "your_customer_id_here"
      }
    }
  }
}

로컬에서 빌드한 경우:

{
  "mcpServers": {
    "naver-powerlink": {
      "command": "node",
      "args": ["/path/to/your/Naver-Powerlink-Budget-Estimator/build/index.js"],
      "env": {
        "NAVER_API_KEY": "your_api_key_here",
        "NAVER_SECRET_KEY": "your_secret_key_here",
        "NAVER_CUSTOMER_ID": "your_customer_id_here"
      }
    }
  }
}

⚠️ 중요: env 객체의 API 키, SECRET 키, CUSTOMER ID를 네이버 검색광고에서 발급받은 실제 값으로 변경하세요!

설정을 적용한 후 Claude Desktop을 재시작하면 Claude가 네이버 파워링크 API를 사용할 수 있습니다.

사용 가능한 도구

1. get_average_position_bid

특정 키워드와 순위에 대한 예상 입찰가를 조회합니다.

키워드 "강아지 사료"의 PC 1순위 입찰가를 알려줘

2. estimate_performance

키워드와 입찰가로 예상 성과를 예측합니다.

키워드 "강아지 간식"에 1000원 입찰하면 예상 성과가 어떻게 돼?

3. process_keywords_bulk

여러 키워드를 일괄 처리합니다.

다음 키워드들의 PC 2순위, 모바일 3순위 입찰가와 성과를 분석해줘:
- 강아지 사료
- 고양이 간식
- 펫 용품

개발

# 빌드
npm run build

# 개발 모드 (watch)
npm run watch

# 테스트 실행
npm run dev

API 키 발급

네이버 검색광고 API 키는 네이버 검색광고 센터에서 발급받을 수 있습니다.

라이선스

MIT