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

@hlao-mcp/bloomerang

v0.1.0

Published

HLAO MCP server wrapping the Bloomerang CRM REST API (constituents, transactions, donations, funds, interactions). Write tools gated through the HLAO passport gate.

Readme

@hlao-mcp/bloomerang

MCP server that wraps the Bloomerang REST API and exposes it as typed tools for HLAO agents.

What this MCP connects to

Bloomerang is a donor-management CRM used by nonprofits to track constituents, donations, interactions, and funds. This server wraps the public v2 REST API.

Tools

Read tools (safe; do not mutate Bloomerang state):

| Tool | What it does | | -------------------------- | ------------------------------------------------------------------------------- | | get_constituent_by_id | Fetch a single constituent record by numeric id. | | list_constituents | Page through all constituents. | | search_constituents | Free-text search across constituent name, email, organization. | | get_transaction_history | List a constituent's donations and pledges in reverse chronological order. | | get_donation_by_id | Fetch a single donation transaction. | | list_donations | Page through donations, most recent first. | | get_fund_by_id | Fetch a single fund (designation bucket). | | list_funds | Page through funds. |

Write tools (mutate Bloomerang; require HLAO authority gate):

| Tool | Required passport scope | What it does | | --------------------- | ---------------------------------------- | --------------------------------------- | | create_interaction | bloomerang:create_interaction | Log a new interaction on a constituent. |

Bloomerang holds donor relationship data. Every write tool here is marked side: 'write' and emits a gate_required error if no HLAO passport is presented, or gate_denied if the presented scope does not include the required write scope. The HLAO @hlao/mcp-gateway injects the verified passport from a human-approved review record; production deployments must not bypass that gate.

Credentials

| Variable | What it is | | ------------------------- | ----------------------------------------------------------------------- | | BLOOMERANG_API_KEY | Bloomerang API key (header X-API-KEY). Required. | | BLOOMERANG_API_BASE_URL | API base URL. Defaults to https://api.bloomerang.co/v2. |

How to get the API key

  1. Log in to Bloomerang as a user with administrator permissions.
  2. Settings → API → Add API Key.
  3. Name the key, copy it, and store it in your .env (this directory).

No plan upgrade is required for API access; a paid Bloomerang account in good standing is sufficient.

Local development

cp .env.example .env
# edit .env with your real key
pnpm install
pnpm --filter @hlao-mcp/bloomerang build

# Streamable HTTP transport (production-shaped)
HLAO_MCP_HTTP_PORT=3001 node dist/server.js
# server listens at http://localhost:3001/mcp

# stdio transport for local MCP-client testing
HLAO_MCP_TRANSPORT=stdio node dist/server.js

How HLAO wraps this server

The HLAO @hlao/mcp-gateway is configured to call this server as an MCP client. On every tool call the gateway forwards the verified HLAO passport as the x-hlao-authority header (JSON-encoded { passportId, subject, scope, expiresAt }). This server consumes that header to gate write tools and emits structured errors that flow back through the audit substrate. Tool calls never reach Bloomerang without a verified passport when side: 'write'.