<!DOCTYPE html> <html lang="en-US"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php global $page_title,$page_meta_description,$noindex,$nofollow,$pagination,$canonical_tag,$show_header,$body_class,$post_author_id; //robots tag if(isset($noindex) || isset($nofollow)){ if(!isset($noindex)){$noindex='';} if(!isset($nofollow)){$nofollow='';} echo '<META NAME="ROBOTS" CONTENT="'.strtoupper($noindex).'INDEX, '.strtoupper($nofollow).'FOLLOW">'."\n"; } //check for custom page_title $meta_data = get_post_meta(get_the_ID()); //canonical_tag if(!is_404()){ if($canonical_tag==''){ echo '<link rel="canonical" href="'.get_site_url().strtolower($GLOBALS['current_page_root_url']).'" />'; }else{ echo '<link rel="canonical" href="'.strtolower($canonical_tag).'" />'; } } ?> <title><?php $display_page_title=''; if(is_404()){ $display_page_title='404 Page Not Found'; }elseif(@strlen($meta_data['page_title'][0])>0){ $display_page_title= $meta_data['page_title'][0]; }elseif(@strlen($page_title)>3){ $display_page_title= $page_title; }elseif ( is_category() ) { $display_page_title= theme_locals("category_for")." &quot;"; $display_page_title.=single_cat_title(); $display_page_title.= '&quot; | '; $display_page_title.=bloginfo( 'name' ); } elseif ( is_tag() ) { $display_page_title= theme_locals("tag_for")." &quot;"; $display_page_title.=single_tag_title(); $display_page_title.= '&quot; | '; $display_page_title.=bloginfo( 'name' ); } elseif ( is_archive() ) { $display_page_title=wp_title(''); $display_page_title.= " ".theme_locals("archive")." | "; $display_page_title.=bloginfo( 'name' ); } elseif ( is_search() ) { $display_page_title= theme_locals("fearch_for")." &quot;".esc_html($s).'&quot; | '; $display_page_title.=bloginfo( 'name' ); } elseif ( is_home() || is_front_page()) { $display_page_title=bloginfo( 'name' ); $display_page_title.= ' | '; $display_page_title.=bloginfo( 'description' ); } elseif ( is_404() ) { $display_page_title= theme_locals("error_404")." | "; $display_page_title.=bloginfo( 'name' ); } elseif ( is_single() ) { $display_page_title=wp_title(''); } else { $display_page_title.=wp_title(''); } //$display_page_title.= ''; echo $display_page_title; $GLOBALS['display_page_title'] = $display_page_title; ?></title> <? if(@strlen($meta_data['meta_description'][0])>0){ echo '<meta name="description" content="'.htmlentities($meta_data['meta_description'][0]).'" />'; }elseif(strlen($page_meta_description)>4){ echo '<meta name="description" content="'.htmlentities($page_meta_description).'" />'; } ?> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="profile" href="//gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'rss2_url' ); ?>" /> <link rel="alternate" type="application/atom+xml" title="<?php bloginfo( 'name' ); ?>" href="<?php bloginfo( 'atom_url' ); ?>" /> <?php /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?> <?php get_template_part("page_elements/analytics"); ?> <?php //get author information $author_option_data=json_decode(get_option("abh_options")); $author_id=get_the_author_meta('ID'); $author_key='abh_author'.$author_id; @$author_details=$author_option_data->$author_key; set_query_var( 'author_details', $author_details ); $author=array(); $author['id'] = get_post_field ('post_author', get_the_ID()); $author['name'] = get_the_author_meta( 'display_name', $author_id ); //$author['url']= get_the_author_meta( 'user_url', $author_id ); if($author['name']=='' || $author['id'] < 6){ // rename all staff writers $author['name']='MastersinSocialWorkonline.org Staff'; } set_query_var( 'author', $author ); ?> <script type="application/ld+json"> <?php //get info for markup $schema_featured_image=get_the_post_thumbnail_url(get_the_ID(),'medium'); ?> { "@context": "https://schema.org", "@type": "Article", "mainEntityOfPage": { "@type": "WebPage", "@id": <?=json_encode(get_site_url().$GLOBALS['current_page_root_url']);?> }, "headline": "<?=$display_page_title;?>", <?php if($schema_featured_image=='') { $schema_featured_image='https://mastersinsocialworkonline.org/wp-content/uploads/2025/08/featured_homepage_image-e1756141686154.png'; } echo '"image": [ '.json_encode($schema_featured_image).' ],'; //get author ?> "datePublished": "<?=get_the_date('',get_the_ID());?>", "dateModified": "<?=get_the_modified_date('',get_the_ID());?>", "author": { "@type": "Person", "name": "<?=$author['name'];?>" }, "isAccessibleForFree": true, "url": <?=json_encode(get_site_url().$GLOBALS['current_page_root_url']);?>, "publisher": { "@type": "Organization", "name": "mastersinsocialworkonline.org", "logo": { "@type": "ImageObject", "url": "https://mastersinsocialworkonline.org/wp-content/uploads/2023/03/MSW-Logo.jpg" } } <?php $schema_description=''; if(@strlen($meta_data['meta_description'][0])>0){ $schema_description=$meta_data['meta_description'][0]; }elseif(strlen($page_meta_description)>4){ $schema_description=$page_meta_description; } if($schema_description!=''){ echo ', "description": '.json_encode($schema_description); } ?> } </script> <?php include( locate_template( 'page_elements/opengraph.php' ) ); ?> </head> <body <?php body_class($body_class); ?> id="page-<?=$post->post_name;?>"> <?php $no_sticky=''; if(isset($show_header)){ if($show_header=='no'){ $no_sticky=' no_sticky'; } } ?> <main> <div class="container"> <header> <?php include( locate_template( 'page_elements/logo.php' ) ); ?> <?php include( locate_template( 'page_elements/nav.php' ) ); ?> </header> </div>

