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

@rabbitdev/hms-acp-incident-mcp

v2.2.0

Published

MCP server for the HumanSoft ACP Developer Scrumboard (web-acp Developer ▸ Scrumboard). Tracks Incidents across Kanban lanes via api-web.php.

Readme

@rabbitdev/hms-acp-incident-mcp

An MCP (Model Context Protocol) server, written in TypeScript, that exposes the Developer Scrumboard of HumanSoft ACP (web-acp → Developer ▸ Scrumboard) as MCP tools.

What it does

Kanban board for Dev/Products/Operation teams tracking Incidents (Bug / Extra Code / Emergency / Performance) across pipeline lanes: Pending → To do → Doing → Ready to test → Complete / Reject.

All tool calls go to POST /api-web.php?_compgrp=&_comp=&_action= with data in the request body. Login uses POST /api.php (body-param routing) and runs automatically on the first tool call.

Tools (24)

| Tool | Kind | Description | | --- | --- | --- | | getBoardLane | read | การ์ดของ lane เดียว กรองด้วย month/keyword/member/feature/issue type/mode/due date | | getCard | read | รายละเอียดเต็มของ incident card รวม task/comment/member/doc/system/feature/contact | | saveCard | write | อัพเดท lane, reorder, delay, ราคาประเมิน, send_to_dev, due date, priority, remark | | addBoardTask | write | เพิ่ม checklist item ใหม่ | | saveBoardTask | write | แก้ไข checklist item หรือ toggle done/pending | | deleteBoardTask | destructive | ลบ checklist item | | addBoardComment | write | เพิ่ม comment (รองรับ @mention ด้วย <mark> tag) | | saveBoardComment | write | แก้ไข comment หรือ mark ว่าอ่านแล้ว | | deleteBoardComment | destructive | ลบ comment | | saveMember | write | บันทึก member list ทั้งหมด (replace-all) | | getListUserDevProduct | read | รายชื่อ user กลุ่ม Dev/Products/Operation | | getListProductFeature | read | รายการ product feature สำหรับ filter | | saveIncident | write | แก้ไข topic/desc/problem/correct/source/type/feature/system/contact/group | | deleteIncident | destructive | ลบ incident | | deleteIncidentDoc | destructive | ลบ document/image ที่แนบ | | archiveIncident | write | Archive incident (sys_del_flag='A') | | unArchiveIncident | write | UnArchive incident กลับสู่บอร์ด | | approveIncident | write | Approve incident ย้ายออกจาก Pending lane | | unApproveIncident | write | ยกเลิก approve กลับไป Pending | | changeTypeIncident | write | เปลี่ยนประเภท Incident ↔ Requirement | | getListIncidentGroup | read | Tree-structure ของ incident group | | getListURL | read | รายการ URL สำหรับ incident_url selector | | getListProductUpdate | read | รายการ product update สำหรับ productUpdateSelected | | getListDomains | read | รายการ domain/instance server สำหรับ contact picker |

ID encoding

ส่ง raw id มา — server base64-encode ให้อัตโนมัติ สำหรับ:

  • ทุก field ระดับ top-level ที่ชื่อลงท้ายด้วย _id
  • member[].id และ feature[].id (array filter)
  • identify_user_id (inject อัตโนมัติจาก login response)

Configuration

| Variable | Required | Default | Purpose | | --- | --- | --- | --- | | ACP_USERNAME | yes | — | Username สำหรับ login | | ACP_PASSWORD | yes | — | Password สำหรับ login | | ACP_API_BASE_URL | no | https://core-acp.humansoft.co.th | Base URL | | ACP_API_PATH | no | /api-web.php | Tool endpoint path | | ACP_API_TIMEOUT_MS | no | 30000 | Per-request timeout (ms) | | MCP_HTTP_PORT | no | — | เปิด HTTP transport แทน stdio (สำหรับ Postman) |

Use with Claude Code / Claude Desktop

{
  "mcpServers": {
    "hms-acp-incident": {
      "command": "C:\\path\\to\\node.exe",
      "args": [
        "C:\\path\\to\\node_modules\\npm\\bin\\npx-cli.js",
        "-y",
        "@rabbitdev/hms-acp-incident-mcp"
      ],
      "env": {
        "ACP_USERNAME": "your-username",
        "ACP_PASSWORD": "your-password"
      }
    }
  }
}

Test with Postman (stdio)

{
  "command": "C:\\path\\to\\node.exe",
  "args": [
    "C:\\path\\to\\node_modules\\npm\\bin\\npx-cli.js",
    "-y",
    "@rabbitdev/hms-acp-incident-mcp"
  ],
  "env": {
    "ACP_USERNAME": "your-username",
    "ACP_PASSWORD": "your-password"
  }
}

Test with Postman (HTTP)

$env:ACP_USERNAME = "your-username"
$env:ACP_PASSWORD = "your-password"
$env:MCP_HTTP_PORT = "3000"

& "C:\path\to\node.exe" "C:\path\to\node_modules\npm\bin\npx-cli.js" -y @rabbitdev/hms-acp-incident-mcp

POST JSON-RPC messages to http://localhost:3000/.

Security notes

  • Credentials are used only at login; identify_user_id from the session is injected into every request body.
  • deleteIncident, deleteBoardTask, deleteBoardComment, deleteIncidentDoc are irreversible.