Federal Contractor

MANSON CONSTRUCTION CO. Federal Contract Obligations (Last 5 Years)

MANSON CONSTRUCTION CO. (CAGE 0FCP9, UEI UJGKNVYG6UZ3) recorded 1.58 billion in federal obligations across 497 actions in the last 5 years.

MANSON CONSTRUCTION CO. is concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction, which accounts for nearly all reported obligation value and actions. The Department of the Army is the largest customer by obligation, followed by the Department of the Navy and several civilian agencies.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the stated 5-year analysis window and may include a small negative adjustment in NAICS 237110 and minor rounding differences.

CAGE Code
0FCP9
UEI
UJGKNVYG6UZ3
Total Obligated
1.58 billion
1,577,558,982.21
Award Actions
497
Average Action Value
3,174,162.94

About MANSON CONSTRUCTION CO. federal contract activity

MANSON CONSTRUCTION CO. (CAGE 0FCP9, UEI UJGKNVYG6UZ3) recorded $1.58 billion in obligated federal dollars across 497 awards over the last 5 years, for an average award value of $3.17 million. The profile is heavily concentrated in heavy civil and marine-adjacent construction activity, with award volume spread across a relatively small set of agencies and a strong concentration in a single dominant NAICS code.

Agency mix and customer concentration

The DEPT OF THE ARMY is the primary customer, accounting for $1.11 billion across 381 awards, or the clear majority of total obligated dollars. The DEPT OF THE NAVY is the second-largest agency at $318.14 million across 84 awards, while NOAA, the Farm Production and Conservation Business Center, and the National Park Service represent smaller but material portions of the remaining activity.

Industry profile based on NAICS activity

Award activity is overwhelmingly aligned to NAICS 237990, OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION, which accounts for essentially all reported obligation and nearly all awards in the period. A single small negative-obligation record appears under NAICS 237110, WATER AND SEWER LINE AND RELATED STRUCTURES CONSTRUCTION, but it does not change the overall concentration in heavy civil construction.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at $465.38 million across 133 awards, then remained elevated in 2024 at $366.35 million across 100 awards and 2025 at $275.98 million across 108 awards. The five-year series shows a clear ramp from $166.72 million in 2021 to a higher operating level in subsequent years, indicating sustained procurement demand rather than a one-year spike.

How to interpret this page

This summary is based on FPDS obligations associated with MANSON CONSTRUCTION CO. over the last 5 years, using the provided CAGE code 0FCP9 and UEI UJGKNVYG6UZ3. Agency, NAICS, and annual views reflect reported obligation totals and award counts only; negative obligation values are retained as reported.

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 = '0FCP9'
        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
2100 DEPT OF THE ARMY 1,113,329,158.11 1.11 billion 381
1700 DEPT OF THE NAVY 318,140,318.47 318.14 million 84
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 65,199,086.02 65.20 million 10
12D0 FARM PRODUCTION AND CONSERVATION BUSINESS CENTER 43,625,911.33 43.63 million 8
1443 NATIONAL PARK SERVICE 37,264,508.28 37.26 million 14

Insight

Over the last 5 years, MANSON CONSTRUCTION CO. has derived most of its federal obligations from the DEPT OF THE ARMY, which accounts for $1.11 billion across 381 awards, or about 70% of total obligated dollars. The DEPT OF THE NAVY is the second-largest customer at $318.14 million across 84 awards, bringing the two defense agencies to roughly 91% of all obligations. Non-defense activity is comparatively limited and fragmented, with smaller totals spread across NOAA, the Farm Production and Conservation Business Center, and the National Park Service.

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 = '0FCP9'
        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
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 1,577,561,982.21 1.58 billion 496
237110 WATER AND SEWER LINE AND RELATED STRUCTURES CONSTRUCTION -3,000.00 -3.00 thousand 1

Insight

Over the last 5 years, MANSON CONSTRUCTION CO. shows near-total concentration in NAICS 237990, Other Heavy and Civil Engineering Construction, which accounts for essentially all obligated dollars and 496 of 497 awards. NAICS 237110, Water and Sewer Line and Related Structures Construction, appears only once and records a nominal negative obligation of $3,000, indicating no meaningful diversification across NAICS categories. Overall, the vendor’s award profile is highly specialized and driven by a single primary construction category.

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 = '0FCP9'
        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 275,978,085.33 275.98 million 108
2024 366,351,843.92 366.35 million 100
2023 465,382,923.12 465.38 million 133
2022 303,130,882.05 303.13 million 95
2021 166,715,247.79 166.72 million 61

Insight

Over the last 5 years, MANSON CONSTRUCTION CO. (CAGE 0FCP9) obligated $1.58 billion across 497 awards, averaging $3.17 million per award. Obligations increased from $166.72 million in 2021 to a peak of $465.38 million in 2023, then remained elevated but lower at $366.35 million in 2024 and $275.98 million in 2025. Award volume generally tracked obligated dollars, rising from 61 awards in 2021 to 133 in 2023 before moderating to 100 in 2024 and 108 in 2025.

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.