GovTribe

Search GSA labor rates MCP tool

Searches GovTribe GSA Schedule labor-rate rows for pricing and rate analysis.

Examples

Use this tool for GSA Schedule labor-rate rows when pricing labor categories, comparing vendor or IDV ceiling rates, or narrowing labor-rate evidence by SIN, vehicle, worksite, education, business size, clearance, or contract-year fields.

What are senior program manager GSA labor rates?

{
  "tool": "Search_GSA_Labor_Rates",
  "arguments": {
    "query": "\"program manager\"",
    "search_mode": "keyword",
    "per_page": 5,
    "sort": {
      "key": "price",
      "direction": "desc"
    },
    "fields_to_return": [
      "govtribe_id",
      "labor_category",
      "price",
      "vendor",
      "federal_contract_idv",
      "education_level",
      "min_years_experience",
      "worksite",
      "rate_year"
    ]
  }
}

Which rows belong to the same rate group?

rate_group_key is not the IDV. Use federal_contract_idv_ids or contract_number to search within a schedule contract, then use rate_group_key to retrieve sibling contract-year rows for the same labor-rate family.

{
  "tool": "Search_GSA_Labor_Rates",
  "arguments": {
    "rate_group_key": [
      "<rate_group_key>"
    ],
    "sort": {
      "key": "rateYear",
      "direction": "asc"
    },
    "fields_to_return": [
      "govtribe_id",
      "labor_category",
      "price",
      "contract_start",
      "contract_end",
      "rate_year",
      "rate_group_key"
    ]
  }
}

Aggregation examples

Use aggregation examples when the answer needs price, vendor, IDV, vehicle, SIN, category, worksite, business-size, clearance, or rate-year rollups instead of individual labor-rate 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 filters narrow systems engineering rate research?

{
  "tool": "Search_GSA_Labor_Rates",
  "arguments": {
    "query": "\"systems engineer\"",
    "search_mode": "keyword",
    "per_page": 0,
    "aggregations": [
      "top_labor_categories_by_doc_count",
      "top_education_levels_by_doc_count",
      "top_worksites_by_doc_count",
      "top_security_clearance_values_by_doc_count",
      "top_sins_by_doc_count",
      "top_rate_years_by_doc_count"
    ]
  }
}

What labor rates are attached to a known IDV?

{
  "tool": "Search_GSA_Labor_Rates",
  "arguments": {
    "federal_contract_idv_ids": [
      "<federal_contract_idv_govtribe_id>"
    ],
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "labor_category",
      "price",
      "federal_contract_idv",
      "federal_contract_vehicle",
      "federal_contract_vehicle_subcategories",
      "rate_group_key"
    ],
    "aggregations": [
      "price_stats",
      "price_percentiles",
      "top_labor_categories_by_doc_count",
      "top_sins_by_doc_count"
    ]
  }
}