Best MSW Programs in Boston & Massachusetts (2026)

Compare tuition, concentrations, earnings outcomes, and online options across top-ranked Boston-area MSW programs.

By Melissa CarterReviewed by MSWO TeamUpdated August 20, 202625+ min read
Best MSW Programs in Boston & Massachusetts (2026)

Points of interest…

  • Boston-area MSW tuition ranges widely, so multiplying per-credit rates by 60 to 65 required credits is essential for accurate budgeting.
  • Boston College posts the lowest institution-wide acceptance rate at roughly 16 percent, signaling the group's most competitive admissions.
  • Massachusetts requires a two-tier clinical path (LCSW then LICSW), typically taking three to four years after completing your MSW.
  • Several Boston schools offer online or hybrid MSW formats, giving working professionals flexible alternatives to traditional on-campus programs.

National ranking versus local fit: those two criteria pull MSW applicants in different directions, and Massachusetts is one of the few states where you can reasonably pursue both at once. Boston College's School of Social Work carries a top-10 national ranking, while public programs at Bridgewater State and Salem State charge in-state tuition under $10,000 per year. Eleven CSWE-accredited programs across the state, ranging from Chestnut Hill to Springfield, give applicants genuine options across price points, formats, and specializations.

The practical tension here is rarely about prestige. It centers on licensure timelines, debt load, and field placement access. Massachusetts requires the LICSW for independent clinical practice, and that credential takes three to four years of post-MSW supervised experience to earn regardless of which program you attend. Choosing a $70,000-per-year private university over a $9,000-per-year public one does not accelerate that clock.

Boston's density of hospitals, community health centers, schools, and behavioral health agencies makes the region unusually strong for clinical field placements. That infrastructure benefits students at every program in this group, not just those enrolled at the most selective schools.

Best MSW Programs in Boston and Massachusetts: 2026 Rankings

These 2026 rankings highlight CSWE-accredited MSW programs within 100 miles of Boston, including public and private options with campus, hybrid, and online formats. Each school is assessed on what matters to prospective students: cost, completion, earnings potential, and the range of specializations available.

Boston College

#1

Chestnut Hill, MA · ~$42,000/yr (est.)

Best for: Future clinical social workers seeking flexible part-time options

Boston College's MSW offers clinical and macro specializations with full-time, part-time, and advanced standing pathways. Students take 12 required courses and 5 electives, with field placements in schools, hospitals, and nonprofits. Tuition for 2025-26 is $1,436 per credit hour, and every accepted student receives scholarship consideration. The program is CSWE accredited and requires no GRE.

  • 12 required courses and 5 electives
  • Full-time, part-time, and advanced standing pathways
  • Field placements in schools, hospitals, and nonprofits
  • Tuition $1,436 per credit hour for 2025-26
  • No GRE required
  • Scholarships for all accepted students
  • CSWE accredited and ranked #8 nationally
  • Clinical or macro specialization
  • Full-time two-year option
  • Part-time three- or four-year option
  • Advanced standing in 12 or 16 months
  • Field hours 16-24 per week
  • Dual degree options available
  • Application deadlines: November 15, January 15, March 15
  • Fields of practice include mental health
  • Macro social work specialization
  • Six fields of practice
  • 12+ optional certificates
  • 50+ electives available
  • Cohort-based initiatives
  • Application deadlines: November 15, January 15, March 15

