# Donately — MCP server on mcp.ai > Connect your Donately account and use 10 tools for fundraising straight from your AI agent. Connect with your own API key. Donately is a fundraising platform for managing campaigns, donations, recurring giving, donors, forms, fundraisers, and webhooks. By: mcp.ai · official Page: https://mcp.ai/donately ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_donately?ms=1787291520000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/donately/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/donately/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/donately/skill.md Postman collection (v2.1): https://mcp.ai/donately/postman.json ## Tools - donately_get_current_account() — Return the Donately account associated with the connected API token, including its identity, currency, status, and billing plan. - donately_get_form(form_id: string) — Return a specific Donately donation form and its embedded configuration by form ID. - donately_get_person(person_id: string) — Return a specific Donately donor or contact by person ID. - donately_list_campaigns(limit?: integer, cursor?: string, status?: string, keyword?: string, campaign_type?: string, has_fundraisers?: boolean) — List campaigns in the connected Donately account, optionally filtering by publication state, type, keyword, or fundraiser availability. - donately_list_donations(limit?: integer, cursor?: string, status?: string, keyword?: string, currency?: string, anonymous?: boolean, person_id?: string, recurring?: boolean, campaign_id?: string, donation_type?: string, fundraiser_id?: string, amount_in_cents?: integer) — List donation records in the connected account and filter them by status, related donor or fundraising resource, payment type, or other common attributes. - donately_list_forms(limit?: integer, cursor?: string) — List donation forms in the connected Donately account, including default-form and form configuration information returned by Donately. - donately_list_fundraisers(limit?: integer, cursor?: string, campaign_id?: string) — List peer-to-peer fundraisers in the connected Donately account, optionally limited to one campaign. - donately_list_people(limit?: integer, cursor?: string, keyword?: string) — List donors and contacts in the connected Donately account, optionally searching by keyword. - donately_list_subscriptions(limit?: integer, cursor?: string) — List recurring donation subscriptions in the connected Donately account. - donately_list_webhooks(limit?: integer, cursor?: string) — List webhook registrations configured for the connected Donately account. ## Example prompts - "What can I do in Donately?" - "Show me a summary of my Donately account" ## Links Docs: https://mcp.ai/docs/mcps/donately Website: https://mcp.ai/mcps/donately