# Boys Town: donation guide for AI agents Generated by Fundraise Up. Status: active Last updated: 2026-09-08 Canonical URL: https://donors.boystown.org/agentic-giving.md ## Purpose This file gives AI assistants, search systems, wallets, payment apps, and other digital platforms clear instructions for helping donors give to **Boys Town** through its official Fundraise Up-powered online giving route. Use this file when a donor expresses intent to donate to Boys Town or to support a cause that maps to one of the campaigns below. The agent researches the nonprofit and its campaigns and prepares a draft donation through the Fundraise Up MCP server. Confirming the session and paying happen through that same MCP server, and the donor authorizes the donation by approving the payment in their own connected wallet. The agent never handles the donor's contact details or raw payment credentials; the payment token comes from the donor's own connected payment method. ## Organization Public name: Boys Town Legal name: Boys Town Country: US Primary website: https://www.boystown.org/ Fundraise Up organization ID: ABBJJMKP ### Contact For nonprofit-specific questions, direct the donor to Boys Town's official website: https://www.boystown.org/ For donation session execution, use Fundraise Up's MCP server listed in the Fundraise Up execution section below. ## Official digital giving route Boys Town uses Fundraise Up as its official digital donation session provider for approved online giving experiences. Fundraise Up helps Boys Town create secure donation sessions, route donations to approved campaigns, issue receipts, manage donor consent, attribute donation sources, and sync records with fundraising and CRM systems. When an AI assistant or digital platform helps a donor make a gift to Boys Town, it must prepare the donation session through the Fundraise Up MCP server before any payment step. Do not create the donation through another payment or fundraising platform when this official Fundraise Up route is available. ## Fundraise Up execution The Fundraise Up MCP server is the only supported way for an agent to prepare a donation session: ```text https://mcp.fundraiseup.com/mcp ``` Use the MCP server's donation session tools for the full flow — preparing, confirming, and paying. Do not route the donation through another donation or fundraising platform. Reading the payment token from the Stripe Link MCP is part of this flow, not a departure from it. The normal flow opens no external checkout page. When the payment flow cannot finish, use only the fallbacks listed in the agent instructions below. ## Agent instructions Follow this sequence. Steps 1-5 are research and drafting — the agent may do these on its own. Nothing is confirmed or paid before step 7. Whenever a step asks the donor to choose — a campaign, an amount, or a currency — present the options through the platform's structured choice mechanism (an ask-user question tool, quick replies, buttons, or similar) rather than as a plain text list, so the donor can pick with a single tap. Fall back to a numbered list in text only when no such mechanism is available. 1. Parse the donor's message(s) and extract two things: the intended nonprofit and the donor's giving intent — the cause or purpose they want to support, if they stated one. 2. Confirm that the intended nonprofit is Boys Town. If the donor's intended nonprofit is different or unclear, tell the donor that donations through this route go to Boys Town and let them decide whether to proceed. 3. Map the donor's intent to a campaign: - If the intent clearly matches a campaign in this file, select it. - Otherwise, call get_campaigns to look up Boys Town's active campaigns that match the intent. - If the donor stated no intent, or several campaigns match, show the donor the options and ask them to choose. - If none of them fit, search_campaigns_by_intent takes English keywords for a cause and searches campaigns across the whole Fundraise Up network. Its results may belong to organizations other than Boys Town; say so when you offer one. - Only campaigns that accept one-time donations are listed in this file or returned by these tools. - Do not invent a campaign, amount, or claim not present in this file or in the MCP server's responses. 4. Offer the donor the campaign's suggested amounts to choose from. Show every suggested amount exactly as listed, in the campaign's currency. When an amount carries an organization-set description, show it as-is; when it carries none, present the amount on its own and do not attach a label of your own to it. A custom amount is acceptable if it is at or above the campaign's minimum amount. Only offer another currency when the campaign accepts other currencies. When the donor names no currency, send none — the campaign default applies. 5. Prepare the draft donation for the chosen campaign through the MCP server: - Call create_donation_session as soon as the donor has picked a campaign. Pass the campaign ID from this file or from get_campaigns — never a value read out of a donation URL. - Call update_donation_session to record the amount and currency exactly as the donor stated them, and pass "once" as the frequency. Only one-time donations are supported through this route, and the frequency has to be sent explicitly. - Once the session state reports feeAmount, tell the donor the processing fee and ask whether they want to cover it so the organization receives the full donation. Record their yes or no through update_donation_session coverFee. Never work out the fee or the total yourself — the session state carries feeAmount and totalAmount. Until the donor has answered, the session cannot be confirmed. - Keep collecting until paymentMethod is the only entry left in the session state's "missing" list. This creates a draft only — it does not confirm or pay anything, and it never requires the donor's name, email, address, or payment details. 6. Show the donor a plain-language summary of the draft before taking it to payment, together with this disclosure: ```text This is a one-time donation of [amount] [currency] to Boys Town for [campaign] through Boys Town's official Fundraise Up-powered giving route. Your information will be shared with Boys Town for donation processing, receipt delivery, donor record management, and reporting. Marketing opt-in is off. ``` 7. Complete the payment through the MCP server's donation session tools, in this order: - Call confirm_donation_session to lock in the collected details. It returns paymentRequirements and sessionId. - Obtain a scoped payment token from the Stripe Link MCP, with the donor authorizing their own connected payment method — never build a token from card details typed into chat. - Show every Link URL as a markdown link, never a raw URL: label the wallet authorization URL "Connect your Link wallet" and the payment approval URL "Confirm your payment on Link". - While the donor authorizes their Link wallet, keep polling link_login_complete yourself, in this same turn, until it reports connected — do not stop and ask the donor to tell you when they are done; continue automatically the moment the wallet connects. Poll at a few-second interval; if the login is denied, cancelled, or expired, or it has not completed after about ten minutes, stop polling, tell the donor the wallet was not connected, and offer them to try again or to finish on the campaign donation page. - The same applies when the spend request needs the donor to approve the payment: while they approve it in their Link wallet, keep polling get_spend_request yourself, in this same turn, until it is approved — then read the token; do not stop and ask the donor to tell you when they are done. Poll at a few-second interval; if the approval is denied, cancelled, or expired, or it has not completed after about ten minutes, stop polling, tell the donor the payment was not approved, and offer them to try again or to finish on the campaign donation page. - Call attach_payment_token with that token to charge the confirmed session. Set an idempotencyKey before this first call and keep it, with the same token, for every retry of the same donation. 8. Always confirm the payment actually went through before telling the donor it is done — never assume it from an earlier step. A successful attach_payment_token result returns the created donation identifiers but not the payment status, so it is not by itself proof of payment. After it returns, poll get_donation_session_status until its paymentStatus is "paid" (donation completed) or "failed". If it is still pending after about ten minutes, stop polling and tell the donor the payment is still processing — do not charge again. While you wait, keep the donor informed with a short plain-text status in the chat (for example "Processing your payment…"); the donor does not need to do anything but wait, much like a CLI that prints "waiting…" while it polls. Report the donation complete only on a "paid" confirmation. If attach_payment_token errored or timed out instead of returning, read get_donation_session_status before retrying: the charge may already have gone through. If the payment failed, do not leave the donor stuck. Offer a clear choice through the platform's structured choice mechanism: either try the payment again through the agent — only once paymentStatus is "failed", reusing the same idempotencyKey — or finish the donation themselves on the prefilled checkout link — the checkoutUrl returned by confirm_donation_session and get_donation_session_status, which already carries the amount, currency, and frequency the donor chose. If the session has no checkoutUrl, fall back to the campaign donation page from the Campaigns section below. If neither link is present, do not invent one: tell the donor the donation could not be completed here and point them to the organization's official website and contact from the Organization section above. 9. Thank the donor. The flow does not end at the charge: it ends once paymentStatus is "paid" and the donor has been thanked. Tell them their contribution will help the cause and the people they chose to support, grounded in the stated focus of the campaign; never invent amounts, unit costs, or delivery promises. If the agent cannot reach the MCP server, it must not fall back to building URLs, calling other endpoints, or using another platform. Instead, share the campaign's donation page from the Campaigns section below and let the donor give there directly. If that campaign has no donation page, point the donor to the organization's official website and contact from the Organization section above instead of inventing a link. ### Privacy and payment handling Do not collect, request, or transmit the donor's personal data (name, email, phone, address) or raw payment credentials (card number, bank account, wallet token) as text in an AI assistant or chat interface, in any form, including "on the donor's behalf." Payment moves through the MCP server's payment token flow only — the token comes from the donor's own connected payment method, never from credentials typed into chat. Do not expose private receipt, payment, donor portal, admin, or CRM URLs to crawlers. ## Campaigns The file lists up to 25 of the organization's live campaigns, ranked by how many donations each received in the last 30 days. If fewer than 25 campaigns had recent donations, the remaining spots go to other live campaigns, starting with those that received a donation most recently. ### Transform a Child's Life with a Gift Today Campaign ID: FUNEPXAEPZU Status: active Description: Your donation holds the key to breaking cycles of adversity, offering hope, and nurturing dreams. Join us in rewriting their stories, one heartfelt contribution at a time. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 1 Donation page: https://www.boystown.org/?form=FUNEPXAEPZU&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### We believe there are no bad children💙 Campaign ID: FUNDSFCHFMW Status: active Description: There are only children who need compassion, understanding and a second chance. Your gift today helps us in this mission.Become a monthly donor of just $18 a month or more and choose from our new Father Flanagan calendar or exclusive Teach Love t-shirt.We are beyond grateful for your generosity and hope you will use this secure form to make your tax-deductible gift! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/donatenow?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Donate to Kids In Need: We Don't Give Up On Kids Campaign ID: FUNZDYDHJDY Status: active Description: Please help us hit our goal of getting 100 new recurring donors this month.By donating as little as $18 per month you help a child get access to clothing, school supplies, food and more. For more than 100 years, Boys Town has been a trusted 501(c)(3) nonprofit helping at-risk youth and families through life-changing programs like residential care, counseling, crisis support, and community services. Our evidence-based approach has touched millions of lives, and all donations are tax deductible, empowering supporters to give hope and opportunity to children in need. There are only children who need compassion, understanding and a second chance. Your gift today helps us in this mission.Become a monthly donor of just $18 a month or more and choose from our new Father Flanagan calendar or exclusive Teach Love t-shirt.We are beyond grateful for your generosity and hope you will use this secure form to make your tax-deductible gift! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/FUNZDYDHJDY?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Transform a Child's Life with a Gift Today Campaign ID: FUNDQKZPVQX Status: active Description: Your donation holds the key to breaking cycles of adversity, offering hope, and nurturing dreams. Join us in rewriting their stories, one heartfelt contribution at a time. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 5, 10, 25, 50, 100, 250 Custom amount: yes Minimum amount: 1 Donation page: https://www.boystown.org/?form=virtualterminal&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### We believe there are no bad children💙 Campaign ID: FUNNAMAHAAW Status: active Description: There are only children who need compassion, understanding and a second chance. Your gift today helps us in this mission.Become a monthly donor of just $18 a month or more and choose from our new Father Flanagan calendar or exclusive Teach Love t-shirt.We are beyond grateful for your generosity and hope you will use this secure form to make your tax-deductible gift! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=give&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Your Generosity Can Make a Difference Campaign ID: FUNAAZFUCHW Status: active Description: Your donation to Boys Town can transform a child's life, offering them hope and a brighter future.💙Give today and be the reason a child gets a second chance to succeed. 💙 Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/givenow?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### We believe there are no bad children Campaign ID: FUNQNFSHBEL Status: active Description: There are only children who need compassion, understanding and a second chance. Your gift today helps us in this mission.Become a monthly donor of just $18 a month or more and choose from our new Father Flanagan calendar or exclusive Teach Love t-shirt.We are beyond grateful for your generosity and hope you will use this secure form to make your tax-deductible gift! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=givemonthly&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Give a Child a Place to Call Home Campaign ID: FUNRFNWKLLF Status: active Description: When a child has a safe place to belong, everything can change. At Boys Town, we believe every child deserves a safe and caring home. Children need compassion, understanding and a second chance. Your gift provides the stability, guidance, and support children need, creating a foundation where they can heal, grow, and build a brighter future. Your support helps make that possible. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 10, 20, 25, 30, 50, 100 Custom amount: yes Minimum amount: 1 Donation page: https://www.boystown.org/?form=FUNRFNWKLLF&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### You Can Help Change a Child's Life Campaign ID: FUNRHYEVPJR Status: active Description: America’s most vulnerable and victimized children find safety, stability and shelter at Boys Town.The impact your gift makes on the lives of these forgotten children AND the society they become a part of is crucial. Donate $18 monthly or $212 once and get an exclusive Support Second Chances T-shirt. This gift is limited to U.S. residents only. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/give-second-chances?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Donate to Kids In Need: We Don't Give Up On Kids Campaign ID: FUNANYTZDRC Status: active Description: Please help us hit our goal of getting 100 new recurring donors this month.By donating as little as $18 per month you help a child get access to clothing, school supplies, food and more. For more than 100 years, Boys Town has been a trusted 501(c)(3) nonprofit helping at-risk youth and families through life-changing programs like residential care, counseling, crisis support, and community services. Our evidence-based approach has touched millions of lives, and all donations are tax deductible, empowering supporters to give hope and opportunity to children in need. There are only children who need compassion, understanding and a second chance. Your gift today helps us in this mission.Become a monthly donor of just $18 a month or more and choose from our new Father Flanagan calendar or exclusive Teach Love t-shirt.We are beyond grateful for your generosity and hope you will use this secure form to make your tax-deductible gift! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/FUNANYTZDRC?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Your Gift Can Go Twice as Far for Kids in Need Campaign ID: FUNYYVXNBDP Status: active Description: For a child in crisis, one caring voice can make all the difference. Boys Town is there to answer that call day and night, offering real support when it matters most.Through September 30, your gift could be matched dollar for dollar, up to $50,000. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 100, 50, 40, 30, 25, 20 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=FUNYYVXNBDP&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### 2X MATCH for a Limited Time! Campaign ID: FUNDBJVYEZE Status: active Description: Together, we can DOUBLE our impact for at-risk youth and ensure Boys Town continues providing the resources families need to heal and thrive.For a limited time, all gifts could be matched up to $50,000. Make your tax-deductible donation today. 💙Plus, when you commit to $18 or more per month, we'll send you a FREE exclusive gift as a token of gratitude! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=holiday&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### You Can Help Change a Child's Life Campaign ID: FUNNNZRLZKF Status: active Description: America’s most vulnerable and victimized children find safety, stability, and shelter at Boys Town. Your gift changes everything.It brings hope and healing to forgotten children and helps them grow into strong, caring members of our communities. Thank you for believing in them and supporting this important work with your tax-deductible gift today. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/secondchances?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Help Create the Stability Children Need to Grow Campaign ID: FUNFDHBXLDQ Status: active Description: Every child deserves a place where they feel safe, supported and valued. Your monthly support helps create the stable environment, caring relationships and everyday moments that allow children at Boys Town to build confidence and look toward a brighter future. Because of compassionate supporters like you, children can experience the stability, encouragement and sense of belonging they need to heal, grow and thrive. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=FUNFDHBXLDQ&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Join the Town and Give Monthly Campaign ID: FUNKVZENHMM Status: active Description: With your monthly support, children at risk and in danger will ALWAYS have a place to call HOME. 💙 Commit to $18 monthly and choose your FREE gift, an exclusive Father Flanagan perpetual daily calendar, or a Teach Love T-shirt. 💙 Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=teach-love&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Support Lifesaving Programs for Kids Campaign ID: FUNLMNPHUEB Status: active Description: Every year, 1 in 6 youth face mental health challenges. We know that children across America are struggling. Last year, the Boys Town Hotline stopped 435 suicides in progress and answered calls, texts and emails from nearly 100,000 individuals.Your donation helps provide immediate mental health support at the most critical times. You can save a life. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/mentalhealth?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Support Father Flanagan's Dream Campaign ID: FUNHBATDMVE Status: active Description: Father Flanagan, founder of Boys Town, has been declared Venerable by Pope Leo XIV, bringing him one step closer to sainthood. This milestone honors a man whose belief that "no boy is bad" has guided our mission for more than 100 years.Help us keep this dream alive with your gift today."The work will continue, you see, whether I am there or not, because it is God's work, not mine." - Father Flanagan Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/flanagan?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### 2X MATCH for a Limited Time! Campaign ID: FUNZSWRPSND Status: active Description: Together, we can DOUBLE our impact for at-risk youth and ensure Boys Town continues providing the resources families need to heal and thrive.💙 For a limited time, all gifts could be matched, up to $50,000. 💙 Your generosity is so appreciated. Please make your tax-deductible holiday gift today. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/holidays?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Support Lifesaving Programs for Kids Campaign ID: FUNWRKVWHVE Status: active Description: In the last 20 years, more than 10,800 youth suicides have been prevented thanks to the Boys Town National Hotline.Your donation helps ensure these lifesaving programs for kids remain open and accessible in times of crisis. Will you help us answer the call? Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/supportkids?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Your Generosity Can Make a Difference Campaign ID: FUNBVTTRGGA Status: active Description: With your support, children at risk and in danger will ALWAYS have a place to call HOME. Our goal this month is to welcome 108 new monthly supporters to celebrate 108 incredible years of saving children.💙 Commit to $18 monthly or give $212 once and choose your FREE gift, an exclusive Father Flanagan perpetual daily calendar, or a Teach Love T-shirt. 💙 Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=teachloveoffer&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### One Good Day Can Change Everything Campaign ID: FUNBAFXMLAC Status: active Description: Every child deserves the chance to experience hope, healing and a brighter future. Your generosity helps create the moments that can change the course of a child's life. Thank you for standing with Boys Town and believing every child deserves a second chance. Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://www.boystown.org/?form=FUNBAFXMLAC&recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Sponsor a Boys Town Family Home Campaign ID: FUNZVJAZXSN Status: active Description: The Boys Town Family Home Program is a beacon of hope for at-risk youth from across the United States. Every day we are helping forgotten children find their way to a loving family, sound education and spiritual guidance.Thank you for your generosity. As a family sponsor, you’ll receive exclusive updates, right from the heart of your Family Home! 🏠 💙 Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/sponsor?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### 2X MATCH for a Limited Time! Campaign ID: FUNJWNBWEQC Status: active Description: Together, we can DOUBLE our impact for at-risk youth and ensure Boys Town continues providing the resources families need to heal and thrive.For a limited time, thanks to a generous group of anonymous donors, all gifts could be matched up to $48,000! Please make your tax-deductible holiday gift today.💙Your generosity is so appreciated! 💙 Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/yearend_holidays_match?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Donate to Kids In Need: We Don't Give Up On Kids Campaign ID: FUNYRTPYKHL Status: active Description: Please help us hit our goal of getting 100 new recurring donors this month.By donating as little as $18 per month you help a child get access to clothing, school supplies, food and more. For more than 100 years, Boys Town has been a trusted 501(c)(3) nonprofit helping at-risk youth and families through life-changing programs like residential care, counseling, crisis support, and community services. Our evidence-based approach has touched millions of lives, and all donations are tax deductible, empowering supporters to give hope and opportunity to children in need. There are only children who need compassion, understanding and a second chance. Your gift today helps us in this mission.Become a monthly donor of just $18 a month or more and choose from our new Father Flanagan calendar or exclusive Teach Love t-shirt.We are beyond grateful for your generosity and hope you will use this secure form to make your tax-deductible gift! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 50, 75, 100, 150, 250, 500 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/FUNYRTPYKHL?recurring=once¤cy=USD&utm_source=fundraiseup_agent ### Your Support Makes Dreams Come True Campaign ID: FUNHLLYWMDJ Status: active Description: Your generosity empowers our seniors as they prepare to take their next big step toward bright, successful futures.Your donation helps provide Boys Town graduates with a stable place to live, ongoing educational support, and a support system to catch them if they fall.Honor a graduate with your most generous gift today! Default currency: USD Other currencies accepted: no Allowed frequencies: once Suggested once amounts: 1000, 500, 250, 100, 50, 25 Custom amount: yes Minimum amount: 5 Donation page: https://donors.boystown.org/page/graduation?recurring=once¤cy=USD&utm_source=fundraiseup_agent