Federal Contractor

MANTECH TSG-2 JOINT VENTURE Federal Contract Obligations (Last 5 Years)

MANTECH TSG-2 JOINT VENTURE has received 1.58 billion in federal obligations across 1,512 award actions over the last 5 years, led by work for the Department of the Air Force.

This vendor page summarizes federal procurement activity for MANTECH TSG-2 JOINT VENTURE, CAGE 6YN54, UEI V9KKND8S1KJ3, over the last 5 years. The company’s obligations are concentrated in research and development work, especially NAICS 541715, with most awards flowing through the Department of the Air Force.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect obligated dollars in the selected analysis window and may include negative adjustments in agency-level results.

CAGE Code
6YN54
UEI
V9KKND8S1KJ3
Total Obligated
1.58 billion
1,583,840,275.39
Award Actions
1,512
Average Action Value
1,047,513.40

About MANTECH TSG-2 JOINT VENTURE federal contract activity

MANTECH TSG-2 JOINT VENTURE recorded $1.58 billion in obligated awards across 1,512 actions in the last 5 years, with an average award value of about $1.05 million. The profile is heavily concentrated in federal research and development work, indicating a sustained role in technical services and applied R&D contracting.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounted for nearly all reported obligations at $1.59 billion across 1,477 awards, making it the dominant customer by both dollars and volume. DCMA shows a negative obligation total of $7.63 million across 35 awards, which suggests net deobligations or adjustments in the record set rather than a standalone procurement stream.

Industry profile based on NAICS activity

NAICS 541715, covering R&D in the physical, engineering, and life sciences except nanotechnology and biotechnology, represents the core of the vendor’s activity with $1.56 billion and 1,381 awards. NAICS 541712 is a secondary line of business at $22.51 million across 131 awards, reinforcing that the vendor’s contract base is concentrated in scientific and engineering research.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $479.36 million, then declined to $295.05 million in 2025, though 2025 remains within the same general range as prior years. The multi-year pattern is relatively stable, with annual obligations staying between $243.94 million and $479.36 million and award counts clustering around 263 to 322 per year.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts for the last 5 years tied to CAGE 6YN54 and UEI V9KKND8S1KJ3. Totals reflect the provided analysis window and may include deobligations or adjustments where agency-level obligations are negative.

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 = '6YN54'
        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
5700 DEPT OF THE AIR FORCE 1,591,466,576.07 1.59 billion 1,477
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -7,626,300.68 -7.63 million 35

Insight

Over the last 5 years, obligations to MANTECH TSG-2 JOINT VENTURE are overwhelmingly concentrated at the Department of the Air Force, which accounts for $1.59 billion across 1,477 awards. DCMA shows a net negative obligated amount of $7.63 million across 35 awards, indicating downward adjustment activity within the period. Overall, the vendor’s 1,512 awards and $1.58 billion in total obligated value are driven almost entirely by Air Force contracting activity.

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 = '6YN54'
        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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,561,332,679.54 1.56 billion 1,381
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 22,507,595.85 22.51 million 131

Insight

Over the last 5 years, MANTECH TSG-2 JOINT VENTURE’s obligations under CAGE 6YN54 are highly concentrated in NAICS 541715, which accounts for $1.56 billion across 1,381 awards. NAICS 541712 is a distant second at $22.51 million across 131 awards, indicating limited diversification within the vendor’s top NAICS activity. Overall, the vendor’s award activity in this window is dominated by research and development services in the physical, engineering, and life sciences.

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 = '6YN54'
        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 295,052,468.90 295.05 million 322
2024 479,361,118.87 479.36 million 315
2023 304,949,307.90 304.95 million 306
2022 243,942,025.36 243.94 million 306
2021 260,535,354.36 260.54 million 263

Insight

Over the last 5 years, MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54) obligated 1.58 billion across 1,512 awards, with an average award value of about 1.05 million. Annual obligations were relatively stable from 2021 through 2023, increased sharply in 2024 to 479.36 million, then declined in 2025 to 295.05 million. Award counts remained consistently high across the period, ranging from 263 to 322 per year, indicating a broad distribution of obligations rather than reliance on a small number of awards.

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.