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

community-card-mcp

v2.0.0

Published

社群名牌卡 MCP 伺服器:透過 stdio 提供社群、活動查詢與發 PR 新增活動的工具

Readme

community-card-mcp

社群名牌卡 MCP (Model Context Protocol) 伺服器:透過 stdio 提供「查詢社群/活動/贊助商/集章獎勵」與「自動發 PR 新增活動」共五個工具,讓 AI 助理可以直接讀取與貢獻社群名牌卡專案的資料。

預設指向 高雄社群名牌卡,但可透過環境變數指向任意 fork(例:台北社群卡、台中社群卡)。

提供的工具

| 工具 | 參數 | 權限 | 說明 | |---|---|---|---| | get_communities | 無 | 唯讀 | 取得社群清單與介紹 | | get_events | month(選填,YYYY-MM) | 唯讀 | 取得活動行事曆,可依月份過濾 | | get_sponsors | 無 | 唯讀 | 取得贊助商清單 | | get_rewards | 無 | 唯讀 | 取得集章獎勵清單 | | propose_new_event | datetitlecommunitydescription(≤50 字)、link | 需 GitHub Token | 在指定 repo 自動建立 PR 新增活動 |

環境變數

| 變數 | 必填 | 預設 | 說明 | |---|---|---|---| | COMMUNITY_CARD_DATA_URL | – | https://community-card.org | 資料來源基底 URL;fork 至其他城市時改成自己的網址 | | COMMUNITY_CARD_SUB_PATH | – | 2026 | 年度/版本子目錄路徑(例如當前為 2026;年底可改成 v2 以實現年份脫鉤) | | GITHUB_TOKEN | 僅 propose_new_event 工具需要 | – | 對目標 repo 有 repo 權限的 Personal Access Token | | GITHUB_REPO_OWNER | 僅 propose_new_event 工具需要 | – | 目標 repo 擁有者(例:gdg-kh) | | GITHUB_REPO_NAME | 僅 propose_new_event 工具需要 | CommunityCardOrg | 目標 repo 名稱 |

在 AI 工具中使用

把以下設定寫入各 AI 工具的 MCP 設定檔即可(不需要 clone repo):

{
  "mcpServers": {
    "community-card": {
      "command": "npx",
      "args": ["-y", "community-card-mcp"],
      "env": {
        "COMMUNITY_CARD_DATA_URL": "https://community-card.org",
        "COMMUNITY_CARD_SUB_PATH": "2026",
        "GITHUB_TOKEN": "(選填)若希望 AI 能發 PR 新增活動,請填入 Personal Access Token",
        "GITHUB_REPO_OWNER": "gdg-kh",
        "GITHUB_REPO_NAME": "CommunityCardOrg"
      }
    }
  }
}

各工具設定檔位置與完整教學請見 主專案 README

License

MIT — see LICENSE in the main repo.