Simmons University

#2

Boston, MA · $25,000 – $30,000/yr

Best for: Working Boston professionals needing evening and online courses

Simmons University in Boston offers MSW options that fit working professionals, including full-time, part-time, accelerated, and online formats. The 65-credit program includes 48 classroom credits and 17 practicum credits, with on-campus or online courses and certificate pathways in trauma practice, school social work, and related areas. Simulation education and clinical training in Boston settings are central to the experience. Applicants do not need GRE scores.

  • 65 credit hours: 48 classroom plus 17 practicum
  • Full-time, part-time, and 16-month accelerated options
  • Online and on-campus course options
  • Advanced standing for BSW holders
  • Certificate programs in trauma, school social work, and more
  • $45 application fee
  • Simulation education included
  • Practicum placements required
  • Specialized track for veterans and military families
  • Employment may count as practicum with approval
  • Faculty supervision provided
  • Prepares for clinical licensure
  • Trauma Practice Certificate embedded in MSW
  • Hands-on clinical training emphasis
  • Social justice integrated into curriculum
  • On-campus format

Smith College

#3

Northampton, MA · $25,000 – $30,000/yr

Best for: Students committed to clinical practice and social justice

Smith College's MSW is a clinically focused program that places students in September-to-April internships while bringing cohorts together for summer sessions on campus. The curriculum includes core sequences in practice, human behavior, policy, research, and practicum, with more than 100 electives. Social justice and anti-racism principles run through the program, and financial aid and scholarships are available.

  • Focus on clinical social work
  • Internships from September to April
  • Summer sessions on campus
  • Over 100 elective courses
  • Core principles of racial justice
  • Human behavior and social environment sequences
  • Multi-gender cohort community
  • Financial aid and scholarships available

College of Our Lady of the Elms

#4

Chicopee, MA · $18,000/yr

Elms College designed its MSW for working professionals in Western Massachusetts, with Saturday and weeknight classes and a hybrid format. Students choose between primary care clinical social work and the newer macro practice track, completing 57 credits and 900 practicum hours (500 for advanced standing). Tuition discounts for partner organization employees add to the program's affordability, and CSWE candidacy status is in place.

  • Primary care clinical specialization
  • Flexible Saturday and weeknight classes
  • 57 total credit hours
  • 900 practicum hours required
  • 500 hours for advanced standing
  • No GRE required
  • Tuition discounts for partner organizations
  • 3.0 minimum GPA requirement
  • Macro Social Work specialization
  • Launched Fall 2025
  • 33 credits for generalist practice
  • 24 credits for specialized practice
  • Electives available in other programs

Springfield College

#5

Springfield, MA · ~$31,000/yr (est.)

Springfield College offers a 60-credit advanced generalist MSW that can be completed 100% online or in a hybrid campus format. Courses meet weekday evenings and Saturdays, and the program takes two to three years. Four semesters of practicum are built in, and admissions require an essay, resume, two recommendations, and transcripts. A dual-degree MSW/JD option pairs social work with a law degree.

  • 60-credit advanced generalist program
  • 100% online or hybrid campus formats
  • 2-3 year completion time
  • Monday, Wednesday, and Saturday classes
  • Four-semester practicum required
  • Practicum during weekday business hours
  • Fall, spring, and summer start dates
  • Rolling admissions for some options
  • 33-credit advanced standing track
  • Start in September or May
  • 500-hour practicum
  • 18 hours per week for two semesters
  • One internship required
  • Licensure preparation included
  • 122-125 total credits
  • Four-year completion time
  • Two required internships
  • First internship 400 hours
  • Second internship 500 hours
  • Separate applications required
  • CSWE and ABA accredited

University of Saint Joseph

#6

West Hartford, CT · $28,000/yr (net price)

The University of Saint Joseph prepares clinical social workers through a 61-credit MSW with an advanced standing option for BSW holders. Classes blend online and on-campus formats with full-time and part-time schedules, and specializations include health and mental health, child and family services, and veterans services. Field internships are supervised by licensed clinical social workers, and no GRE is required.

  • 61 credits for standard MSW
  • 31 credits for advanced standing
  • Hybrid online and on-campus classes
  • Full-time or part-time study
  • Health and mental health specialization
  • Child and family services track
  • Veterans services track
  • No GRE required

Bridgewater State University

#7

Bridgewater, MA · $16,000/yr (net price)

