Federal Contractor

M1 SUPPORT SERVICES, L.P. Federal Contract Obligations (Last Year)

M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1, UEI PNAFHATW8BD7) recorded 809.24 million in obligations across 161 award actions in the last full year.

The vendor's activity was concentrated with the Department of the Army and the Department of the Air Force, which together accounted for the full 809.24 million obligated in the period. By NAICS, most obligations were tied to other support activities for air transportation, with a smaller share under aircraft manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Analysis reflects the last full year and uses obligation totals, award counts, and agency and NAICS rollups from the provided FPDS data.

CAGE Code
3KXK1
UEI
PNAFHATW8BD7
Total Obligated
809.24 million
809,242,158.89
Award Actions
161
Average Action Value
5,026,348.81

About M1 SUPPORT SERVICES, L.P. federal contract activity

M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1, UEI PNAFHATW8BD7) recorded 161 FPDS awards totaling 809.24 million in obligations over the last full year, for an average award value of 5.03 million. The vendor’s obligation base is concentrated in a relatively small number of awards, indicating meaningful reliance on a limited set of contract actions rather than broad, low-dollar activity.

Agency mix and customer concentration

Obligations were split primarily between the Department of the Army at 463.41 million across 22 awards and the Department of the Air Force at 345.84 million across 139 awards. The Army represented the larger dollar share, while the Air Force accounted for the majority of award count, suggesting different contracting patterns across the two agencies.

Industry profile based on NAICS activity

The vendor’s activity was dominated by NAICS 488190, Other Support Activities for Air Transportation, with 702.96 million across 129 awards. NAICS 336411, Aircraft Manufacturing, added 106.28 million across 32 awards, showing a secondary concentration in aircraft-related industrial support and production.

Annual contract trend over the analysis window

The available annual trend covers 2025 only, with 809.24 million obligated across 161 awards. Because the analysis window is limited to one full year, the dataset supports a point-in-time profile rather than a multi-year trajectory or growth assessment.

How to interpret this page

This summary uses FPDS award records tied to CAGE 3KXK1 and UEI PNAFHATW8BD7 for the last full year. Totals, counts, averages, and category breakdowns reflect the supplied analysis window and are rounded where noted; no additional sources or inferred attributes were used.

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 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
2100 DEPT OF THE ARMY 463,406,837.96 463.41 million 22
5700 DEPT OF THE AIR FORCE 345,835,320.93 345.84 million 139

Insight

In the last full year, M1 SUPPORT SERVICES, L.P. received 809.24 million in obligations across 161 awards, with funding concentrated in two agencies. The DEPT OF THE ARMY accounted for 463.41 million, or the larger share of total obligations, across 22 awards, while the DEPT OF THE AIR FORCE obligated 345.84 million across 139 awards. This indicates a split award pattern: Army dollars were concentrated in fewer, higher-value actions, while Air Force obligations were distributed across a larger number of lower-value awards.

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 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
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION 702,959,149.91 702.96 million 129
336411 AIRCRAFT MANUFACTURING 106,283,008.98 106.28 million 32

Insight

M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1) received $809.24 million across 161 awards in the last full year, with an average award value of $5.03 million. Obligations are highly concentrated in NAICS 488190, Other Support Activities for Air Transportation, which accounts for $702.96 million and 129 awards, or most of the vendor’s obligated dollars and award volume. NAICS 336411, Aircraft Manufacturing, represents the remaining $106.28 million across 32 awards, indicating a secondary but materially smaller line of business.

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 1 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

Insight

In the last full year, M1 SUPPORT SERVICES, L.P. (CAGE 3KXK1) recorded $809.24 million in obligations across 161 awards, averaging $5.03 million per award. Activity is fully concentrated in FY 2025 within the 1-year window, so no multi-year trend can be assessed from this view. The volume of awards relative to total obligations indicates a mix of award sizes, with overall spend concentration in a single fiscal 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.