GovTribe

Search major defense programs MCP tool

Searches GovTribe major defense programs and returns program records with codes, acquisition data, and related awards.

Examples

Use these examples as task-shaped tool calls. Examples may combine query, search_mode, filters, sorting, returned fields, resolver calls, and aggregations. When an example resolves a related record first, pass the returned govtribe_id into the target search.

Which major defense programs mention facility modernization?

{
  "tool": "Search_Major_Defense_Programs",
  "arguments": {
    "query": "facility modernization",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "description",
      "updated_at",
      "code"
    ]
  }
}

Which major defense programs exactly mention "technical support services"?

{
  "tool": "Search_Major_Defense_Programs",
  "arguments": {
    "query": "\"technical support services\"",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "description",
      "code",
      "govtribe_ai_summary"
    ]
  }
}
{
  "tool": "Search_Major_Defense_Programs",
  "arguments": {
    "query": "cybersecurity modernization, zero trust upgrades, network defense services",
    "search_mode": "semantic",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "govtribe_ai_summary",
      "description",
      "code"
    ]
  }
}

Which major defense programs are tied to the Department of the Navy?

{
  "tool": "Search_Federal_Agencies",
  "arguments": {
    "query": "Department of the Navy",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "acronym"
    ]
  }
}
{
  "tool": "Search_Major_Defense_Programs",
  "arguments": {
    "federal_agency_ids": [
      "<department_of_the_navy_govtribe_id>"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "code",
      "govtribe_ai_summary",
      "description"
    ]
  }
}

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 organizations are most represented among aircraft modernization major defense programs?

{
  "tool": "Search_Major_Defense_Programs",
  "arguments": {
    "query": "\"aircraft modernization\"",
    "per_page": 0,
    "aggregations": [
      "top_federal_agencies_by_doc_count"
    ],
    "search_mode": "keyword"
  }
}