Bridgewater State University delivers an MSW focused on advanced social work practice with an evidence-based, social justice foundation. The curriculum follows Council on Social Work Education standards and does not grant credit for life or previous work experience. As a Massachusetts public institution, it offers a meaningful cost advantage for in-state students.

  • Advanced social work practice focus
  • Evidence-based policy and practice
  • Social justice principles
  • No credit for life or work experience
  • CSWE standards followed
  • Graduate funding and tuition assistance options

Central Connecticut State University

#8

New Britain, CT · $17,000/yr

Central Connecticut State University's MSW prepares clinical social workers with trauma-informed healthcare training for mental health settings. The program offers a 30-credit advanced standing option and a 60-credit standard track, with on-campus evening classes and full- or part-time enrollment. Internships and state licensure preparation are part of the curriculum.

  • Clinical social work focus
  • Trauma-informed healthcare training
  • 30-credit advanced standing option
  • 60-credit standard program
  • On-campus evening classes
  • Full-time or part-time attendance
  • Internship opportunities
  • Free on-campus childcare

Salem State University

#9

Salem, MA · $15,000 – $20,000/yr

Salem State University offers an MSW with an integrated health and behavioral health specialization, a strong match for Massachusetts' community mental health priorities. Students can choose full-time, extended, evening, or online course options, with field placements in clinics and schools. The public program is recognized among the top 100 social work programs and prepares graduates for clinical and leadership roles.

  • Integrated health and behavioral health specialization
  • Full-time two-year option
  • Extended study up to four years
  • Evening and online course options
  • Field placements in clinics and schools
  • Advanced standing for BSW graduates
  • Electives in trauma, substance abuse, military and refugee families
  • Top 100 program ranking

Merrimack College

#10

North Andover, MA · $38,000/yr

Merrimack College's CSWE-accredited MSW is an advanced generalist program with a Community Engagement concentration plus elective pathways in criminology and substance use disorders. Students complete 900 hours of field experience in community-based agencies, with evening classes and part-time options available. Substantial scholarships, including Presidential Fellowships covering 36 credits, help offset tuition, and there is no application fee or GRE requirement.

  • Community Engagement concentration
  • 56 credits required
  • 36 credits with advanced standing
  • 900 hours of field experience
  • Evening classes offered
  • Spring, summer, and fall start terms
  • No application fee
  • Presidential Fellowships cover 36 credits
  • Criminology concentration
  • Field placements in criminal justice settings
  • Electives in substance use and school social work
  • Part-time study available
  • No GRE requirement
  • Substance Use Disorders concentration
  • Advanced generalist program
  • Prepares for initial licensure
  • Field placements in relevant settings
  • Dean and alumni scholarships available

Lesley University

#11

Cambridge, MA · $31,000/yr

Lesley University's MSW pairs a 60-credit curriculum with 1,000 hours of in-field training through two immersive internships, and internships are guaranteed upon acceptance. The program emphasizes small cohorts, faculty mentorship, and work with neurodiverse communities, including involvement with Lesley's Threshold Program. Cambridge and Greater Boston agencies anchor the field experience.

  • 60 credits: 27 core counseling, 24 experiential, 9 electives
  • 1,000 hours of in-field training
  • Two immersive internships
  • Guaranteed internships upon acceptance
  • Small cohort settings
  • Faculty mentorship
  • Work with neurodiverse communities
  • Scholar Partner Program available

MSW Tuition and Cost Comparison: Boston-Area Programs

Tuition varies significantly across Boston-area MSW programs, and knowing the per-credit rate is only the starting point. To estimate your total program cost, multiply the per-credit tuition by the number of credits required (typically 60 to 65 for a standard MSW). The figures below reflect published rates; for programs where current tuition has not been independently verified, visit the university's graduate tuition page directly or contact the admissions office for 2025-2026 or 2026-2027 rates. Use each school's net price calculator, available on its financial aid page, to estimate out-of-pocket costs after scholarships, grants, assistantships, or stipends.

UniversityPer-Credit TuitionAcademic YearTypical Total CreditsEstimated Total Program Cost
Boston University$1,2872026-202764$82,368
Boston College$1,4362025-202660$86,160
Simmons UniversityContact admissions for current rateN/A60Contact admissions
UMass BostonContact admissions for current rateN/A60Contact admissions
Salem State UniversityContact admissions for current rateN/A60Contact admissions
Bridgewater State UniversityContact admissions for current rateN/A60Contact admissions

