Federal Contractor

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

Federal procurement profile for MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54, UEI V9KKND8S1KJ3) covering the last full year of award activity.

In the last full year, MANTECH TSG-2 JOINT VENTURE recorded 322 award actions totaling $295.05 million in obligations, for an average action value of $916,312.01. Most obligations came from the Department of the Air Force and were concentrated in NAICS 541715.

Generated at 03/21/2026

Analysis period: Last full year

Agency and NAICS totals include negative obligations, so subtotals may not equal the headline total due to de-obligations or adjustments.

CAGE Code
6YN54
UEI
V9KKND8S1KJ3
Total Obligated
295.05 million
295,052,468.90
Award Actions
322
Average Action Value
916,312.01

About MANTECH TSG-2 JOINT VENTURE federal contract activity

MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54, UEI V9KKND8S1KJ3) recorded 295.05 million in obligated contract action value across 322 awards in the last full year, for an average award value of 916,312.01. The activity profile indicates a high-volume, mid-to-large dollar contracting footprint concentrated in a narrow set of defense-related transactions.

Agency mix and customer concentration

The Department of the Air Force accounted for essentially all positive obligated value in the period, with 298.42 million across 309 awards. DCMA shows a negative obligated total of 3.37 million across 13 awards, which suggests deobligations, modifications, or other downward adjustments rather than new net spending.

Industry profile based on NAICS activity

The vendor’s work was concentrated in NAICS 541715, which represented 297.51 million across 306 awards and dominates the period’s obligated value. NAICS 541712 contributed a smaller negative total of 2.46 million across 16 awards, reinforcing that the portfolio is centered on research and development in the physical, engineering, and life sciences.

Annual contract trend over the analysis window

Annual activity for 2025 totaled 295.05 million across 322 awards, matching the analysis window. Because only one year is present, the data support a point-in-time view rather than a multi-year trend assessment.

How to interpret this page

This summary is based on FPDS-observed contract action data for the vendor identified by CAGE 6YN54 and UEI V9KKND8S1KJ3 over the last full year. Obligated values may include both positive and negative actions, so totals can reflect deobligations or other downward adjustments as well as new obligations.

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 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
5700 DEPT OF THE AIR FORCE 298,417,698.25 298.42 million 309
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -3,365,229.35 -3.37 million 13

Insight

During the last full year, obligations for MANTECH TSG-2 JOINT VENTURE were highly concentrated at the DEPT OF THE AIR FORCE, which accounted for $298.42 million across 309 awards. DCMA showed a net negative obligation of $3.37 million across 13 awards, indicating downward adjustment activity that offset a small portion of Air Force-funded obligations. Overall, the vendor’s 322 awards were overwhelmingly tied to one agency, with limited distribution elsewhere.

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 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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 297,509,721.89 297.51 million 306
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -2,457,252.99 -2.46 million 16

Insight

MANTECH TSG-2 JOINT VENTURE’s last full-year obligations are highly concentrated in NAICS 541715, which accounts for $297.51 million across 306 awards and effectively represents the vendor’s core activity in this period. NAICS 541712 is a much smaller segment by count, with 16 awards, but shows net negative obligated dollars of $2.46 million, indicating downward adjustment or deobligation activity within that category. Overall, the vendor’s award profile is dominated by one R&D NAICS, with limited activity in the adjacent R&D code.

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

Insight

During the last full year, MANTECH TSG-2 JOINT VENTURE (CAGE 6YN54) received $295.05 million in obligations across 322 awards, for an average award value of about $916,312. The annual activity is fully concentrated in 2025 within this 1-year window, so no year-over-year trend can be assessed from the provided data. The volume of awards relative to total obligations suggests a dispersed award profile rather than reliance on a small number of very large actions.

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.