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

@erdify/mcp-server

v0.2.0

Published

ERDify 다이어그램을 Claude Desktop 등 MCP 클라이언트에서 조작할 수 있게 하는 stdio MCP 서버.

Readme

ERDify MCP Server

ERDify 다이어그램을 Claude Desktop 등 MCP 클라이언트에서 조작할 수 있게 하는 stdio MCP 서버.

1. API 키 발급

ERDify에 로그인한 뒤 아래 요청을 보내세요 (Authorization 헤더에 기존 액세스 토큰 사용):

curl -X POST http://localhost:3000/auth/api-key \
  -H "Authorization: Bearer <your-access-token>"

응답: { "apiKey": "eyJ..." }

2. Claude Desktop 설정

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

{
  "mcpServers": {
    "erdify": {
      "command": "npx",
      "args": ["tsx", "/absolute/path/to/apps/mcp-server/src/index.ts"],
      "env": {
        "ERDIFY_API_URL": "http://localhost:3000",
        "ERDIFY_API_KEY": "eyJ..."
      }
    }
  }
}

Claude Desktop을 재시작하면 ERDify 툴이 활성화됩니다.

사용 예시

  • "내 프로젝트 목록 보여줘" → list_projects
  • "쇼핑몰 ERD의 테이블 목록 알려줘" → list_diagramsget_diagram
  • "users 테이블에 email 컬럼 추가해줘" → add_column
  • "orders → users 관계 추가해줘" → add_relationship
  • "현재 스키마 DDL 뽑아줘" → get_ddl