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

@alacrity-ai/kbrelaymcp

v0.8.1

Published

MCP server for kbRelay — give an agent kanban powers (projects, cards, timeline, mentions) over the kbRelay API.

Readme

@alacrity-ai/kbrelaymcp

An MCP server that gives an agent kbRelay powers — projects, cards, the timeline, and your @-mentions — over kbRelay's HTTP API. It's a thin, standalone stdio client: it carries no privileges of its own, so the API token's tenant and project access (RBAC) govern exactly what it can see and do. Point it at a token minted for an agent user and everything the agent does is attributed to that agent (correct provenance).

Install (Claude Code / Claude Desktop)

claude mcp add kbrelay --scope user \
  --env KBRELAY_BASE_URL=https://kbrelay.com \
  --env KBRELAY_API_KEY=<token from the web "API keys" panel> \
  -- npx -y @alacrity-ai/kbrelaymcp

KBRELAY_BASE_URL can point at the hosted deployment or a self-host instance (e.g. http://localhost:8080), so the same MCP works against both.

Other MCP clients (Cursor / Windsurf / Cline)

{
  "mcpServers": {
    "kbrelay": {
      "command": "npx",
      "args": ["-y", "@alacrity-ai/kbrelaymcp"],
      "env": {
        "KBRELAY_BASE_URL": "https://kbrelay.com",
        "KBRELAY_API_KEY": "<your token>"
      }
    }
  }
}

Configuration

| Env var | Required | Purpose | |---|---|---| | KBRELAY_BASE_URL | yes | kbRelay origin, e.g. https://kbrelay.com or http://localhost:8080. | | KBRELAY_API_KEY | yes | A bearer token. For correct provenance, use a key minted for an agent user (web → Team & access → Agents) so the agent's work is attributed to it, not to you. A personal key from the API keys panel also works. Sent as Authorization: Bearer …. |

Tools

| Tool | Kind | What it does | |---|---|---| | whoami | read | The current user + tenant (call first for your user id). | | list_users | read | Tenant users → resolve names/@handles to ids. | | list_projects | read | Projects you can access (admins: all). | | get_project | read | A project + its columns with roles. projectId accepts the code (KBR) or id. | | get_board | read | One-call board snapshot — project + columns + card digests (no spec bodies). Orient with this (v0.21.0). | | create_project | write | New project (code required, seeds columns). Admin keys only since KBR-94 — member keys get 403. | | update_project | write | Edit a project's name/code/description/color/status. Admin keys only since KBR-94. | | list_cards | read | Cards with full bodies (filter by column/assignee/q; assignee: "me" works). Prefer get_board to orient. | | get_card | read | One card (read the spec before working it). cardId accepts the ticket key (KBR-12) or id. Returns attachments[] — each with filename, kind, sizeBytes, and a same-origin url (v0.16.0). | | create_card | write | New card (markdown body; @handle to notify). columnRole: "ready" targets a lane without knowing column ids (v0.21.0). | | update_card | write | Edit and/or move (status = column) — columnRole: "in_progress" moves by role with zero prior reads; cardId accepts the ticket key (v0.21.0). Since KBR-101, member keys change content only on cards they created; archived is admin-only; column/assignee/reviewer moves stay open. | | delete_card | write | Delete a card (cascades). Admin keys only since KBR-94 — members archive instead. | | get_timeline | read | A card's activity log (events + comments). | | get_project_activity | read | Newest-first card events across a whole board — "what happened while I was away?" (cursor-paginated, v0.17.0). | | add_comment | write | Report results on the timeline (note or handoff); attachmentIds links uploaded files. | | add_attachment | write | Upload a file to a card (filePath or base64, ≤25 MB) → attachment + markdown snippet (v0.17.0). | | delete_attachment | write | Delete an attachment (uploader or admin; bytes purged). | | review_card | write | Assigned-reviewer verdict: approve (→ done, AC checked) or reject (→ in progress) with a review note (KBR-110/111). | | link_card / unlink_card | write | Attach/remove a typed external reference (e.g. a Jira/GitHub link). | | find_cards_by_link | read | Which card tracks JIRA-123? Look up by provider + external key. | | redact_comment | write | Soft-delete your own comment (leaves a tombstone). | | list_my_queue | read | Your actionable queue — cards assigned to you in a ready-role column (v0.15.0). Work these first. | | get_mentions | read | Your @-mentions — "what did people ask me?". | | mark_mentions_read | write | Acknowledge mentions after handling them. |

Address things the way you talk about them (v0.21.0): anywhere a tool takes a cardId you can pass the ticket key (KBR-12); anywhere a projectId, the project code (KBR); moves take columnRole instead of a column id; and list_cards accepts assignee: "me". The old ids keep working everywhere.

The get_mentions + add_comment pair makes "check your mentions and respond to them" a first-class flow, and add_attachment + add_comment (attachmentIds) makes "attach the evidence to the handoff" one too.

Requirements

Node ≥ 20. No configuration files — just the two env vars.

License

MIT