Questions to Ask Yourself

  1. How does your expected debt at graduation compare to your likely starting salary?

    MSW graduates entering direct practice roles often start around $40,000 to $50,000 annually. Borrowing more than one year's expected salary significantly strains repayment, so run the numbers before committing to a higher-cost program.

  2. Do you qualify for in-state tuition at UMass Boston or Salem State?

    Massachusetts residents pay substantially less at public institutions. Confirming residency status before applying could save tens of thousands of dollars over a two-year program.

  3. Does your current employer offer tuition assistance for graduate study?

    Many hospitals, nonprofits, and state agencies in Boston contribute toward MSW tuition for employees. Employer reimbursement combined with part-time enrollment can dramatically reduce out-of-pocket costs.

  4. Does your undergraduate social work degree make you eligible for an advanced standing program?

    BSW holders often qualify to complete their MSW in one year instead of two, cutting both tuition and lost income. Check whether the programs you are considering offer this option and what GPA they require.

Graduate Earnings and Career Outcomes by MSW Program

Program-level earnings data (such as median wages one, two, or five years after graduation) are not yet available for MSW programs at these Massachusetts schools. The table below instead presents institution-wide median earnings ten years after enrollment, alongside median graduate debt, to help you gauge the return-on-investment landscape. Keep in mind that institution-wide figures reflect all graduates across every major, not just social work. For MSW-specific salary context, BLS data for social workers in the Boston-Cambridge-Newton metro area shows median annual wages ranging from roughly $64,000 to $97,000 depending on specialization.

SchoolMSW Tuition (Annual)Median Graduate DebtMedian Earnings 10 Years After Enrollment (All Graduates)Approximate Earnings-to-Debt Ratio
Boston College$37,520$19,000$103,9375.5:1
Merrimack College$36,800$27,000$75,5842.8:1
Smith College$64,870$17,550$64,0273.6:1
Simmons University$28,561$24,840$63,4942.6:1
Bridgewater State University$9,297$24,286$57,4662.4:1
Salem State University$9,360$25,000$56,6622.3:1
Gordon College$8,960$26,250$52,1192.0:1
Elms College$17,670$25,000$51,5402.1:1
Lesley University$19,890$21,000$51,1732.4:1
Springfield College$33,722$26,250$48,0361.8:1
Anna Maria College$10,782$25,000$46,6511.9:1

MSW Earnings Snapshot: 1-Year Vs. 5-Year Median by Program

Program-level earnings data at the 1-year and 5-year marks after completion are not yet published for MSW programs at Boston-area schools. Without verified short-term outcome figures, a grouped comparison chart would be misleading. What we can confirm is the institution-wide median earnings at 10 years after enrollment, which offers a longer-horizon view of how graduates fare financially.

Ten-year median earnings for Massachusetts MSW program institutions range from roughly $52,000 to $104,000

Online Vs. On-Campus MSW Programs in Boston

Choosing between an online and an on-campus MSW program in Boston depends on your professional obligations, learning style, and career goals. Both formats can lead to the same CSWE-accredited degree and prepare you for licensure, but they differ in structure and flexibility.

On-campus programs offer direct access to faculty mentorship, peer collaboration, and Boston's extensive network of social service agencies. Students enrolled in traditional programs at schools like Boston University or Boston College benefit from in-person seminars, campus resources, and structured field placements coordinated through local partnerships. This format works best for those who thrive in face-to-face learning environments and can commit to a fixed class schedule.

Online MSW programs, by contrast, provide the flexibility to complete coursework from anywhere while maintaining employment or caregiving responsibilities. Many accredited online MSW programs use asynchronous lectures, virtual simulations, and discussion boards to replicate the rigor of classroom instruction. Field placements are typically arranged in the student's local community, which means Boston-area residents can still gain hands-on experience at area hospitals, schools, and nonprofits.

Some programs blend both approaches through hybrid models, requiring periodic campus residencies alongside online coursework. This option can be ideal for students who want the convenience of remote learning but value occasional in-person interaction.

Key factors to weigh when deciding include:

  • Scheduling flexibility and ability to attend classes at set times
  • Access to on-campus career services and networking events
  • Tuition differences between online and in-person formats
  • Field placement coordination and supervision requirements
  • Technology comfort level and self-discipline for independent study

Ultimately, the right choice hinges on how each format aligns with your personal circumstances and long-term social work ambitions.

Specializations and Concentrations Offered at Boston MSW Programs

Boston's MSW programs offer a wide range of specializations designed to prepare students for distinct areas of social work practice. Choosing the right concentration shapes your clinical training, fieldwork placements, and long-term career trajectory, so it is worth understanding what each program provides before you apply.

Most programs in the Boston area organize their curricula around two broad tracks: clinical social work and macro social work. Clinical concentrations focus on direct practice with individuals, families, and groups, building skills in assessment, diagnosis, and therapeutic intervention. Macro concentrations, by contrast, prepare students for community organizing, policy advocacy, and program administration. Within these tracks, schools layer additional focus areas that let you tailor your degree further.

