In the last full year, COGNOSANTE MVH LLC, CAGE 33JP4, UEI XDDKMXTVJSN8, received $245,063,436.68 across 44 actions, for an average action value of $5,569,623.56. Most obligations came from the Department of Veterans Affairs ($183.89 million) and the Centers for Medicare and Medicaid Services ($61.18 million), with activity concentrated in computer systems design and custom programming services.
Federal Contractor
COGNOSANTE MVH LLC Federal Contract Obligations (Last Year)
COGNOSANTE MVH LLC recorded 44 award actions totaling $245.06 million in the last full year, led by obligations from the Department of Veterans Affairs and CMS.
Totals reflect the analysis window provided and are based on obligated dollars and award actions reported in the source data.
About COGNOSANTE MVH LLC federal contract activity
COGNOSANTE MVH LLC (CAGE 33JP4, UEI XDDKMXTVJSN8) recorded 44 awards totaling $245.06 million in the last full year, for an average award value of $5.57 million. The profile indicates a substantial federal contracting footprint concentrated in health-related and information technology services.
Agency mix and customer concentration
Award activity was heavily concentrated in the Department of Veterans Affairs, which accounted for $183.89 million across 34 awards, or the clear majority of obligated dollars. The Centers for Medicare and Medicaid Services represented the remaining $61.18 million across 10 awards, showing a much narrower but still material agency base.
Industry profile based on NAICS activity
The vendor’s obligations were led by NAICS 541512, Computer Systems Design Services, with $125.74 million across 21 awards. NAICS 541511, Custom Computer Programming Services, added $66.22 million across 13 awards, while medical-related work also appeared through NAICS 339112 and 621999, together indicating a mix of IT and healthcare-oriented contracting.
Annual contract trend over the analysis window
The annual trend data shows all recorded obligations in 2025, totaling $245.06 million across 44 awards. With only one year in the analysis window, the dataset supports a point-in-time view rather than a multi-year growth or decline assessment.
How to interpret this page
This summary is based on FPDS awards associated with COGNOSANTE MVH LLC during the last full year, using the provided CAGE code and UEI as identifiers. Totals reflect obligated dollars and award counts aggregated across the analysis window, with agency and NAICS concentrations reported from the same dataset.
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 = '33JP4'
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 |
|---|---|---|---|---|
| 3600 | VETERANS AFFAIRS, DEPARTMENT OF | 183,885,451.55 | 183.89 million | 34 |
| 7530 | CENTERS FOR MEDICARE AND MEDICAID SERVICES | 61,177,985.13 | 61.18 million | 10 |
Insight
During the last full year, COGNOSANTE MVH LLC received $245.06 million across 44 awards, with obligations concentrated in two civilian health agencies. The Department of Veterans Affairs accounted for $183.89 million and 34 awards, representing the dominant share of vendor obligations in this window. The Centers for Medicare and Medicaid Services obligated the remaining $61.18 million across 10 awards, indicating a secondary but still material concentration in health-related federal demand.
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 = '33JP4'
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 |
|---|---|---|---|---|
| 541512 | COMPUTER SYSTEMS DESIGN SERVICES | 125,744,977.71 | 125.74 million | 21 |
| 541511 | CUSTOM COMPUTER PROGRAMMING SERVICES | 66,222,326.93 | 66.22 million | 13 |
| 339112 | SURGICAL AND MEDICAL INSTRUMENT MANUFACTURING | 44,570,146.42 | 44.57 million | 7 |
| 621999 | ALL OTHER MISCELLANEOUS AMBULATORY HEALTH CARE SERVICES | 8,525,985.62 | 8.53 million | 3 |
Insight
Over the last full year, COGNOSANTE MVH LLC obligated $245.06 million across 44 awards, averaging $5.57 million per award. Obligation activity is concentrated in two IT services NAICS codes: 541512 (Computer Systems Design Services) accounts for $125.74 million across 21 awards and 541511 (Custom Computer Programming Services) adds $66.22 million across 13 awards, together representing most of the total. The remaining obligations are split between 339112 ($44.57 million, 7 awards) and 621999 ($8.53 million, 3 awards), indicating a secondary presence in medical instrument manufacturing and ambulatory health care services.
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 = '33JP4'
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 | 245,063,436.68 | 245.06 million | 44 |
Insight
During the last full year, COGNOSANTE MVH LLC recorded $245.06 million in obligated dollars across 44 awards, for an average award value of $5.57 million. Because the full annual activity is represented in a single year, the available data indicates a concentrated obligation profile rather than a multi-year trend. The relatively high average award value suggests the vendor’s obligations were distributed across a moderate number of larger awards rather than many small transactions.
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.