GovTribe

Search states MCP tool

Searches GovTribe state records and returns state profiles with names, USPS codes, and canonical URLs.

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.

Identifier filters

Use govtribe_ids for GovTribe state record IDs returned as govtribe_id. The existing state_ids field also accepts a GovTribe state ID, a case-insensitive USPS code, or a full state or territory name. Prefer a returned govtribe_id; see Location filtering for unique-match and error-repair behavior.

Which states mention facility modernization?

{
  "tool": "Search_States",
  "arguments": {
    "query": "facility modernization",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "updated_at",
      "govtribe_type",
      "govtribe_url"
    ]
  }
}

Which states exactly mention "technical support services"?

{
  "tool": "Search_States",
  "arguments": {
    "query": "\"technical support services\"",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "updated_at",
      "govtribe_type",
      "govtribe_url"
    ]
  }
}