GovTribe

Search federal contract sub awards MCP tool

Searches GovTribe federal contract sub-awards and returns subcontract records with amounts, primes, subs, and agency context.

Examples

Use this tool when the agent needs subcontract records, prime/sub relationships, or sub-award evidence for teaming and competitive analysis.

Which subcontract records mention cybersecurity support?

{
  "tool": "Search_Federal_Contract_Sub_Awards",
  "arguments": {
    "query": "cybersecurity support subcontract",
    "search_mode": "semantic",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "award_date",
      "description",
      "sub_contractor",
      "prime_contractor",
      "contracting_federal_agency"
    ]
  }
}

Which recent subcontract records should I review for a named vendor?

{
  "tool": "Search_Vendors",
  "arguments": {
    "query": "General Dynamics Information Technology",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "uei"
    ]
  }
}
{
  "tool": "Search_Federal_Contract_Sub_Awards",
  "arguments": {
    "vendor_ids": [
      "<vendor_govtribe_id_or_uei>"
    ],
    "sort": {
      "key": "timestamp",
      "direction": "desc"
    },
    "fields_to_return": [
      "govtribe_id",
      "name",
      "award_date",
      "sub_contractor",
      "prime_contractor",
      "funding_federal_agency"
    ]
  }
}

Aggregation examples

Use aggregation examples when the answer needs rollups instead of individual rows. These examples use quoted keyword anchors in query so long-tail matches do not skew buckets; broaden the query only when the user asks for exploratory sizing, and pair broader queries with structured filters when possible. Set per_page to 0 when row results are not needed.

Which subcontractors appear most often in IT support sub-awards?

{
  "tool": "Search_Federal_Contract_Sub_Awards",
  "arguments": {
    "query": "\"IT support\" + subcontracting",
    "per_page": 0,
    "aggregations": [
      "top_awardees_by_doc_count"
    ],
    "search_mode": "keyword"
  }
}

Which agencies drive cybersecurity support sub-awards?

{
  "tool": "Search_Federal_Contract_Sub_Awards",
  "arguments": {
    "query": "\"cybersecurity support\" + subcontracting",
    "per_page": 0,
    "aggregations": [
      "top_funding_federal_agencies_by_doc_count",
      "top_contracting_federal_agencies_by_doc_count"
    ],
    "search_mode": "keyword"
  }
}