Federal Contractor

THE MITRE CORPORATION Federal Contract Obligations (Last 10 Years)

Federal procurement profile for THE MITRE CORPORATION (CAGE 4B080, UEI GAVABYGCURL7) covering obligations and award activity over the last 10 years.

THE MITRE CORPORATION recorded 565 award actions totaling $3.53 billion in federal obligations over the last 10 years, with an average action value of $6.25 million. Most of the spending was with the Department of the Air Force, and the largest NAICS category was 541990, All Other Professional, Scientific, and Technical Services.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided 10-year analysis window and may include multiple award actions under the same vendor.

CAGE Code
4B080
UEI
GAVABYGCURL7
Total Obligated
3.53 billion
3,531,419,811.43
Award Actions
565
Average Action Value
6,250,300.55

About THE MITRE CORPORATION federal contract activity

THE MITRE CORPORATION recorded $3.53 billion in obligated awards across 565 actions over the last 10 years, for an average award value of $6.25 million. The spending profile is highly concentrated, with nearly all obligations tied to a single primary customer and a relatively small number of awards accounting for most of the value.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE dominates the vendor’s federal business, accounting for $3.53 billion across 555 awards, or essentially the full observed obligation base. Outside the Air Force, activity is limited to the FEDERAL BUREAU OF INVESTIGATION at $3.88 million across 9 awards and a single EXPORT-IMPORT BANK OF THE U.S. award valued at $375,000, indicating only narrow agency diversification.

Industry profile based on NAICS activity

The vendor’s work is concentrated in NAICS 541990, which represents $2.76 billion and 452 awards, followed by NAICS 541330 at $764.55 million and 103 awards. Smaller portions fall under NAICS 541611 and 519190, showing that obligations are centered in professional, scientific, technical, and engineering support rather than a broad commercial mix.

Annual contract trend over the analysis window

Annual obligations from 2021 through 2025 remain in the hundreds of millions each year, peaking in 2024 at $539.42 million before easing to $383.83 million in 2025. Award counts follow the same general pattern, with the highest volume in 2022 and 2021 and lower counts in 2024 and 2025, suggesting a modest recent slowdown after a stronger mid-period.

How to interpret this page

This summary is based on FPDS obligations associated with CAGE 4B080 and UEI GAVABYGCURL7 over the last 10 years. Agency, NAICS, and annual figures reflect the reported obligation amounts and award counts in the provided analysis window; totals are rounded for readability and may not align exactly due to rounding.

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 = '4B080'
        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 3,527,161,994.43 3.53 billion 555
1549 FEDERAL BUREAU OF INVESTIGATION 3,882,817.00 3.88 million 9
8300 EXPORT-IMPORT BANK OF THE U.S. 375,000.00 375.00 thousand 1

Insight

Over the last 10 years, THE MITRE CORPORATION’s obligations are highly concentrated with the DEPT OF THE AIR FORCE, which accounts for $3.53 billion of $3.53 billion total obligated and 555 of 565 awards. The remaining activity is minimal and dispersed across two agencies: the FBI with $3.88 million across 9 awards and the EXPORT-IMPORT BANK OF THE U.S. with $375,000 in 1 award. This pattern indicates a dominant single-agency relationship with limited cross-agency diversification.

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 = '4B080'
        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
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 2,762,607,351.25 2.76 billion 452
541330 ENGINEERING SERVICES 764,554,643.18 764.55 million 103
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 3,882,817.00 3.88 million 9
519190 ALL OTHER INFORMATION SERVICES 375,000.00 375.00 thousand 1

Insight

Over the last 10 years, THE MITRE CORPORATION’s obligations are highly concentrated in NAICS 541990, which accounts for 2.76 billion across 452 awards, or the majority of its 3.53 billion total. NAICS 541330 is the second-largest category at 764.55 million across 103 awards, bringing the top two NAICS codes to nearly all obligated value. The remaining NAICS codes are marginal by comparison, with 541611 totaling 3.88 million and 519190 totaling 375 thousand, indicating a narrow and specialized obligation profile.

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 = '4B080'
        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 383,834,903.33 383.83 million 58
2024 539,422,355.76 539.42 million 71
2023 445,244,524.37 445.24 million 76
2022 458,662,301.02 458.66 million 83
2021 388,969,356.80 388.97 million 87
2020 362,025,156.06 362.03 million 47
2019 313,507,183.11 313.51 million 40
2018 379,784,015.92 379.78 million 51
2017 259,970,015.06 259.97 million 52

Insight

THE MITRE CORPORATION’s obligations over the last 10 years total $3.53 billion across 565 awards, with an average award value of $6.25 million. Annual obligations are relatively stable in the $259.97 million to $539.42 million range, with the highest funding in 2024 ($539.42 million, 71 awards) and continued high levels in 2023–2025. Award volume generally tracks a similar pattern, peaking at 87 awards in 2021 and remaining elevated through 2024, indicating a broad distribution of contract activity 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.