GovTribe

Search FCV subcategories MCP tool

Searches GovTribe federal contract vehicle subcategories, including GSA MAS SINs and non-MAS lots, pools, and lanes.

Examples

Use this tool when the agent needs the SIN, group, pool, lane, domain, or other subdivision under a parent federal contract vehicle. Resolve the parent vehicle first when the question names a vehicle such as SEWP V, MAS, OASIS+, or another master vehicle.

Which vehicle subcategories match IT modernization and cybersecurity work?

{
  "tool": "Search_FCV_Subcategories",
  "arguments": {
    "query": "cybersecurity information technology services",
    "search_mode": "semantic",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "short_name",
      "description",
      "federal_contract_vehicle"
    ]
  }
}

Which SEWP V groups are available for an IT hardware or product requirement?

{
  "tool": "Search_Federal_Contract_Vehicles",
  "arguments": {
    "query": "NASA SEWP",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "contract_type",
      "last_date_to_order"
    ]
  }
}
{
  "tool": "Search_FCV_Subcategories",
  "arguments": {
    "federal_contract_vehicle_ids": [
      "<sewp_v_govtribe_id>"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "short_name",
      "description",
      "federal_contract_vehicle"
    ]
  }
}

Which MAS SINs are available on the Multiple Award Schedule?

{
  "tool": "Search_Federal_Contract_Vehicles",
  "arguments": {
    "query": "Multiple Award Schedule MAS",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "contract_type",
      "last_date_to_order"
    ]
  }
}
{
  "tool": "Search_FCV_Subcategories",
  "arguments": {
    "federal_contract_vehicle_ids": [
      "<multiple_award_schedule_govtribe_id>"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "short_name",
      "description",
      "federal_contract_vehicle"
    ]
  }
}

Which vehicle subcategories have a shared ceiling of at least $10B?

{
  "tool": "Search_FCV_Subcategories",
  "arguments": {
    "shared_ceiling_range": {
      "min": 10000000000
    },
    "fields_to_return": [
      "govtribe_id",
      "name",
      "short_name",
      "shared_ceiling",
      "federal_contract_vehicle"
    ]
  }
}