Common specializations you will encounter across Boston MSW programs include:

  • Clinical Mental Health, covering evidence-based treatment for anxiety, depression, trauma, and substance use disorders
  • Children, Youth, and Families, emphasizing child welfare, school-based services, and family systems work
  • Health and Behavioral Health, preparing graduates for roles in hospitals, integrated care settings, and public health agencies
  • Community Practice and Social Policy, equipping students to analyze policy, lead nonprofits, and drive systemic change
  • Aging and Gerontology, addressing the needs of older adults through case management and elder care coordination
  • Trauma and Crisis Intervention, a growing focus area that trains practitioners to support survivors of violence, disaster, and displacement

Some programs also offer emerging concentrations in areas like military social work, global social work, and racial justice. For a deeper look at the full landscape of available focus areas, review our MSW specializations guide. If you are leaning toward direct practice and licensure, understanding the path to becoming a licensed clinical social worker is equally important, because your concentration choice directly affects your eligibility for supervised clinical hours after graduation.

When comparing programs, pay attention to whether a specialization is formally designated on your transcript or simply reflected through elective coursework. A formal concentration can signal expertise to employers and licensing boards, giving you a competitive edge in Boston's robust social services job market.

Admissions Requirements and Selectivity for Boston MSW Programs

Boston College admits roughly 16 percent of all applicants institution-wide, making it the most selective school in this group by a wide margin. That figure reflects undergraduate and graduate applicants across all programs, not MSW candidates specifically, but it signals a genuinely competitive academic environment. On the other end of the spectrum, Salem State and Lesley University post institution-wide admission rates above 95 percent, which tends to reflect their open-access mission more than any leniency in MSW-specific review. For a broader look at how competitive graduate social work programs tend to be, see this overview of MSW admission requirements.

What Programs Actually Require

Across Boston-area MSW programs, the application package is fairly consistent. You can expect to submit:

  • Transcripts: Official records from all colleges attended, with most programs expecting an undergraduate GPA in the 3.0 range, though Boston University's traditional and human service experience tracks set no formal GPA minimum.1
  • Personal statement: Required everywhere, and treated seriously. Reviewers want to see self-awareness about why social work, not a generic statement of purpose.
  • References: Most programs ask for two or three letters, typically from academic or professional supervisors rather than personal contacts.
  • Resume or CV: Expected at Simmons, Springfield College, Merrimack, and elsewhere.
  • GRE: Not required at any of the major programs in this group. Boston College, Merrimack, Elms College, and Boston University's online track have all dropped the exam.3 If a program you are considering still lists it, confirm the current policy directly with the admissions office before preparing.

Advanced Standing: Who Qualifies and What It Saves

If you hold a BSW from a CSWE-accredited program, advanced standing is worth examining carefully. It can trim a two-year program to 12 or 16 months by waiving the generalist-year coursework.

Boston University requires a minimum 3.0 GPA for its advanced standing track, a current BSW from a CSWE-accredited school earned within the past six years, and a field evaluation from your undergraduate program.1 Boston College offers an advanced standing path with a spring entry point, which is less common and worth noting if your timeline is off-cycle.4 Simmons offers a 16-month accelerated option, and Salem State accepts BSW graduates into an abbreviated track as well. Elms College sets its advanced standing field hour requirement at 500, compared to 900 for standard students.

Not every applicant with a BSW should automatically choose advanced standing. If your undergraduate field experience was limited or your practice area has shifted significantly, the full foundation year provides grounding that accelerated timelines skip.

Deadlines and Rolling Admissions

Springfield College uses rolling admissions and accepts students for fall, spring, and summer terms, giving more flexibility than programs with a single annual cohort. Merrimack also lists spring, summer, and fall start terms. Most other programs here, including Boston University and Boston College, follow a standard fall entry cycle with priority deadlines in late winter or early spring.

Elms College publishes a July 15 deadline for standard applicants and June 1 for advanced standing candidates, reflecting its later-start calendar. If you are applying to multiple programs, map each deadline independently. Priority rounds typically bring stronger scholarship consideration, not just earlier decisions.

Field Placements and Clinical Hours in Boston's Social Service Ecosystem

Field education is the cornerstone of any MSW program, and Boston's concentration of hospitals, community health centers, and nonprofit organizations creates an exceptionally rich training ground. Both Boston College and Boston University maintain networks of over 1,000 partner agencies, giving students access to placements across clinical, macro, and policy-oriented settings.12

