Federal Contractor

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

MANTECH TSG-2 JOINT VENTURE is a federal vendor with 2.26 billion in obligated awards across 2,087 actions over the last 10 years, driven primarily by the Department of the Air Force.

Across the last 10 years, MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54, UEI V9KKND8S1KJ3) recorded 2,087 award actions totaling 2,256,152,602.12 in obligations, for an average action value of 1,081,050.59. Most of this activity is concentrated with the Department of the Air Force and in NAICS 541715 and 541712 research and development work.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals in the analysis window show the highest obligation in 2024 at 479.36 million, with 2025 at 295.05 million and 2021 through 2023 ranging from 243.94 million to 304.95 million.

CAGE Code
6YN54
UEI
V9KKND8S1KJ3
Total Obligated
2.26 billion
2,256,152,602.12
Award Actions
2,087
Average Action Value
1,081,050.59

About MANTECH TSG-2 JOINT VENTURE federal contract activity

MANTECH TSG-2 JOINT VENTURE recorded 2.26 billion in obligations across 2,087 awards over the last 10 years, with an average award value of 1.08 million. The vendor’s activity is concentrated in a relatively high volume of awards, indicating sustained participation in federal contracting rather than a small number of outsized transactions.

Agency mix and customer concentration

The award base is overwhelmingly tied to the DEPT OF THE AIR FORCE, which accounts for 2,052 awards and 2.26 billion in obligations. DCMA shows a small negative obligated value across 35 awards, which may reflect downward contract adjustments, closeout activity, or deobligations rather than new spending.

Industry profile based on NAICS activity

Contracting is concentrated in research and development-related NAICS codes, led by 541715 at 1.78 billion across 1,508 awards and 541712 at 479.12 million across 579 awards. Together, these two codes indicate that the vendor’s portfolio is focused on scientific and engineering R&D work within the physical and life sciences.

Annual contract trend over the analysis window

Annual obligations remained elevated and fairly consistent in the most recent years shown, ranging from 243.94 million in 2022 to 479.36 million in 2024, with 2025 at 295.05 million to date. Award counts also stayed steady, suggesting a durable recurring contract relationship rather than a single spike year.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 6YN54 and UEI V9KKND8S1KJ3 over the last 10 years. Totals reflect obligated dollars and award counts as reported in the provided analysis set; negative obligations are retained where present to preserve the recorded net effect.

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 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
5700 DEPT OF THE AIR FORCE 2,263,778,902.80 2.26 billion 2,052
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -7,626,300.68 -7.63 million 35

Insight

Over the last 10 years, MANTECH TSG-2 JOINT VENTURE’s obligations are overwhelmingly concentrated with the Department of the Air Force, which accounts for $2.26 billion across 2,052 awards. DCMA shows a net negative obligated amount of $7.63 million across 35 awards, indicating limited offsetting adjustments relative to the Air Force volume. Overall, the vendor’s federal activity is heavily dependent on a single agency relationship, with minimal distribution across other agencies in this period.

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 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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,777,030,901.23 1.78 billion 1,508
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 479,121,700.89 479.12 million 579

Insight

Over the last 10 years, MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54) received 2.26 billion across 2,087 awards, with activity concentrated in two NAICS codes. NAICS 541715 accounted for 1.78 billion across 1,508 awards, representing the clear majority of obligations and transactions. NAICS 541712 added 479.12 million across 579 awards, indicating a secondary but still material share of the vendor’s obligation base. Overall, the award profile is heavily concentrated in R&D-related services, with 541715 driving most of the vendor’s federal activity.

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 10 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
2020 263,982,893.24 263.98 million 203
2019 189,581,138.49 189.58 million 162
2018 171,474,454.00 171.47 million 120
2017 47,273,841.00 47.27 million 90

Insight

Over the last 10 years, MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54) obligated $2.26 billion across 2,087 awards, averaging $1.08 million per award. Annual obligations are concentrated in the more recent years, with 2024 the peak year at $479.36 million, followed by 2023 at $304.95 million and 2025 at $295.05 million. Award volume also increased over time, rising from 90 awards in 2017 to 322 in 2025, indicating a sustained expansion in procurement activity.

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.