# How to integrate Givebutter MCP with Atomic Agent

```json
{
  "title": "How to integrate Givebutter MCP with Atomic Agent",
  "toolkit": "Givebutter",
  "toolkit_slug": "givebutter",
  "framework": "Atomic Agent",
  "framework_slug": "atomic-agent",
  "url": "https://composio.dev/toolkits/givebutter/framework/atomic-agent",
  "markdown_url": "https://composio.dev/toolkits/givebutter/framework/atomic-agent.md",
  "updated_at": "2026-08-11T13:10:09.608Z"
}
```

## Introduction

Atomic Agent is an open-source AI agent that runs on your machine and supports local models through llama.cpp. Connect it to 1,500+ apps through Composio, including Givebutter.
This guide uses Atomic Agent's built-in Composio integration. You need Atomic Agent v0.5.6 or later, your own Composio API key, and a Givebutter account. See the [Atomic Agent documentation](https://atomicagent.io/docs/?cta_placement=atomic-agent-docs) for installation instructions.

## Also integrate Givebutter with

- [OpenAI Agents SDK](https://composio.dev/toolkits/givebutter/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/givebutter/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/givebutter/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/givebutter/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/givebutter/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/givebutter/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/givebutter/framework/hermes-agent)
- [Google ADK](https://composio.dev/toolkits/givebutter/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/givebutter/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/givebutter/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/givebutter/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/givebutter/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/givebutter/framework/crew-ai)
- [Pydantic AI](https://composio.dev/toolkits/givebutter/framework/pydantic-ai)
- [AutoGen](https://composio.dev/toolkits/givebutter/framework/autogen)

## TL;DR

### How Atomic Agent connects to Givebutter
Atomic Agent connects to Composio's Tool Router over Streamable HTTP MCP. It discovers the tools needed for your request, and Composio handles account authentication.
Execution and account-connection tools follow Atomic Agent's configured approval policy. Review any approval prompt before allowing an action on your connected account.

## Connect Givebutter to Atomic Agent

### Connect Givebutter to Atomic Agent
- Sign up or sign in to the [Composio dashboard](https://dashboard.composio.dev/?cta_placement=atomic-agent-api-key). Copy your API key.
- In Atomic Agent, open the Integrations tab and select Composio. Select API key, press e, paste the key, and press Enter. The tools become available immediately, without a restart.
- Ask Atomic Agent to do something in Givebutter. It searches Composio for the right tool.
- On first use, open the sign-in link returned in the chat. Connect your Givebutter account, then return to Atomic Agent to continue.
### Headless setup
Add the following line to ~/.atomic-agent/.env, replacing YOUR_COMPOSIO_API_KEY with your key. Start Atomic Agent after saving the file.

```bash
COMPOSIO_API_KEY=YOUR_COMPOSIO_API_KEY
```

## What is the Givebutter MCP server, and what's possible with it?

The Givebutter MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Givebutter account. It provides structured and secure access to your fundraising platform, so your agent can perform actions like creating campaigns, tracking donations, managing contacts, and handling payouts on your behalf.
- Campaign management and creation: Easily instruct your agent to start new fundraising campaigns, update campaign details, or remove old campaigns when needed.
- Donation and payout tracking: Ask your agent to retrieve lists of payouts, monitor donation flows, and keep tabs on your fundraising progress in real time.
- Contact and member administration: Let your agent add, archive, or delete contacts, and fetch lists of campaign members for smooth supporter management.
- Fund and webhook operations: Direct your agent to get details about specific funds, create or remove webhooks for event notifications, and manage fundraising infrastructure automatically.
- Automated data cleanup: Empower your agent to archive or delete obsolete contacts, funds, or webhooks, keeping your Givebutter account organized and up to date.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `GIVEBUTTER_ADD_CONTACT_TAGS` | Add Contact Tags | Tool to add tags to a contact by contact ID. Use when you need to categorize or label contacts with specific tags. |
| `GIVEBUTTER_ADD_HOUSEHOLD_CONTACT` | Add Household Contact | Tool to add a contact to a household. Use when you have both a household ID and contact ID to associate them together. |
| `GIVEBUTTER_ARCHIVE_CONTACT` | Archive Contact | Tool to archive a contact by their ID. Use after ensuring the contact has no associated data (e.g., no transactions or communications). Example: "Archive contact abc123". |
| `GIVEBUTTER_CREATE_CAMPAIGN` | Create Campaign | Tool to create a new campaign. Use when you have title, description, goal, and type ready, after confirming your Givebutter account is authenticated. |
| `GIVEBUTTER_CREATE_CAMPAIGN_TICKET` | Create Campaign Ticket | Tool to create a campaign ticket for events or fundraisers. Use when you need to add ticket options to a campaign with pricing and inventory details. |
| `GIVEBUTTER_CREATE_CONTACT` | Create Contact | Tool to create a new contact in Givebutter. Use when you need to add a new contact with first name, last name, and optionally email, phone, and other details. |
| `GIVEBUTTER_CREATE_CONTACT_ACTIVITY` | Create Contact Activity | Tool to create a contact activity (e.g., note). Use when you need to log an activity for a contact. Requires contact ID and activity details. |
| `GIVEBUTTER_CREATE_DISCOUNT_CODE` | Create Discount Code | Tool to create a discount code for a campaign. Use when you need to provide promotional pricing or discounts for campaign items. |
| `GIVEBUTTER_CREATE_FUND` | Create Fund | Tool to create a new fund. Use when you need to create a fund with a name and optional code. |
| `GIVEBUTTER_CREATE_HOUSEHOLD` | Create Household | Tool to create a new household in Givebutter. Use when you need to group related contacts under a single household entity. |
| `GIVEBUTTER_CREATE_TRANSACTION` | Create Transaction | Tool to create a new transaction for a campaign. Use when you need to record a donation or payment, typically for offline transactions like cash or check payments. |
| `GIVEBUTTER_CREATE_WEBHOOK` | Create Webhook | Tool to create a new webhook subscription. Use when you need to receive real-time notifications programmatically after confirming your endpoint can validate Givebutter's signing secret. |
| `GIVEBUTTER_DELETE_CAMPAIGN` | Delete Campaign | Tool to delete a campaign by its ID. Use after confirming the campaign has no funds raised. Example: "Delete campaign abc123". |
| `GIVEBUTTER_DELETE_CONTACT_ACTIVITY` | Delete Contact Activity | Tool to delete a contact activity by contact ID and activity ID. Use when you need to remove a specific activity from a contact's record. |
| `GIVEBUTTER_DELETE_DISCOUNT_CODE` | Delete Discount Code | Tool to delete a discount code from a campaign. Use when you need to remove a discount code after confirming it exists. |
| `GIVEBUTTER_DELETE_FUND` | Delete Fund | Tool to delete a fund by its ID. Use when you need to remove a fund after confirming it exists. Example: "Delete fund fund_abc123". |
| `GIVEBUTTER_DELETE_HOUSEHOLD` | Delete Household | Tool to delete a household by its ID. Use after confirming the household exists and has no associated data. Example: "Delete household 1007067". |
| `GIVEBUTTER_DELETE_WEBHOOK` | Delete Webhook | Tool to delete a webhook by its ID. Use when you need to remove an obsolete webhook after confirming no further events are needed. Example: "Delete webhook abc123". |
| `GIVEBUTTER_GET_CAMPAIGN` | Get Campaign | Tool to retrieve details for a specific campaign by its ID or code. Use when you need to fetch campaign information, check status, or get fundraising progress. |
| `GIVEBUTTER_GET_CAMPAIGN_TICKET` | Get Campaign Ticket | Tool to retrieve a specific campaign ticket by campaign ID and ticket ID. Use when you need details about a specific ticket item within a campaign. |
| `GIVEBUTTER_GET_CONTACT` | Get Contact | Tool to retrieve details of a specific contact by ID. Use after confirming the contact ID is valid. |
| `GIVEBUTTER_GET_CONTACT_ACTIVITY` | Get Contact Activity | Tool to retrieve a specific contact activity by contact ID and activity ID. Use when you need detailed information about a particular activity for a contact. |
| `GIVEBUTTER_GET_DISCOUNT_CODE` | Get Discount Code | Tool to retrieve details of a specific discount code for a campaign. Use when you need to view discount code information. |
| `GIVEBUTTER_GET_FUND` | Get Fund | Tool to retrieve details of a specific fund by its ID. Use after confirming the fund ID is valid. |
| `GIVEBUTTER_GET_HOUSEHOLD` | Get Household | Tool to retrieve details of a specific household by its ID. Use when you need information about a household including its contacts. |
| `GIVEBUTTER_GET_MEMBERS` | Get Members | Tool to retrieve a paginated list of members for a given campaign. Use when you need to list or process campaign members. |
| `GIVEBUTTER_GET_PAYOUTS` | Get Payouts | Tool to retrieve a list of payouts associated with your account. Use when you need to list withdrawal transactions after authentication. |
| `GIVEBUTTER_GET_PLANS` | Get Plans | Tool to retrieve a list of plans associated with your account. Use after authentication to fetch recurring donation plans. Returns only plans scoped to the authenticated account; cross-account retrieval is not supported. An empty array is a valid response indicating no recurring plans exist. If paginated, iterate all pages to retrieve the full plan set. |
| `GIVEBUTTER_GET_TEAMS` | Get Teams | Tool to retrieve a list of teams for a specific campaign. Use after creating or updating a campaign when you need to list fundraising teams. Example: "Get teams for campaign camp123". |
| `GIVEBUTTER_GET_TICKETS` | Get Tickets | Tool to retrieve a list of tickets. Use when you need to list all tickets for your account after authentication. |
| `GIVEBUTTER_GET_TRANSACTIONS` | Get Transactions | Tool to retrieve a list of transactions associated with your account. Use when you need to list all donations and payments, optionally filtered by scope. |
| `GIVEBUTTER_GET_WEBHOOK` | Get Webhook | Tool to retrieve a specific webhook by its ID. Use when you need details about a single webhook subscription. |
| `GIVEBUTTER_GET_WEBHOOK_ACTIVITY` | Get Webhook Activity | Tool to retrieve a specific webhook activity by its ID. Use when you need detailed information about a single webhook delivery event. |
| `GIVEBUTTER_GET_WEBHOOKS` | Get Webhooks | Tool to retrieve all webhooks configured for your account. Use after obtaining valid authentication. |
| `GIVEBUTTER_LIST_CAMPAIGNS` | List Campaigns | Tool to retrieve a paginated list of campaigns for the authenticated account. Use when you need to list all campaigns. |
| `GIVEBUTTER_LIST_CAMPAIGN_TICKETS` | List Campaign Tickets | Tool to retrieve a list of all campaign tickets for a specific campaign. Use when you need to list tickets available for a campaign. |
| `GIVEBUTTER_LIST_CONTACT_ACTIVITIES` | List Contact Activities | Tool to retrieve all activities for a specific contact. Use when you need to view the activity history of a contact, optionally filtered by activity type. |
| `GIVEBUTTER_LIST_CONTACTS` | List Contacts | Tool to retrieve a paginated list of contacts from your Givebutter account. Use when you need to list all contacts with optional filtering by type, date ranges, contribution amounts, tags, or sorting preferences. |
| `GIVEBUTTER_LIST_DISCOUNT_CODES` | List Discount Codes | Tool to list all discount codes for a campaign. Use when you need to retrieve all active and inactive discount codes associated with a specific campaign. |
| `GIVEBUTTER_LIST_FUNDS` | List Funds | Tool to list all funds in your Givebutter account. Returns paginated results with up to 20 funds per page. Use when you need to retrieve multiple funds or browse all available funds. |
| `GIVEBUTTER_LIST_HOUSEHOLD_CONTACTS` | List Household Contacts | Tool to retrieve all contacts associated with a household. Use when you need to list contacts for a specific household ID. |
| `GIVEBUTTER_LIST_HOUSEHOLDS` | List Households | Tool to retrieve a list of all households in your account. Use when you need to view or manage household groups and their associated contacts. |
| `GIVEBUTTER_LIST_MESSAGES` | List Messages | Tool to retrieve a paginated list of messages. Use when you need to list messages sent through your Givebutter account. Returns paginated results; use the page parameter to navigate through pages. |
| `GIVEBUTTER_LIST_PLEDGES` | List Pledges | Tool to retrieve a paginated list of all pledges. Use when you need to list pledges with optional pagination support. |
| `GIVEBUTTER_LIST_WEBHOOK_ACTIVITIES` | List Webhook Activities | Tool to list all webhook activities for a specific webhook. Use when you need to retrieve activity logs for a webhook subscription. |
| `GIVEBUTTER_REMOVE_CONTACT_TAGS` | Remove Contact Tags | Tool to remove tags from a contact in Givebutter. Use when you need to disassociate specific tags from a contact record. Requires the contact ID and a list of tag names to remove. |
| `GIVEBUTTER_RESTORE_CONTACT` | Restore Contact | Tool to restore a deleted contact by contact ID. Use when you need to recover a contact that was previously deleted. |
| `GIVEBUTTER_SYNC_CONTACT_TAGS` | Sync Contact Tags | Tool to sync tags for a contact. Replaces all existing tags with the specified tags. Use when you need to update the complete tag list for a contact. |
| `GIVEBUTTER_UPDATE_CAMPAIGN` | Update Campaign | Tool to update an existing campaign's details by its ID. Use when you need to modify campaign attributes after creation. |
| `GIVEBUTTER_UPDATE_CAMPAIGN_PUT` | Update Campaign (PUT) | Tool to update a campaign using PUT method. Use when you need to update campaign details like title, description, goal, or other attributes. |
| `GIVEBUTTER_UPDATE_CONTACT` | Update Contact | Tool to update an existing contact's details by contact ID. Use when modifying contact information after confirming the contact_id. Only provided fields will be updated. |
| `GIVEBUTTER_UPDATE_CONTACT_ACTIVITY` | Update Contact Activity | Tool to update a contact activity by contact ID and activity ID. Use when modifying an existing contact activity record. |
| `GIVEBUTTER_UPDATE_CONTACT_PUT` | Update Contact (PUT) | Tool to update a contact using PUT method. Use when you need to update contact information by contact ID. |
| `GIVEBUTTER_UPDATE_DISCOUNT_CODE` | Update Discount Code | Tool to update an existing discount code for a campaign. Use when you need to modify discount code details such as amount, expiration, or usage limits. |
| `GIVEBUTTER_UPDATE_FUND` | Update Fund | Tool to update a fund's details by its ID. Use when you need to modify fund attributes such as name or code. |
| `GIVEBUTTER_UPDATE_HOUSEHOLD` | Update Household | Tool to update an existing household's details by its ID. Use when you need to modify household information after confirming the household_id. |
| `GIVEBUTTER_UPDATE_WEBHOOK` | Update Webhook | Tool to update an existing webhook subscription's details. Use when you need to modify a webhook's name, URL, trigger events, or enabled state after confirming its ID. Example: "Update webhook wh_1234567890 to point to https://example.com/hook, enable transaction.succeeded only." |
| `GIVEBUTTER_UPDATE_WEBHOOK_PUT` | Update Webhook (PUT) | Tool to update a webhook using PUT method (full replacement). Use when you need to completely replace a webhook's configuration. |

## Supported Triggers

None listed.

## Troubleshooting

### Why is my API key rejected?

Copy the key directly from the Composio dashboard. Atomic Agent requires ASCII characters because it sends the key in an HTTP header. Remove any extra characters introduced when copying.

### Why are Composio tools unavailable after saving a key?

Check that you use Atomic Agent v0.5.6 or later and that Composio is enabled in your configuration. A "composio": { "enabled": false } setting disables the integration while keeping the saved key on disk.

### Does Composio have a free plan?

The Hobby plan includes 100,000 tool calls per month. Composio-managed OAuth apps have a lower included allowance. See [Composio pricing](/pricing) for the current limits that apply to your connection.

## Complete Code

None listed.

## Conclusion

### Use Givebutter from Atomic Agent
With your account connected, ask Atomic Agent to work with Givebutter in natural language. You can connect more apps through the same Composio integration as you need them.
Visit the [Atomic Agent website](https://atomicagent.io/?cta_placement=atomic-agent-site) or inspect the [Atomic Agent source code](https://github.com/AtomicBot-ai/atomic-agent?cta_placement=atomic-agent-repo).

## How to build Givebutter MCP Agent with another framework

- [OpenAI Agents SDK](https://composio.dev/toolkits/givebutter/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/givebutter/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/givebutter/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/givebutter/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/givebutter/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/givebutter/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/givebutter/framework/hermes-agent)
- [Google ADK](https://composio.dev/toolkits/givebutter/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/givebutter/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/givebutter/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/givebutter/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/givebutter/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/givebutter/framework/crew-ai)
- [Pydantic AI](https://composio.dev/toolkits/givebutter/framework/pydantic-ai)
- [AutoGen](https://composio.dev/toolkits/givebutter/framework/autogen)

## Related Toolkits

- [Stripe](https://composio.dev/toolkits/stripe) - Stripe is a global online payments platform offering APIs for managing payments, customers, and subscriptions. Trusted by businesses for secure, efficient, and scalable payment processing worldwide.
- [44API](https://composio.dev/toolkits/44api) - 44API is an API service for validating VAT and tax identifiers and returning company details. Use it to verify business tax data and manage account IP whitelists quickly.
- [Airwallex](https://composio.dev/toolkits/airwallex) - Airwallex is a global financial platform providing business accounts, payments, payouts, FX, and cards. Built to simplify cross-border payments and streamline financial operations for businesses.
- [Aiwyn Tax MCP](https://composio.dev/toolkits/aiwyn_tax_mcp) - Aiwyn Tax MCP is a tax estimation service powered by Aiwyn's federal and state tax engine. It helps teams estimate tax outcomes without building tax calculation logic from scratch.
- [Alpaca](https://composio.dev/toolkits/alpaca) - Alpaca is a stock and crypto trading platform for commission-free trading, real-time market data, and algorithmic strategies. Use it to build brokerage apps, trading bots, and portfolio workflows with market connectivity.
- [Alpha vantage](https://composio.dev/toolkits/alpha_vantage) - Alpha Vantage is a financial data platform offering real-time and historical stock market APIs. Get instant, reliable access to equities, forex, and technical analysis data for smarter trading decisions.
- [Altoviz](https://composio.dev/toolkits/altoviz) - Altoviz is a cloud-based billing and invoicing platform for businesses. It streamlines online payments, expense tracking, and customizable invoice management.
- [Benzinga](https://composio.dev/toolkits/benzinga) - Benzinga provides real-time financial news and data APIs for market coverage. It helps you track breaking news and actionable market insights instantly.
- [Bigdata.com MCP](https://composio.dev/toolkits/bigdata_com_mcp) - Bigdata.com MCP provides grounded access to financial news, transcripts, filings, and entity intelligence. Ideal for building research workflows and generating timely market insights.
- [Billsby](https://composio.dev/toolkits/billsby) - Billsby is a subscription billing platform for managing customers, subscriptions, invoices, products, plans, usage counters, add-ons, and allowances. It helps SaaS and subscription teams automate billing operations without building complex billing logic from scratch.
- [Brex](https://composio.dev/toolkits/brex) - Brex provides corporate credit cards and spend management tailored for startups and tech businesses. It helps optimize company cash flow, streamline accounting, and accelerate business growth.
- [Cashfree Payments MCP](https://composio.dev/toolkits/cashfree_payments_mcp) - Cashfree Payments MCP is a merchant payments platform that handles collection, payouts, subscriptions, settlements, refunds, and identity verification. Simplifies merchant money lifecycle management with unified, API-driven workflows.
- [Chaser](https://composio.dev/toolkits/chaser) - Chaser is accounts receivable automation software that sends invoice reminders and helps businesses get paid faster. It streamlines the collections process to save time and improve cash flow.
- [Clarity AI MCP](https://composio.dev/toolkits/clarity_ai_mcp) - Clarity AI MCP is an MCP toolkit for simulating SFDR 2.0 fund classifications from a fund name, ISIN, or CUSIP. Use it to tap Clarity AI disclosure data and modeling without building custom sustainability-data workflows.
- [Clientary](https://composio.dev/toolkits/clientary) - Clientary is a platform for managing clients, invoices, projects, proposals, and more. It streamlines client work and saves you serious admin time.
- [Coinbase](https://composio.dev/toolkits/coinbase) - Coinbase is a platform for buying, selling, and storing cryptocurrency. It makes exchanging and managing crypto simple and secure for everyone.
- [Coinbase Wallet MCP](https://composio.dev/toolkits/coinbase_wallet_mcp) - Coinbase Wallet MCP is Coinbase's wallet service for interacting with onchain accounts. Use it to give agents secure, structured access to inspect wallets and request onchain actions.
- [Coinranking](https://composio.dev/toolkits/coinranking) - Coinranking is a comprehensive cryptocurrency market data platform offering access to real-time coin prices, market caps, and historical data. Get accurate, up-to-date stats for thousands of digital assets in one place.
- [Coupa](https://composio.dev/toolkits/coupa) - Coupa is a business spend management platform for procurement, invoicing, and expenses. It helps organizations streamline purchasing, control costs, and gain complete visibility over financial operations.
- [CurrencyScoop](https://composio.dev/toolkits/currencyscoop) - CurrencyScoop is a developer-friendly API for real-time and historical currency exchange rates. Easily access fiat and crypto data for smart, up-to-date financial applications.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Givebutter MCP?

With a standalone Givebutter MCP server, the agents and LLMs can only access a fixed set of Givebutter tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Givebutter and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with Atomic Agent?

Yes, you can. Atomic Agent fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Givebutter tools.

### Can I manage the permissions and scopes for Givebutter while using Tool Router?

Yes, absolutely. You can configure which Givebutter scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Givebutter data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