Boston College's School of Social Work publishes its full partner list, which includes sites such as Boston Medical Center, refugee resettlement organizations, and school-based mental health programs.1 This transparency helps incoming students evaluate whether a program aligns with their professional goals before they even apply. BU's School of Social Work uses the Sonia placement tracking system to match students with agencies and monitor progress throughout the practicum year.2 Although BU does not publish a comprehensive partner directory, its field education office works directly with students to arrange placements that meet both curricular requirements and individual career interests.3

If you are still exploring how to navigate the placement process, our guide on social work internships breaks down what to expect at each stage. Securing a strong field placement matters not only for skill development but also for accumulating the supervised clinical hours required for licensure in Massachusetts. Students pursuing a clinical concentration should confirm that their placement site offers supervision by a licensed clinician, as these hours count toward the post-degree requirements for the LCSW.

Boston's social service ecosystem spans large hospital systems, community action agencies, veteran services, child welfare departments, and immigration advocacy organizations. This breadth means that students can tailor their fieldwork to a specific population or practice area, whether that is substance use treatment at a teaching hospital or policy research at a state agency. The depth of options in the metro area is a key reason MSW programs in Boston consistently attract competitive applicants from across the country.

From MSW to LICSW: Massachusetts Licensure Path

Massachusetts uses a two-tier clinical licensure ladder. After earning your MSW from a CSWE-accredited program, you move through the LCSW before advancing to the LICSW, the state's highest independent-practice credential. The full timeline typically runs three to four years post-graduation, depending on how quickly you accumulate supervised hours.

Six-step licensure sequence from MSW graduation through LCSW to LICSW in Massachusetts, requiring 3,500 supervised clinical hours over at least two years

Financial Aid, Scholarships, and Assistantships for MSW Students in Boston

Sticker price versus net price: that distinction matters more in MSW programs than most prospective students realize. Boston-area tuition can look daunting on paper, but the actual amount you pay after scholarships, assistantships, and federal programs often tells a very different story. Start by understanding what each school offers, then layer in external funding. For a broader look at available awards, see our MSW scholarship guide.

Institutional Scholarships and Merit Aid

Boston College School of Social Work reports that 100 percent of accepted MSW students receive some form of scholarship, making it one of the more generous programs in the region.1 Boston University's School of Social Work takes a different approach, offering merit-based awards up to $5,000 along with several named scholarship funds.2 Six MSW students each year receive BU Women's Council Scholarships, and a partnership with City Year awards one full-tuition scholarship and two partial-tuition scholarships to full-time, on-campus MSW students (City Year alumni also receive an application fee waiver).34 Note that BU's online MSW track does not currently offer institutional scholarship support.5 Simmons University and other area programs maintain their own aid packages; contact each financial aid office directly, because terms shift year to year.

Assistantships, Stipends, and Practicum Support

Graduate assistantships at Boston-area schools typically cover a portion of tuition or provide a modest stipend in exchange for research, teaching, or administrative work. These positions are competitive, so apply early. BU also offers practicum stipends for certain field placement sites, which can offset living costs during clinical hours.2 Availability depends on the agency and the academic year, so confirm specifics with your program's field education office.

Federal and State Funding Streams

Several federal programs target social work students specifically:

  • HRSA Behavioral Health Workforce Grants: These fund training slots at eligible schools and sometimes include stipend support for students committing to underserved practice areas.
  • NHSC Loan Repayment: Licensed social workers who practice in federally designated shortage areas can qualify for substantial loan repayment through the National Health Service Corps.
  • Title IV-E Child Welfare Stipends: Massachusetts participates in the Title IV-E program, which provides stipends to MSW students who commit to working in child welfare social work after graduation. Availability and dollar amounts vary by cohort.

Beyond federal sources, NASW Massachusetts offers MSW scholarships up to $12,500 (as listed for the 2025-2026 cycle), making it one of the larger external awards in the state.6

Compare Net Price, Not Sticker Price

The tuition figures in our cost comparison table are a starting benchmark, but your real concern is what you pay after all aid is applied. Request a detailed financial aid offer from every program you are considering, then compare net costs side by side. Factor in living expenses, field placement travel, and any lost income from reducing work hours. A program with higher published tuition but stronger scholarship funding can easily end up cheaper than one that looks affordable at first glance.

Frequently Asked Questions About MSW Programs in Boston

Below are answers to the most common questions prospective students ask about earning a Master of Social Work in the Boston area. Each answer draws on data and details covered earlier in this article.

