Federal Contractor

MISSION SUPPORT AND TEST SERVICES LLC Federal Contract Obligations (Last 5 Years)

MISSION SUPPORT AND TEST SERVICES LLC recorded 211 federal award actions over the last 5 years, with 4.97 billion obligated, almost all from the Department of Energy.

This page summarizes federal procurement activity for MISSION SUPPORT AND TEST SERVICES LLC, CAGE 7HSD0, UEI YSYZHPCG4XB3, across the last 5 years. The vendor's obligations were concentrated in Department of Energy awards and primarily classified under NAICS 561210, Facilities Support Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable obligation and action counts for the stated 5-year analysis window, with annual and agency figures shown as provided.

CAGE Code
7HSD0
UEI
YSYZHPCG4XB3
Total Obligated
4.97 billion
4,970,733,065.16
Award Actions
211
Average Action Value
23,557,976.61

About MISSION SUPPORT AND TEST SERVICES LLC federal contract activity

MISSION SUPPORT AND TEST SERVICES LLC (CAGE 7HSD0, UEI YSYZHPCG4XB3) recorded 211 FPDS awards totaling $4.97 billion over the last 5 years, with an average award value of $23.56 million. The profile is highly concentrated, with nearly all obligated dollars tied to a single civilian agency and a single primary NAICS code.

Agency mix and customer concentration

The U.S. Department of Energy accounts for $4.97 billion across 192 awards, or effectively the full observed obligation base for the period. The Federal Acquisition Service is a minor secondary customer, with 19 awards totaling $105.48 thousand, indicating limited diversification outside DOE.

Industry profile based on NAICS activity

NAICS 561210, Facilities Support Services, represents the core of the vendor’s activity, matching the DOE concentration with $4.97 billion across 192 awards. NAICS 811111, General Automotive Repair, appears only as a narrow residual category with $105.48 thousand across 19 awards, suggesting incidental rather than strategic relevance.

Annual contract trend over the analysis window

Obligations remained above $800 million in each year of the analysis window, rising from $995.80 million in 2021 to $1.17 billion in 2025. The pattern shows a dip in 2022 and a sustained recovery through 2023-2025, while award volume increased from 32 in 2021 to 55 in 2025.

How to interpret this page

This summary is based on FPDS obligations and award counts associated with CAGE 7HSD0 and UEI YSYZHPCG4XB3 over the last 5 years. Agency, NAICS, and annual figures are aggregated from the provided analysis window and may reflect rounding in readable values.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7HSD0'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 4,970,627,588.36 4.97 billion 192
4732 FEDERAL ACQUISITION SERVICE 105,476.80 105.48 thousand 19

Insight

Over the last 5 years, obligations for MISSION SUPPORT AND TEST SERVICES LLC are overwhelmingly concentrated in the Department of Energy, which accounts for $4.97 billion across 192 awards. Federal Acquisition Service activity is minimal by comparison, totaling $105.48 thousand across 19 awards. This distribution indicates a highly concentrated vendor profile with essentially all obligated value tied to a single agency.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7HSD0'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
561210 FACILITIES SUPPORT SERVICES 4,970,627,588.36 4.97 billion 192
811111 GENERAL AUTOMOTIVE REPAIR 105,476.80 105.48 thousand 19

Insight

Over the last 5 years, obligations for MISSION SUPPORT AND TEST SERVICES LLC are overwhelmingly concentrated in NAICS 561210, Facilities Support Services, with $4.97 billion obligated across 192 awards. This NAICS accounts for essentially all reported activity, indicating a highly focused contracting profile. By contrast, NAICS 811111, General Automotive Repair, represents only $105.5 thousand across 19 awards and does not materially affect the overall distribution.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7HSD0'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 1,170,810,329.50 1.17 billion 55
2024 1,044,422,125.88 1.04 billion 38
2023 922,022,642.74 922.02 million 41
2022 837,676,938.86 837.68 million 45
2021 995,801,028.18 995.80 million 32

Insight

MISSION SUPPORT AND TEST SERVICES LLC obligated 4.97 billion across 211 awards over the last five years, with a mean award value of 23.56 million, indicating a relatively concentrated award profile. Annual obligations were broadly stable near the 0.8 billion to 1.0 billion range from 2021 through 2024, then increased to 1.17 billion in 2025, the highest year in the period. Award volume was highest in 2025 at 55 awards and lowest in 2021 at 32 awards, suggesting recent growth in both funding and action count.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.