Federal Contractor

M V M, INC. Federal Contract Obligations (Last Year)

FPDS analysis for M V M, INC. (CAGE 0BUL6, UEI ZHJYA5NN32Z5) shows $120.61 million in obligations across 21 actions in the last full year, driven primarily by security guard and patrol services work for U.S. Immigration and Customs Enforcement.

In the last full year, M V M, INC. recorded 21 federal award actions totaling $120,610,146.27, for an average action value of $5,743,340.29. The agency mix was led by U.S. Immigration and Customs Enforcement, and the NAICS profile was concentrated in 561612 Security Guards and Patrol Services.

Generated at 03/21/2026

Analysis period: Last full year

Negative obligation values in some agency and NAICS rows reflect deobligations or downward adjustments and are included as reported in FPDS.

CAGE Code
0BUL6
UEI
ZHJYA5NN32Z5
Total Obligated
120.61 million
120,610,146.27
Award Actions
21
Average Action Value
5,743,340.29

About M V M, INC. federal contract activity

M V M, INC. (CAGE 0BUL6, UEI ZHJYA5NN32Z5) received 21 awards totaling 120.61 million in obligations over the last full year, for an average award value of 5.74 million. The vendor’s award base is concentrated in a relatively small number of actions, indicating meaningful dependence on a limited set of transactions.

Agency mix and customer concentration

U.S. Immigration and Customs Enforcement accounts for the largest share of reported obligations at 134.83 million across 13 awards, making it the primary agency relationship in the period. The remaining agency mix is materially smaller and includes negative obligated amounts at several offices, which suggests deobligations, adjustments, or closeout activity rather than additional net spending.

Industry profile based on NAICS activity

The vendor’s obligations are overwhelmingly tied to NAICS 561612, Security Guards and Patrol Services, which accounts for 134.73 million across 15 awards. Other NAICS codes appear only marginally and include negative obligated amounts in legal services and emergency/relief services, reinforcing that the portfolio is highly concentrated in security-related work.

Annual contract trend over the analysis window

The annual trend data shows all reported activity in 2025, with 120.61 million obligated across 21 awards. No multi-year pattern can be inferred from the provided window, but the full-year total indicates a sizable level of obligation activity in a single year.

How to interpret this page

This summary is based on FPDS award data for the last full year and reflects obligated amounts, not outlays or revenue. Agency and NAICS groupings are ranked by total obligated dollars in the provided dataset, and negative values are retained as reported to capture deobligations or adjustments.

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 = '0BUL6'
        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
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 134,833,129.37 134.83 million 13
7590 ADMINISTRATION FOR CHILDREN AND FAMILIES -7,429.00 -7.43 thousand 1
1501 OFFICES, BOARDS AND DIVISIONS -101,529.10 -101.53 thousand 4
4732 FEDERAL ACQUISITION SERVICE -14,114,025.00 -14.11 million 3

Insight

During the last full year, M V M, INC. (CAGE 0BUL6) received 21 awards totaling $120.61 million, with an average award value of $5.74 million. Obligations were highly concentrated with U.S. Immigration and Customs Enforcement, which accounted for $134.83 million across 13 awards. Other listed agencies had comparatively small or negative net obligations: Administration for Children and Families (-$7.43 thousand), Offices, Boards and Divisions (-$101.53 thousand), and Federal Acquisition Service (-$14.11 million).

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 = '0BUL6'
        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
561612 SECURITY GUARDS AND PATROL SERVICES 134,732,300.99 134.73 million 15
541199 ALL OTHER LEGAL SERVICES -700.72 -700.72 2
624230 EMERGENCY AND OTHER RELIEF SERVICES -14,121,454.00 -14.12 million 4

Insight

M V M, INC. (CAGE 0BUL6) is heavily concentrated in NAICS 561612, Security Guards and Patrol Services, which accounts for 15 of 21 awards and $134.73 million in obligations over the last full year. The remaining obligations are marginal and negative in two categories: NAICS 624230, Emergency and Other Relief Services, at -$14.12 million across 4 awards, and NAICS 541199, All Other Legal Services, at -$700.72 across 2 awards. Overall, the vendor’s activity is highly focused in one primary service area, with limited secondary distribution and offsetting negative obligations in other NAICS codes.

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 = '0BUL6'
        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 120,610,146.27 120.61 million 21

Insight

Over the last full year, M V M, INC. (CAGE 0BUL6) recorded $120.61 million in obligated value across 21 awards, averaging about $5.74 million per award. The annual profile is fully concentrated in 2025, indicating all observed obligated activity in the 1-year window occurred in a single year with no year-to-year variation in the provided period. This suggests a concentrated award distribution rather than a multi-year trend.

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.