Federal Contractor

METRO MACHINE CORP Federal Contract Obligations (Last 10 Years)

METRO MACHINE CORP has recorded 1,770 federal award actions worth $3.02 billion over the last 10 years, led by Navy shipbuilding and repair work.

METRO MACHINE CORP (CAGE 19468, UEI J1FCJLK5LGU5) is tied primarily to Department of the Navy procurement, with 1,727 actions and $3.01 billion obligated in NAICS 336611, Ship Building and Repairing. Its remaining federal activity is concentrated in maritime support work, including 42 actions and $18.83 million through the Maritime Administration.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals in this view show the highest obligations in 2024 at $547.98 million and 2025 at $308.90 million, with 2021 at the low point among the displayed years at $76.60 million.

CAGE Code
19468
UEI
J1FCJLK5LGU5
Total Obligated
3.02 billion
3,023,963,913.90
Award Actions
1,770
Average Action Value
1,708,454.18

About METRO MACHINE CORP federal contract activity

METRO MACHINE CORP (CAGE 19468, UEI J1FCJLK5LGU5) received 1,770 FPDS-recorded awards over the last 10 years, with total obligations of $3.02 billion and an average award value of $1.71 million. The vendor’s federal revenue profile is highly concentrated and contract-driven, with award activity dominated by a small number of agencies and one primary industrial segment.

Agency mix and customer concentration

The DEPT OF THE NAVY accounts for nearly all observed activity, with $3.01 billion across 1,727 awards, indicating a strong dependence on Navy procurement. The only other material source is the MARITIME ADMINISTRATION at $18.83 million across 42 awards, while the DCMA record shows no obligated value. This mix suggests limited agency diversification and a procurement relationship centered on maritime and naval requirements.

Industry profile based on NAICS activity

NAICS 336611, SHIP BUILDING AND REPAIRING, represents the vendor’s core federal business, capturing $3.01 billion across 1,727 awards. NAICS 488390, OTHER SUPPORT ACTIVITIES FOR WATER TRANSPORTATION, is a distant secondary category at $18.83 million and 42 awards, and the remaining coded activity is immaterial. The NAICS profile is therefore overwhelmingly concentrated in shipbuilding and repair.

Annual contract trend over the analysis window

Annual obligations have been volatile but remain substantial, peaking at $547.98 million in 2024 after $299.95 million in 2023 and $417.97 million in 2022. The 2025 figure of $308.90 million through the reported period remains elevated relative to 2021, which posted $76.60 million. Across the period shown, the data indicate sustained large-scale naval procurement with year-to-year fluctuations rather than a steady linear trend.

How to interpret this page

This summary is based on FPDS award records attributed to METRO MACHINE CORP using the provided CAGE code and UEI over the last 10 years. Obligations are summarized by agency, NAICS code, and fiscal year using total obligated dollars and award counts as supplied, without extrapolation beyond the provided dataset.

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 10 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 3,005,134,849.92 3.01 billion 1,727
6938 MARITIME ADMINISTRATION 18,829,063.98 18.83 million 42
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Over the last 10 years, METRO MACHINE CORP’s obligations are highly concentrated in the Department of the Navy, which accounts for $3.01 billion of the $3.02 billion total and 1,727 of 1,770 awards. The Maritime Administration represents a much smaller secondary source of demand at $18.83 million across 42 awards. DCMA records one award with no obligated value, indicating negligible spend outside the two primary agencies.

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 10 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 3,005,134,849.92 3.01 billion 1,727
488390 OTHER SUPPORT ACTIVITIES FOR WATER TRANSPORTATION 18,829,063.98 18.83 million 42
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 0.00 0.00 1

Insight

METRO MACHINE CORP’s obligations over the last 10 years are highly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for 3.01 billion of 3.02 billion in total obligations and 1,727 of 1,770 awards. The only other material activity is NAICS 488390, Other Support Activities for Water Transportation, at 18.83 million across 42 awards, indicating a narrow secondary presence in water transportation support. NAICS 541710 appears only once and with no obligated value, suggesting negligible activity outside the firm’s core shipbuilding-related 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 10 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
2020 444,790,608.92 444.79 million 221
2019 534,037,262.35 534.04 million 232
2018 134,977,830.19 134.98 million 203
2017 258,764,413.16 258.76 million 256

Insight

Over the last 10 years, METRO MACHINE CORP (CAGE 19468) received $3.02 billion across 1,770 awards, averaging $1.71 million per award. Obligations are unevenly distributed year to year, ranging from $76.60 million in 2021 to $547.98 million in 2024, indicating significant annual volatility rather than a steady growth pattern. Recent activity remains elevated, with $308.90 million in 2025 following the 2024 peak, while prior years also show substantial fluctuations between roughly $134.98 million and $534.04 million.

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