Federal Contractor

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Federal Contract Obligations (Last Year)

Federal procurement profile for MASSACHUSETTS INSTITUTE OF TECHNOLOGY, CAGE 3G050, UEI SN5KKUDR9LY8, covering the last full year of obligations and award activity.

In the last full year, MASSACHUSETTS INSTITUTE OF TECHNOLOGY received 375 award actions totaling $1,256,047,966.53, for an average action value of $3,349,461.24. The Department of the Air Force accounted for all reported obligations, with most spending under NAICS 541712 and a smaller share under NAICS 541715.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and are based on obligated amounts, award counts, and NAICS and agency rollups from the provided dataset.

CAGE Code
3G050
UEI
SN5KKUDR9LY8
Total Obligated
1.26 billion
1,256,047,966.53
Award Actions
375
Average Action Value
3,349,461.24

About MASSACHUSETTS INSTITUTE OF TECHNOLOGY federal contract activity

MASSACHUSETTS INSTITUTE OF TECHNOLOGY recorded 375 FPDS awards in the last full year, with total obligated dollars of 1.26 billion and an average award value of 3.35 million. The vendor is identified in the dataset by CAGE code 3G050 and UEI SN5KKUDR9LY8. Award activity is concentrated in a single major federal customer relationship and a research-heavy contracting profile.

Agency mix and customer concentration

All recorded obligations in the period were awarded by the DEPT OF THE AIR FORCE, accounting for 1.26 billion across 375 awards. This indicates a fully concentrated agency mix rather than a diversified federal customer base. The data suggests the Air Force is the sole observed obligating agency for this window.

Industry profile based on NAICS activity

Award activity is dominated by NAICS 541712, which represents 1.20 billion across 351 awards and accounts for the vast majority of obligations. NAICS 541715 adds 58.46 million across 24 awards, indicating a smaller secondary research and development stream. Together, the two NAICS codes show a portfolio centered on physical, engineering, and life sciences R&D.

Annual contract trend over the analysis window

The annual trend provided shows all observed obligations in 2025, totaling 1.26 billion across 375 awards. No prior-year or multi-year comparison is present in the supplied data, so trend interpretation is limited to the current-year snapshot. Within that snapshot, the award volume and obligated dollars are consistent with a large, research-driven federal engagement.

How to interpret this page

This summary is based only on the supplied FPDS Query aggregates for the last full year, using obligated dollars, award counts, agency totals, and NAICS totals. Category shares and concentration statements are derived directly from the provided figures without estimating missing data. No additional contract file detail, pricing analysis, or outlier adjustment was applied.

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 = '3G050'
        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 1,256,047,966.53 1.26 billion 375

Insight

During the last full year, obligations to MASSACHUSETTS INSTITUTE OF TECHNOLOGY (CAGE 3G050) were fully concentrated with the Department of the Air Force, which accounted for the entire $1.26 billion obligated and all 375 awards. This indicates a highly concentrated funding profile with no observed distribution across other agencies in the provided period. The average award value was $3.35 million, suggesting a mix of award sizes within a single-agency relationship.

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 = '3G050'
        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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 1,197,587,107.50 1.20 billion 351
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 58,460,859.03 58.46 million 24

Insight

Over the last full year, obligations to MASSACHUSETTS INSTITUTE OF TECHNOLOGY totaled $1.26 billion across 375 awards, with a high average award value of $3.35 million. Contracting activity was highly concentrated in NAICS 541712, which accounted for $1.20 billion and 351 awards, or the clear majority of both dollars and actions. NAICS 541715 represented a much smaller share at $58.46 million across 24 awards, indicating limited diversification beyond the primary R&D category.

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 = '3G050'
        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 1,256,047,966.53 1.26 billion 375

Insight

In the last full year, MASSACHUSETTS INSTITUTE OF TECHNOLOGY (CAGE 3G050) received 375 awards totaling $1.26 billion, with an average award value of about $3.35 million. Because the window contains a single year, no year-over-year trend can be assessed from this view. The obligation profile is moderately concentrated in a relatively small number of awards with a high average value, indicating significant award-level dispersion but substantial annual funding volume.

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.