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

@alarmzb/redmine

v1.0.1

Published

Redmine MCP Server for AI agents

Readme

@alarmzb/redmine

Redmine (aka PSC) MCP Server — 讓 AI Agent 存取 Redmine issues、討論、附件圖片。

安裝

Claude Code

claude mcp add redmine -- npx -y @alarmzb/redmine

其他 client (Claude Desktop / Codex / Roo Code / OpenCode)

在設定檔中加入:

{
  "mcpServers": {
    "redmine": {
      "command": "npx",
      "args": ["-y", "@alarmzb/redmine"]
    }
  }
}

.env 設定

憑證預設存放在當前工作目錄的 .env,由 redmine_set_url / redmine_set_credentials tool 自動寫入。亦可手動建立。

正確的環境變數名稱

| 變數 | 必填 | 說明 | |------|------|------| | REDMINE_URL | ✅ | Redmine 伺服器 URL,例如 https://redmine.example.com | | REDMINE_API_KEY | 擇一 | Redmine 個人 API Key(推薦) | | REDMINE_USERNAME | 擇一 | 帳號(與 REDMINE_PASSWORD 搭配) | | REDMINE_PASSWORD | 擇一 | 密碼 |

注意:變數名稱固定為 REDMINE_*不是 JIRA_*。此套件與 JIRA 無關。

範例 .env

REDMINE_URL=https://redmine.example.com
REDMINE_API_KEY=your-api-key-here

自訂 .env 路徑

透過 MCP client 的 env 欄位設定 DOTENV_PATH,可讓多專案共用同一份 .env

{
  "mcpServers": {
    "redmine": {
      "command": "npx",
      "args": ["-y", "@alarmzb/redmine"],
      "env": { "DOTENV_PATH": "/home/you/.redmine.env" }
    }
  }
}

Tools

| Tool | 說明 | |------|------| | redmine_set_url | 設定 REDMINE_URL(寫入 .env) | | redmine_set_credentials | 設定 API Key 或 帳號/密碼(寫入 .env) | | redmine_get_issue | 取得 issue 完整內容(含討論與附件圖片 base64) | | redmine_search_issues | 搜尋 issues(支援狀態、專案、指派者篩選) | | redmine_get_attachment | 下載指定附件 |

首次使用

設定完 MCP client 後重啟 AI Agent,對 AI 說:

幫我設定 Redmine:
- URL: https://your-redmine-server
- API Key: your-api-key

AI 會自動呼叫 redmine_set_urlredmine_set_credentials 寫入 .env。之後問 PSC #1231 / Redmine #1231 即可查詢。

相關

  • Repo: https://github.com/alarmz/mcp-hub
  • 搭配套件:@alarmzb/nfd-generator(從 PSC 內容自動產生 NFD 文件)