Federal Contractor

THE MITRE CORPORATION Federal Contract Obligations (Last 5 Years)

THE MITRE CORPORATION has received 375 award actions totaling $2.22 billion over the last 5 years, led by Department of the Air Force obligations.

THE MITRE CORPORATION (CAGE 4B080, UEI GAVABYGCURL7) shows 375 award actions and $2,216,133,441.28 in obligated funding across the last 5 years. Most obligations came from the DEPT OF THE AIR FORCE, with smaller activity from the EXPORT-IMPORT BANK OF THE U.S.

Generated at 03/21/2026

Analysis period: Last 5 years

This summary uses the last 5 years of readable FPDS obligations and action counts, with annual and category totals rounded in display fields.

CAGE Code
4B080
UEI
GAVABYGCURL7
Total Obligated
2.22 billion
2,216,133,441.28
Award Actions
375
Average Action Value
5,909,689.17

About THE MITRE CORPORATION federal contract activity

THE MITRE CORPORATION recorded $2.22 billion in obligated federal spending across 375 awards during the last 5 years, with an average award value of $5.91 million. The vendor’s activity is concentrated almost entirely under CAGE 4B080 and UEI GAVABYGCURL7, indicating a sizable but relatively focused federal contracting footprint.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounts for essentially all observed obligation volume, with $2.22 billion across 374 awards. The only other agency in the window is the EXPORT-IMPORT BANK OF THE U.S., which obligated $375,000 in a single award, so the agency profile is highly concentrated and Air Force-dependent.

Industry profile based on NAICS activity

Contracting is dominated by NAICS 541990, ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES, which represents $2.01 billion across 309 awards. NAICS 541330, ENGINEERING SERVICES, is the secondary category at $206.23 million across 65 awards, while 519190, ALL OTHER INFORMATION SERVICES, appears only once at $375,000; the mix suggests a services-heavy portfolio with limited diversification.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $539.42 million across 71 awards, then declined to $383.83 million across 58 awards in 2025. Over the full window, annual obligations remained in a comparatively stable range of roughly $389 million to $539 million, while award counts trended downward from 87 in 2021 to 58 in 2025.

How to interpret this page

This analysis summarizes FPDS-observed awards attributed to THE MITRE CORPORATION over the last 5 years using the provided CAGE code and UEI. Totals, counts, and category concentrations are based only on the supplied data; values reflect obligated dollars and may include multiple awards and funding actions within the reporting window.

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 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 2,215,758,441.28 2.22 billion 374
8300 EXPORT-IMPORT BANK OF THE U.S. 375,000.00 375.00 thousand 1

Insight

Over the last 5 years, THE MITRE CORPORATION’s obligations are overwhelmingly concentrated in the DEPT OF THE AIR FORCE, which accounts for $2.216 billion across 374 awards. This represents nearly all of the vendor’s $2.216 billion in total obligations and 375 awards in the period, indicating a highly concentrated customer base. The only other identified agency is the EXPORT-IMPORT BANK OF THE U.S., with a single $375,000 award, which is immaterial relative to the Air Force volume.

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 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
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 2,009,532,200.94 2.01 billion 309
541330 ENGINEERING SERVICES 206,226,240.34 206.23 million 65
519190 ALL OTHER INFORMATION SERVICES 375,000.00 375.00 thousand 1

Insight

Over the last 5 years, THE MITRE CORPORATION’s obligations are highly concentrated in NAICS 541990, which accounts for $2.01 billion across 309 awards, or the large majority of its $2.22 billion total. NAICS 541330 is a secondary line of business at $206.23 million across 65 awards, indicating some diversification but a much smaller share of activity. NAICS 519190 appears only once at $375,000, suggesting limited participation outside the two primary professional and engineering services categories.

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

Insight

Over the last 5 years, THE MITRE CORPORATION (CAGE 4B080) obligated $2.22 billion across 375 awards, with an average award value of $5.91 million. Annual obligations are relatively concentrated in the 2024–2023 period, peaking at $539.42 million in 2024 after $445.24 million in 2023, then declining to $383.83 million in 2025. Award counts were highest in 2021 and 2022 at 87 and 83, then decreased to 58 in 2025, indicating fewer awards in the most recent year despite substantial obligation levels.

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.