This vendor’s federal procurement record is dominated by security guard and patrol services, which account for nearly all obligated value across the analysis window. The U.S. Marshals Service is the primary customer, with $2.28 billion obligated across 5,896 actions, while annual obligations have remained above $200 million in each year shown from 2021 through 2025.
Federal Contractor
METROPOLITAN SECURITY SERVICES, INC. Federal Contract Obligations (Last 10 Years)
METROPOLITAN SECURITY SERVICES, INC. (CAGE 3C9W7, UEI M8XJCDL1AE26) recorded 6,187 federal award actions totaling $2,381,841,520.99 over the last 10 years.
Totals reflect readable FPDS obligations for the last 10 years and may include small negative adjustments in agency-level data.
About METROPOLITAN SECURITY SERVICES, INC. federal contract activity
METROPOLITAN SECURITY SERVICES, INC. (CAGE 3C9W7, UEI M8XJCDL1AE26) recorded $2.38 billion in obligated awards across 6,187 actions over the last 10 years, with an average award value of $384,975.19. The profile is heavily concentrated in a single service category, indicating a sustained federal role in security guard and patrol operations rather than a diversified contract base.
Agency mix and customer concentration
The U.S. MARSHALS SERVICE accounts for the overwhelming majority of obligations, at $2.28 billion across 5,896 awards, making it the dominant customer by a wide margin. Secondary activity is much smaller and is concentrated in OFFICES, BOARDS AND DIVISIONS and the DISTRICT OF COLUMBIA COURTS, while PUBLIC BUILDINGS SERVICE represents a minimal share. The CENTERS FOR DISEASE CONTROL AND PREVENTION shows a small net negative obligation over two awards, which is unusual relative to the broader award pattern.
Industry profile based on NAICS activity
NAICS 561612, Security Guards and Patrol Services, explains essentially all of the vendor’s federal activity, with $2.38 billion and 6,186 awards over the period. The only other recorded NAICS is 541320, Landscape Architectural Services, at $16,262.40 and one award, which is immaterial to the overall mix. This indicates a highly specialized procurement footprint with little category diversification.
Annual contract trend over the analysis window
Annual obligations have remained strong and accelerated in recent years, rising from $220.0 million in 2021 to $566.85 million in 2025. Award counts fluctuated by year, with a peak of 1,045 awards in 2024, suggesting that growth in total obligations has not been driven solely by transaction volume. The pattern points to continued high federal demand for the vendor’s core security services.
How to interpret this page
This summary is based on FPDS award data for the last 10 years, using obligated dollars and award counts associated with the vendor’s CAGE code and UEI. Agency, NAICS, and annual figures are reported as provided in the source dataset and may reflect modifications, deobligations, or administrative adjustments where negative obligations appear. Totals are descriptive of recorded FPDS activity and do not represent performance, pricing, or completeness beyond the analyzed window.
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 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 |
|---|---|---|---|---|
| 1544 | U.S. MARSHALS SERVICE | 2,284,678,562.07 | 2.28 billion | 5,896 |
| 1501 | OFFICES, BOARDS AND DIVISIONS | 61,701,928.24 | 61.70 million | 202 |
| 9534 | DISTRICT OF COLUMBIA COURTS | 35,733,180.00 | 35.73 million | 56 |
| 4740 | PUBLIC BUILDINGS SERVICE | 90,349.96 | 90.35 thousand | 31 |
| 7523 | CENTERS FOR DISEASE CONTROL AND PREVENTION | -362,499.28 | -362.50 thousand | 2 |
Insight
Over the last 10 years, Metropolitan Security Services, Inc. received $2.38 billion across 6,187 awards, with obligations heavily concentrated at the U.S. Marshals Service. That agency accounts for $2.28 billion and 5,896 awards, or roughly 96 percent of total obligated dollars and 95 percent of award count, indicating a highly concentrated customer base. The next largest sources of obligations were Offices, Boards and Divisions ($61.70 million) and District of Columbia Courts ($35.73 million), while all other listed agencies contributed only nominal amounts, including a small negative obligation at CDC.
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 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 |
|---|---|---|---|---|
| 561612 | SECURITY GUARDS AND PATROL SERVICES | 2,381,825,258.59 | 2.38 billion | 6,186 |
| 541320 | LANDSCAPE ARCHITECTURAL SERVICES | 16,262.40 | 16.26 thousand | 1 |
Insight
Over the last 10 years, METROPOLITAN SECURITY SERVICES, INC. received 2.38 billion in obligations across 6,187 awards, with a strong concentration in NAICS 561612, Security Guards and Patrol Services. That NAICS accounts for 2.38 billion and 6,186 awards, indicating the vendor’s federal contracting activity is overwhelmingly centered in its core security services line. NAICS 541320, Landscape Architectural Services, appears only once and totals 16.26 thousand, representing a negligible share of total obligations.
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 10 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 |
| 2020 | 178,715,206.39 | 178.72 million | 560 |
| 2019 | 139,805,380.76 | 139.81 million | 448 |
| 2018 | 115,152,285.72 | 115.15 million | 466 |
| 2017 | 98,825,170.38 | 98.83 million | 672 |
| 2016 | 500,315.17 | 500.32 thousand | 7 |
Insight
METROPOLITAN SECURITY SERVICES, INC. (CAGE 3C9W7) shows a strong upward obligation trend over the last 10 years, with $2.38 billion obligated across 6,187 awards and an average award value of $384,975. Obligations were heavily concentrated in the most recent four years, led by 2025 at $566.85 million and 2024 at $480.22 million, compared with materially lower annual totals from 2016 through 2020. Award volume is also elevated in recent years, though not perfectly aligned with dollars, indicating larger average award sizes in the highest-obligation periods.
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.