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

public-official-mcp-server

v0.1.1

Published

MCP server for Korean public official asset disclosure data (공직자 재산공개)

Downloads

576

Readme

public-official-mcp-server

한국 공직자 재산공개 데이터를 조회하는 MCP (Model Context Protocol) 서버입니다.

공직자 이름만 입력하면 관보 원본에서 부동산 주소, 주식 종목/수량, 예금 기관별 잔액, 가상자산 내역까지 추출합니다.

기능

| 도구 | 설명 | |------|------| | pety_search_person | 이름으로 공직자 검색 | | pety_get_asset_detail | 종목별 재산 상세 조회 (주식, 부동산, 예금, 가상자산) | | pety_search_assets | 재산공개 관보 공고 검색 |

사용 예시

"오세훈 자산 알려줘"
→ MicroStrategy 371주, 엔비디아 1,100주, 아이온큐 2,500주...

"이재명 재산"
→ 분당구 수내동 아파트 7.28억, 예금 15.8억, 채권 7억...

"이준석 가상자산"
→ 비트코인, 루나 등 40종 전량 매각

설치

별도 설치 없이 npx로 바로 실행할 수 있습니다.

npx -y public-official-mcp-server

Claude Desktop 설정

claude_desktop_config.json에 추가:

{
  "mcpServers": {
    "public-official-mcp-server": {
      "command": "npx",
      "args": ["-y", "public-official-mcp-server"],
      "env": {
        "DATA_GO_KR_SERVICE_KEY": "<your-key>"
      }
    }
  }
}

Claude Code 설정

claude mcp add public-official-mcp-server -- npx -y public-official-mcp-server

환경변수

| 변수 | 필수 | 설명 | |------|------|------| | DATA_GO_KR_SERVICE_KEY | 선택 | 공공데이터포털 서비스 키. 관보 공고 검색에 사용. 없어도 인물 검색은 동작 |

데이터 소스

| 소스 | 용도 | 인증 | |------|------|------| | DocumentCloud | 인물 검색 + 관보 텍스트 추출 | 불필요 | | 공공데이터포털 | 관보 공고 목록 검색 | 서비스 키 | | 전자관보 ezpdf | 최신 관보 직접 조회 (폴백) | 불필요 (agent-browser 필요) |

개발

git clone https://github.com/yujiseok/public-official-mcp.git
cd public-official-mcp
bun install
bun run dev

라이선스

MIT