Federal Contractor

METROPOLITAN SECURITY SERVICES, INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for METROPOLITAN SECURITY SERVICES, INC. (CAGE 3C9W7, UEI M8XJCDL1AE26) covering awards in the last 5 years.

METROPOLITAN SECURITY SERVICES, INC. recorded 4,034 award actions and $1,848,843,162.57 in obligated federal spending over the last 5 years, with an average action value of $458,315.11. Most obligations were under NAICS 561612, Security Guards and Patrol Services, and most activity came from the U.S. Marshals Service.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals are not evenly distributed, with obligations ranging from $217.63 million in 2022 to $566.85 million in 2025, and one small negative obligation appears in CDC data.

CAGE Code
3C9W7
UEI
M8XJCDL1AE26
Total Obligated
1.85 billion
1,848,843,162.57
Award Actions
4,034
Average Action Value
458,315.11

About METROPOLITAN SECURITY SERVICES, INC. federal contract activity

METROPOLITAN SECURITY SERVICES, INC. recorded $1.85 billion in obligations across 4,034 awards in the last 5 years, with an average award value of $458,315.11. The vendor’s activity is heavily concentrated in federal security services work, indicating a large volume of recurring tasking rather than a broad, diversified federal footprint.

Agency mix and customer concentration

The U.S. MARSHALS SERVICE accounts for the dominant share of obligations at $1.76 billion across 3,787 awards, or most of the vendor’s observed federal business. Secondary activity is much smaller and comes from OFFICES, BOARDS AND DIVISIONS and the DISTRICT OF COLUMBIA COURTS, while PUBLIC BUILDINGS SERVICE is minimal and CDC shows a small negative obligated amount, consistent with an adjustment or deobligation.

Industry profile based on NAICS activity

NAICS 561612, Security Guards and Patrol Services, accounts for essentially all observed obligations at $1.85 billion and 4,033 awards. The only other NAICS appearing in the window is 541320, Landscape Architectural Services, with a single award worth $16,262.40, which is immaterial relative to the core security-services profile.

Annual contract trend over the analysis window

Annual obligations rose from $220.01 million in 2021 to a peak of $566.85 million in 2025, with a sustained increase from 2022 through 2025. Award counts fluctuated year to year, peaking at 1,045 in 2024, which suggests changing contract segmentation or ordering patterns rather than a simple monotonic rise in transaction volume.

How to interpret this page

This summary is based on FPDS-observed obligations for the vendor CAGE 3C9W7 and UEI M8XJCDL1AE26 over the last 5 years. Figures are aggregated from reported award data and should be interpreted as procurement activity captured in the dataset, including any negative obligations attributable to adjustments or deobligations.

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 = '3C9W7'
        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
1544 U.S. MARSHALS SERVICE 1,757,189,944.76 1.76 billion 3,787
1501 OFFICES, BOARDS AND DIVISIONS 56,030,043.45 56.03 million 166
9534 DISTRICT OF COLUMBIA COURTS 35,733,180.00 35.73 million 56
4740 PUBLIC BUILDINGS SERVICE 85,993.04 85.99 thousand 24
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION -195,998.68 -196.00 thousand 1

Insight

Over the last 5 years, METROPOLITAN SECURITY SERVICES, INC. received $1.85 billion across 4,034 awards, with obligations highly concentrated in the U.S. Marshals Service. That agency accounts for $1.76 billion and 3,787 awards, representing the vast majority of both obligation value and award count. The remaining agencies combined account for a much smaller share, led by Offices, Boards and Divisions ($56.03 million) and District of Columbia Courts ($35.73 million); Public Buildings Service is minimal at $85.99 thousand, and CDC shows a single negative obligation of $196.00 thousand.

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 = '3C9W7'
        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
561612 SECURITY GUARDS AND PATROL SERVICES 1,848,826,900.17 1.85 billion 4,033
541320 LANDSCAPE ARCHITECTURAL SERVICES 16,262.40 16.26 thousand 1

Insight

Over the last 5 years, obligations for METROPOLITAN SECURITY SERVICES, INC. are overwhelmingly concentrated in NAICS 561612, Security Guards and Patrol Services, which accounts for $1.85 billion and 4,033 of 4,034 awards. This indicates a highly specialized award profile with essentially all activity aligned to the firm’s core security services classification. NAICS 541320, Landscape Architectural Services, represents a single award totaling $16,262.40 and is not material to the overall spend distribution.

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 = '3C9W7'
        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 566,846,928.97 566.85 million 784
2024 480,219,524.06 480.22 million 1,045
2023 364,136,857.02 364.14 million 745
2022 217,631,447.38 217.63 million 599
2021 220,008,405.14 220.01 million 861

Insight

METROPOLITAN SECURITY SERVICES, INC. shows a clear upward obligation trend over the last 5 years, rising from $220.0 million in 2021 to $566.8 million in 2025, with total obligations concentrated in the most recent two years. Award volume is more uneven than dollars, peaking at 1,045 awards in 2024 before declining to 784 in 2025, indicating higher average award values in the latest period. Across the window, the vendor recorded 4,034 awards and $1.85 billion obligated, with an average award value of about $458.3 thousand.

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.