# Bloomerang — Pipedream Connect

> Bloomerang Donor Management and Fundraising Software for Nonprofits

- API slug: `bloomerang` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: CRM
- Website: https://bloomerang.co/
- This page (HTML): https://pipedream.com/apps/bloomerang
- Tools: 7 actions · 3 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: bloomerang`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "bloomerang",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Add Interaction:
const result = await mcp.callTool({
  name: "bloomerang-add-interaction",
  arguments: {
    constituentId: "Constituent ID",
    date: "Date",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "bloomerang-add-interaction",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    bloomerang: { authProvisionId: "apn_xxxxxxx" },
    constituentId: "Constituent ID",
    date: "Date",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (7)

### `bloomerang-add-interaction` — Add Interaction (Write)

Adds an interaction to an existing constituent in Bloomerang. See the documentation

Full schema: https://pipedream.com/apps/bloomerang/actions/add-interaction.md

### `bloomerang-create-constituent` — Create Constituent (Write)

Creates a new constituent in Bloomerang. See the documentation

Full schema: https://pipedream.com/apps/bloomerang/actions/create-constituent.md

### `bloomerang-create-donation` — Create Donation (Write)

Creates a new donation record in Bloomerang. See the documentation

Full schema: https://pipedream.com/apps/bloomerang/actions/create-donation.md

### `bloomerang-list-appeal-id-options` — List Appeal Options (Read-only)

Retrieves available options for the Appeal field.

Full schema: https://pipedream.com/apps/bloomerang/actions/list-appeal-id-options.md

### `bloomerang-list-campaign-id-options` — List Campaign Options (Read-only)

Retrieves available options for the Campaign field.

Full schema: https://pipedream.com/apps/bloomerang/actions/list-campaign-id-options.md

### `bloomerang-list-constituent-id-options` — List Constituent ID Options (Read-only)

Retrieves available options for the Constituent ID field.

Full schema: https://pipedream.com/apps/bloomerang/actions/list-constituent-id-options.md

### `bloomerang-list-fund-id-options` — List Fund Options (Read-only)

Retrieves available options for the Fund field.

Full schema: https://pipedream.com/apps/bloomerang/actions/list-fund-id-options.md

## Triggers (3)

### `bloomerang-new-constituent` — New Constituent Created (Polling)

Emit new event when a new constituent profile is created in Bloomerang.

Full schema: https://pipedream.com/apps/bloomerang/triggers/new-constituent.md

### `bloomerang-new-donation` — New Donation (Polling)

Emit new event when a donation is received in Bloomerang.

Full schema: https://pipedream.com/apps/bloomerang/triggers/new-donation.md

### `bloomerang-new-interaction` — New Interaction (Polling)

Emit new event when a new interaction is logged for a constituent.

Full schema: https://pipedream.com/apps/bloomerang/triggers/new-interaction.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
