hdls Give

hdls Give is a headless, MCP-native fundraising & donor management backend. It manages donors, donations, and campaigns, operated entirely through named tools your AI assistant calls. It stands in for tools like Bloomerang, DonorPerfect — same job, no UI to run.

💬 Just ask

"Record a $100 donation from Ada and show me this month's total."

You don't call these tools yourself — just tell your assistant in plain English. Everything below is the reference for when you (or your assistant) want the exact details.

How Give is organized

The headline entity is the donation — start there, then attach the rest to it. The interaction table is an append-only timeline — every change and note lands there and is never edited or deleted.

EntityPurposeRelates to
donationA recorded gift from a donor, optionally attributed to a campaign.donor, campaign
donorA supporter/constituent record; carries denormalised lifetime giving for fast donor screening.
campaignA fundraising campaign/appeal with a target goal and denormalised raised total.
interactionAppend-only engagement timeline of touchpoints (calls, emails, meetings, notes) with a donor.donor

Common workflows

Each line is one real sequence of tool calls — your assistant chains them for you.

  • Set up a donation end to end: create_donorrecord_donationcreate_campaign

Tools

Call these at https://hdls.ai/api/mcp/donations. Required fields you must supply; optional fields refine the call. You never pass tenant_id — it is stamped server-side.

Create

ToolWhat it doesRequiredOptional
create_donorCreate a new donor.nameemail, phone, donor_type, status, lifetime_value, last_gift_at
create_campaignCreate a new campaign.namedescription, goal_amount, raised_amount, currency, status, starts_at

Update & advance

ToolWhat it doesRequiredOptional
record_donationRecord a donation.donor_id, amountcampaign_id, currency, method, frequency, status, is_anonymous
log_interactionLog interaction.donor_id, bodykind, subject, author

Find & read

ToolWhat it doesRequiredOptional
search_donationsSearch donations by free-text and/or column filters (tenant-scoped, paginated).search, filters, limit, orderBy

Field lists come from the product's live schema and are embedded in each tool's own description — read the tool description for the exact, current fields.

Field reference

Every field you can set on each record. Custom fields you add live alongside these in data.

donation

FieldTypeRequiredNotes
donor_ididYesLinks to a donor.
campaign_ididLinks to a campaign.
amountnumeric(14,2)Yes
currencytext
methodtext
frequencytext
statustextLifecycle state.
is_anonymoustrue / false
designationtext
received_attimestamp
datajsonFree-form JSON — custom fields live here.

donor

FieldTypeRequiredNotes
nametextYesDisplay name.
emailtext
phonetext
donor_typetext
statustextLifecycle state.
lifetime_valuenumeric(14,2)
last_gift_attimestamp
datajsonFree-form JSON — custom fields live here.

campaign

FieldTypeRequiredNotes
nametextYesDisplay name.
descriptiontext
goal_amountnumeric(14,2)
raised_amountnumeric(14,2)
currencytext
statustextLifecycle state.
starts_atdate
ends_atdate
datajsonFree-form JSON — custom fields live here.

Tailor it with custom fields

Add fields without a schema change. add_custom_field defines one, list_custom_fields shows what's defined, and promote_custom_field (admin) shares a personal field with the whole workspace. The value lives in each row's data (JSON) and is set and read through the normal record tools. See Products, tools & custom fields for the full model.

Roles & safety

  • Tenant isolation is automatic. Your credential is pinned to one workspace; you never pass tenant_id, and you can only ever see your own data (enforced by Postgres row-level security).
  • Role-gated. Permissions run reader < member < admin < owner. Installing a product and promoting a custom field workspace-wide need admin/owner.
  • History is append-only. The interaction timeline is never edited or deleted — it's your audit trail.

Connect

On the concierge (https://hdls.ai/api/mcp), run install_product({ slug: "donations" }) (admin/owner) to enable it for your workspace, then add https://hdls.ai/api/mcp/donations as a connector in your assistant — see Connect your assistant.

A worked example

The literal call your assistant makes when you ask it to create the headline record:

Tool: create_donor
Arguments: {
  "name": "Acme Corp"
}

See All products · Connect your assistant · Automation