Skip to main content

Company Gov Relationships

Coming soon

The v2 MCP API is in preview and not yet generally available. These pages document its tools and request/response shapes; live data access is limited to enrolled organizations until v2 is released.

Map a single company's federal teaming partners from USAspending.gov subaward records. Given a company domain, it resolves the company to its SAM.gov entity (UEI, CAGE code), then aggregates two directions: as a subcontractor, which prime contractors pass work down to it; and as a prime, which subcontractors it passes work down to. Each partner rollup includes contract count, total subaward value, and the largest recent award. Trigger on questions like "who does <company> team with on federal contracts?", "which primes subcontract to <company>?", or "who are <company>'s subcontractors on government work?". Use this when you want a company's partner/teaming network on federal deals. Do NOT use this to find OPEN solicitations a company should bid on — use company_gov_opportunities (incumbent/likely-bidder opportunities for one company) or search_gov_opportunities (broad SAM.gov RFP/RFQ search by keyword/NAICS/agency). Do NOT use this for a company's commercial ICT/outsourcing (GSI) contracts — use company_contracts instead. Only covers subaward (prime↔sub) relationships, not top-level prime award totals. Requires the SAM.gov (Data.gov) integration to be configured.

Parameters

NameTypeRequiredDefaultDescription
companyDomainstring✅ Yes-The company domain to look up (e.g., "palantir.com"). Protocol prefixes (http://, https://), leading www., and trailing paths/queries/fragments are accepted and stripped automatically; case is normalized.
relationshipTypestring❌ NobothWhich teaming direction to return: "prime" = the company's own subcontractors (company acts as prime); "sub" = the primes that subcontract to the company (company acts as sub); "both" (default) returns both directions.
minAmountnumber❌ No-Only include subawards worth at least this many USD, e.g. 100000 for $100K+. Applied per subaward before partner rollups are computed. Omit to include all.
fiscalYearStartnumber❌ No-Earliest federal fiscal year to search, as a 4-digit year, e.g. 2020. Defaults to the current year minus 5. Data is aggregated from this year to the present.
limitnumber❌ No50Maximum number of distinct partner companies returned per direction, ranked by total subaward value descending (1-100, default 50).

Required Integrations

  • datagov

Use Cases

  • Who does a company team with on federal contracts, and in which direction (prime vs. sub)?
  • Which prime contractors subcontract work to this company? — relationshipType:'sub'
  • Which subcontractors does this company pass work down to as a prime? — relationshipType:'prime'
  • Which of a company's federal partners represent the largest subaward dollars? — ranked by total value
  • Filter a teaming network to only material relationships — minAmount to drop small subawards

Example Usage

Full teaming network for a company

{
"tool": "company_gov_relationships",
"arguments": {
"companyDomain": "boozallen.com"
}
}

Primes that subcontract to a company, $100K+ only

{
"tool": "company_gov_relationships",
"arguments": {
"companyDomain": "palantir.com",
"relationshipType": "sub",
"minAmount": 100000
}
}

A company's own subcontractors since FY2020

{
"tool": "company_gov_relationships",
"arguments": {
"companyDomain": "boozallen.com",
"relationshipType": "prime",
"fiscalYearStart": 2020
}
}

company_gov_opportunities, search_gov_opportunities, company_contracts, search_federal_contracts