Federal Contractor

MANSON CONSTRUCTION CO. Federal Contract Obligations (Last Year)

MANSON CONSTRUCTION CO. (CAGE 0FCP9, UEI UJGKNVYG6UZ3) received 108 federal award actions totaling $275.98 million in the last full year.

MANSON CONSTRUCTION CO. recorded $275,978,085.33 in obligated federal awards across 108 actions during the last full year, with an average action value of $2,555,352.64. Most of the activity came from the Department of the Army ($205.38 million across 84 awards) and the Department of the Navy ($65.57 million across 16 awards), all under NAICS 237990, Other Heavy and Civil Engineering Construction.

Generated at 03/21/2026

Analysis period: Last full year

Agency and NAICS totals reflect obligated amounts for the stated analysis window and may include actions with zero obligation.

CAGE Code
0FCP9
UEI
UJGKNVYG6UZ3
Total Obligated
275.98 million
275,978,085.33
Award Actions
108
Average Action Value
2,555,352.64

About MANSON CONSTRUCTION CO. federal contract activity

MANSON CONSTRUCTION CO. (CAGE 0FCP9, UEI UJGKNVYG6UZ3) recorded 108 FPDS awards totaling $275.98 million in the last full year, with an average award value of $2.56 million. The profile reflects a large-volume federal contractor with obligations concentrated in a relatively small number of high-value actions.

Agency mix and customer concentration

The Department of the Army was the dominant customer, accounting for $205.38 million across 84 awards, or roughly three-quarters of total obligations. The Department of the Navy was the next-largest source of work at $65.57 million across 16 awards, while NOAA contributed a much smaller $4.52 million across 6 awards; the remaining listed agencies were immaterial by comparison.

Industry profile based on NAICS activity

All reported obligations were concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction, which captured the full $275.98 million and all 108 awards. This indicates a highly focused contracting profile centered on heavy civil and infrastructure construction work.

Annual contract trend over the analysis window

The annual trend shows $275.98 million in obligations in 2025, matching the full analysis window total. With 108 awards in the year, the data indicate sustained execution rather than a scattered or multi-industry award pattern.

How to interpret this page

This summary is based on FPDS award records for the last full year and uses obligated dollars as the primary measure of contract value. Agency, NAICS, and annual trend sections reflect only the values provided in the analysis window and do not infer performance, backlog, or revenues beyond recorded federal obligations.

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 1 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 205,377,871.27 205.38 million 84
1700 DEPT OF THE NAVY 65,571,909.46 65.57 million 16
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 4,520,573.67 4.52 million 6
12D0 FARM PRODUCTION AND CONSERVATION BUSINESS CENTER 507,730.93 507.73 thousand 1
1443 NATIONAL PARK SERVICE 0.00 0.00 1

Insight

Over the last full year, MANSON CONSTRUCTION CO. obligated $275.98 million across 108 awards, with procurement activity highly concentrated in two defense agencies. The Department of the Army accounted for $205.38 million on 84 awards, or about 74% of total obligated dollars, while the Department of the Navy added $65.57 million on 16 awards, bringing the combined Army/Navy share to roughly 98%. Non-defense activity was limited to NOAA ($4.52 million, 6 awards) and a single Farm Production and Conservation Business Center award ($507.73 thousand), with one National Park Service award carrying no obligated value.

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 1 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 275,978,085.33 275.98 million 108

Insight

Over the last full year, MANSON CONSTRUCTION CO. (CAGE 0FCP9) recorded 108 awards totaling $275.98 million, with an average award value of about $2.56 million. All reported obligated dollars in this window are concentrated in NAICS 237990, Other Heavy and Civil Engineering Construction, indicating a complete reliance on a single industry classification for the period. This level of concentration suggests a narrowly focused procurement profile with no diversification across other NAICS codes in the analyzed year.

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 1 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

Insight

During the last full year, MANSON CONSTRUCTION CO. (CAGE 0FCP9) recorded $275.98 million in obligated awards across 108 actions, yielding an average award value of about $2.56 million. The annual profile is concentrated entirely in FY 2025, so no year-over-year trend can be assessed from the provided 1-year window. This indicates a high level of obligation volume within a single fiscal year, with awards distributed across a relatively moderate number of actions rather than a small set of very large awards.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.