GovTribe

Search NAICS categories MCP tool

Searches GovTribe NAICS categories and returns category records with codes, names, and linked federal opportunities.

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 NAICS categories mention facility modernization?

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

Which NAICS categories exactly mention "technical support services"?

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

Which child categories belong to a known parent NAICS family?

{
  "tool": "Search_Naics_Categories",
  "arguments": {
    "query": "541512",
    "search_mode": "keyword",
    "fields_to_return": [
      "govtribe_id",
      "code",
      "name"
    ]
  }
}
{
  "tool": "Search_Naics_Categories",
  "arguments": {
    "naics_category_ids": [
      "<naics_541512_govtribe_id>"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "code",
      "updated_at",
      "govtribe_type"
    ]
  }
}