Earnings vary by employer, specialization, and years of experience. According to the BLS, the national median salary for social workers was roughly $55,350 to $61,190 depending on specialty area (as of the most recent data available). Massachusetts typically reports median wages above the national figure. Specific program-level earnings one year and five years after graduation are detailed in the earnings table earlier in this article.

Boston University's School of Social Work is one of the most recognized MSW programs in the country. It holds CSWE accreditation, offers multiple clinical and macro concentrations, and provides access to an extensive field placement network across Greater Boston's hospitals, schools, and community agencies. BU also offers an online MSW pathway, broadening access for working professionals.

A standard full-time MSW program takes two years (60 credits). Students who hold a BSW from a CSWE-accredited program may qualify for Advanced Standing, which typically condenses the timeline to one year or about 30 to 37 credits. Part-time options at several Boston-area schools extend the program to three or four years.

Tuition ranges widely. Public options such as UMass Boston tend to have lower per-credit rates, while private universities like Boston College, Boston University, and Simmons University charge higher tuition but may offset costs with merit scholarships and assistantships. Total program costs can range from roughly $30,000 at in-state public institutions to over $90,000 at some private schools. The tuition comparison table above breaks down costs program by program.

Most CSWE-accredited MSW programs in Massachusetts require a bachelor's degree (any major), a minimum GPA around 3.0, letters of recommendation, a personal statement, and a resume. Some programs have dropped the GRE requirement. Field experience or volunteer work in human services strengthens an application but is not always mandatory. Advanced Standing applicants need a BSW from a CSWE-accredited program.

Yes. Boston University and Simmons University both offer online or hybrid MSW programs with CSWE accreditation. These programs typically mirror their on-campus counterparts in curriculum and credit requirements, though field placements may be arranged in the student's local community. The online vs. on-campus section earlier in this article compares format differences, scheduling flexibility, and cost.

Massachusetts does not use the LCSW credential. Instead, the state issues the Licensed Independent Clinical Social Worker (LICSW) designation, which is its equivalent. To earn the LICSW, you must complete a CSWE-accredited MSW, accumulate supervised post-graduate clinical hours (typically 3,360 hours over at least two years), and pass the ASWB Clinical exam. The licensure pathway is outlined in the infographic section above.

Recent Articles

<?php $footer_section_1=wp_nav_menu( array( 'container' => 'ul', 'menu_class' => 'footer_menu', 'menu_id' => '', 'depth' => 0, 'theme_location' => 'footer_section_1', 'echo' => false )); $footer_section_2=wp_nav_menu( array( 'container' => 'ul', 'menu_class' => 'footer_menu', 'menu_id' => '', 'depth' => 0, 'theme_location' => 'footer_section_2', 'echo' => false )); $footer_section_3=wp_nav_menu( array( 'container' => 'ul', 'menu_class' => 'footer_menu', 'menu_id' => '', 'depth' => 0, 'theme_location' => 'footer_section_3', 'echo' => false )); $footer_section_4=wp_nav_menu( array( 'container' => 'ul', 'menu_class' => 'footer_menu', 'menu_id' => '', 'depth' => 0, 'theme_location' => 'footer_section_4', 'echo' => false )); ?> <div class="footer_share"> <? get_template_part('page_elements/share_icons'); ?></div> <footer> <div class="container"> <div class="row top_footer"> <div class="col-md-1"> <h5><a href="https://mastersinsocialworkonline.org/">Home</a></h5> <?=$footer_section_1;?> </div> <div class="col-md-3"> <h5><a href="https://mastersinsocialworkonline.org/degrees/">Degrees</a></h5> <?=$footer_section_2;?> </div> <div class="col-md-3"> <h5><a href="https://mastersinsocialworkonline.org/careers/">Careers</a></h5> <?=$footer_section_3;?> </div> <div class="col-md-2"> <h5><a href="https://mastersinsocialworkonline.org/resources/">Resources</a></h5> <?=$footer_section_4;?> </div> <div class="col-md-3 mission"> <h5>Mission</h5> <p>Mastersinsocialworkonline.org empowers students to become skilled social workers and advance their careers through quality online Master of Social Work programs, advocacy, and comprehensive educational resources.</p> <?php echo wp_get_attachment_image ( 7369, 250,'', array('class'=>'website-logo', 'loading' => false )); ?> </div> </div> <div class="d-flex py-4 my-4 lower_footer"> <div class="footer-lower-text"> <p>&copy; <?php echo date('Y'); ?> <?php echo get_bloginfo('name'); ?> All Rights Reserved</p> <p>PLEASE NOTE: This website is for informational purposes only. All trademarks are the property of their respective trademark holders.</p> </div> </div> </footer> </div> </main> <?php wp_footer(); ?> </body> </html>