Federal Contractor

METRO MACHINE CORP Federal Contract Obligations (Last 5 Years)

Federal procurement profile for METRO MACHINE CORP (CAGE 19468, UEI J1FCJLK5LGU5) covering obligations, awards, agencies, and NAICS activity over the last 5 years.

METRO MACHINE CORP recorded $1.65 billion in obligated federal awards across 858 actions in the last 5 years, with an average action value of $1.92 million. Most of this activity came from the Department of the Navy and was concentrated in NAICS 336611, Ship Building and Repairing.

Generated at 03/21/2026

Analysis period: Last 5 years

This profile reflects FPDS award data for the last 5 years and uses obligated amounts as reported in the source records.

CAGE Code
19468
UEI
J1FCJLK5LGU5
Total Obligated
1.65 billion
1,651,393,799.28
Award Actions
858
Average Action Value
1,924,701.39

About METRO MACHINE CORP federal contract activity

METRO MACHINE CORP (CAGE 19468, UEI J1FCJLK5LGU5) recorded 858 awards totaling $1.65 billion over the last 5 years, with an average award value of $1.92 million. The obligation base is highly concentrated in a small number of awards tied to ship-related work, indicating a specialized federal contracting profile rather than broad diversification.

Agency mix and customer concentration

DEPT OF THE NAVY accounts for $1.64 billion across 836 awards, representing the overwhelming majority of METRO MACHINE CORP’s federal obligations in the period. MARITIME ADMINISTRATION is a distant second at $12.52 million across 22 awards, confirming that the vendor’s federal business is overwhelmingly maritime and defense-adjacent.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, dominates the portfolio with $1.64 billion and 836 awards. NAICS 488390, Other Support Activities for Water Transportation, contributes the remaining $12.52 million across 22 awards, showing a narrow industrial focus centered on shipyard and water-transport support work.

Annual contract trend over the analysis window

Annual obligations were strongest in 2024 at $547.98 million, followed by 2022 at $417.97 million and 2025 at $308.90 million. Awards dipped to $76.60 million in 2021 before rebounding sharply, while award counts remained consistently high, ranging from 142 to 202 per year. The pattern suggests a cyclical but sustained procurement relationship with large annual fluctuations in obligated dollars.

How to interpret this page

This summary is based on FPDS award data for the last 5 years and reflects obligations, award counts, and NAICS/agency concentration for METRO MACHINE CORP. Totals and percentages are derived from the provided metric set and rounded for readability; no additional sources or unprovided contract attributes were inferred.

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 = '19468'
        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
1700 DEPT OF THE NAVY 1,638,873,002.89 1.64 billion 836
6938 MARITIME ADMINISTRATION 12,520,796.39 12.52 million 22

Insight

Over the last 5 years, METRO MACHINE CORP’s obligated dollars are highly concentrated with the DEPT OF THE NAVY, which accounts for $1.64 billion across 836 awards, or nearly all reported obligations for the vendor. MARITIME ADMINISTRATION represents a much smaller share at $12.52 million across 22 awards, indicating limited distribution beyond the Navy. This pattern suggests a strong dependence on a single federal customer, with only minor activity in a second 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 = '19468'
        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
336611 SHIP BUILDING AND REPAIRING 1,638,873,002.89 1.64 billion 836
488390 OTHER SUPPORT ACTIVITIES FOR WATER TRANSPORTATION 12,520,796.39 12.52 million 22

Insight

Over the last 5 years, METRO MACHINE CORP’s obligations are overwhelmingly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for $1.64 billion of the firm’s $1.65 billion in total obligations and 836 of 858 awards. NAICS 488390, Other Support Activities for Water Transportation, is a distant second at $12.5 million across 22 awards, indicating a highly focused contract profile. The average award value across the period is $1.92 million, but overall activity is driven primarily by shipbuilding and repair work.

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 = '19468'
        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 308,898,704.12 308.90 million 157
2024 547,980,682.00 547.98 million 181
2023 299,946,970.62 299.95 million 202
2022 417,968,343.50 417.97 million 142
2021 76,599,099.04 76.60 million 176

Insight

Over the last 5 years, METRO MACHINE CORP recorded 1.65 billion in obligated value across 858 awards, averaging about 1.92 million per award. Annual obligations are concentrated in 2022-2025, which account for most of the 5-year total, with 2024 as the peak year at 547.98 million and 181 awards. Award volume is relatively distributed across years, ranging from 142 to 202 awards, while obligated value is more variable, indicating larger average award sizes in select years rather than steady annual growth.

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.