This vendor profile summarizes federal procurement activity for M1 SUPPORT SERVICES, L.P. under CAGE 3KXK1 and UEI PNAFHATW8BD7 over the last five years. The company’s obligations were concentrated in air transportation support work, led by NAICS 488190, with annual obligations ranging from $702.48 million to $917.87 million.
Federal Contractor
M1 SUPPORT SERVICES, L.P. Federal Contract Obligations (Last 5 Years)
M1 SUPPORT SERVICES, L.P. recorded $4.18 billion in obligations across 756 federal awards in the last five years, with most activity tied to the Department of the Army and the Department of the Air Force.
Totals reflect readable and exact obligated values from the analysis window, and one NAICS record shows a small negative obligated amount.
About M1 SUPPORT SERVICES, L.P. federal contract activity
M1 SUPPORT SERVICES, L.P. has received 756 awards totaling $4.18 billion over the last 5 years, with an average award value of $5.53 million. The contracting profile is highly concentrated in aviation-related support work, indicating a recurring role in operational sustainment and mission support rather than a broad, diversified federal footprint.
Agency mix and customer concentration
Obligations are concentrated in the Department of the Army and the Department of the Air Force, which together account for the full reported $4.18 billion. The Army leads by obligated value at $2.56 billion across 129 awards, while the Air Force follows with $1.63 billion across 627 awards, suggesting larger but fewer awards from the Army and a higher-volume relationship with the Air Force.
Industry profile based on NAICS activity
The vendor’s NAICS profile is dominated by 488190, Other Support Activities for Air Transportation, which represents $3.99 billion across 656 awards and defines the core of the company’s federal work. Smaller portions appear in 336411 Aircraft Manufacturing and 811219 Other Electronic and Precision Equipment Repair and Maintenance, while 541330 Engineering Services is de minimis and negative, indicating an adjustment rather than a meaningful line of business.
Annual contract trend over the analysis window
Annual obligations remained consistently strong across the period, ranging from $702.48 million in 2021 to a high of $917.87 million in 2024. The data show a sustained upward level of activity through 2024, followed by a still-substantial $809.24 million in 2025, with award counts staying relatively stable year to year.
How to interpret this page
This summary is based on FPDS obligations associated with the provided CAGE code and UEI over the last 5 years. Agency, NAICS, and annual totals are reported as-observed from the supplied dataset; negative obligations are retained as recorded and may reflect deobligations or corrections.
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 = '3KXK1'
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 |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 2,556,109,444.96 | 2.56 billion | 129 |
| 5700 | DEPT OF THE AIR FORCE | 1,626,341,055.46 | 1.63 billion | 627 |
Insight
Over the last 5 years, M1 SUPPORT SERVICES, L.P. received $4.18 billion across 756 awards, with obligations concentrated in two agencies. The DEPT OF THE ARMY accounted for $2.56 billion across 129 awards, representing the larger share of dollars while the DEPT OF THE AIR FORCE obligated $1.63 billion across 627 awards. This indicates a dollar concentration in Army awards and a higher award volume, but lower average obligation per award, at the Air Force level.
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 = '3KXK1'
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 |
|---|---|---|---|---|
| 488190 | OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION | 3,993,623,021.52 | 3.99 billion | 656 |
| 336411 | AIRCRAFT MANUFACTURING | 165,713,858.19 | 165.71 million | 81 |
| 811219 | OTHER ELECTRONIC AND PRECISION EQUIPMENT REPAIR AND MAINTENANCE | 23,114,326.69 | 23.11 million | 18 |
| 541330 | ENGINEERING SERVICES | -705.98 | -705.98 | 1 |
Insight
Over the last 5 years, M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1) has received $4.18 billion across 756 awards, with obligations highly concentrated in NAICS 488190, Other Support Activities for Air Transportation, which accounts for $3.99 billion and 656 awards. NAICS 336411, Aircraft Manufacturing, is a distant second at $165.71 million across 81 awards, followed by NAICS 811219, Other Electronic and Precision Equipment Repair and Maintenance, at $23.11 million across 18 awards. Obligations in other NAICS codes are minimal, including a single negative obligation of $705.98 in NAICS 541330, indicating the vendor’s recent federal work is overwhelmingly concentrated in air transportation support.
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 = '3KXK1'
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 | 809,242,158.89 | 809.24 million | 161 |
| 2024 | 917,869,787.19 | 917.87 million | 159 |
| 2023 | 859,940,234.23 | 859.94 million | 154 |
| 2022 | 892,919,994.18 | 892.92 million | 136 |
| 2021 | 702,478,325.93 | 702.48 million | 146 |
Insight
M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1) obligated $4.18 billion across 756 awards over the last 5 years, averaging $5.53 million per award. Annual obligations were relatively stable from 2022 through 2025, ranging from $809.24 million to $917.87 million, following a lower base in 2021 at $702.48 million. Award volume remained similarly steady, with yearly counts between 136 and 161, indicating a consistent delivery profile and no pronounced concentration in a single year.
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.