GovTribe

Search saved searches MCP tool

Searches saved searches and returns saved query definitions with filters, cadence, and links.

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 saved searches mention facility modernization?

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

Which saved searches exactly mention "technical support services"?

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

Which saved searches belong to a specific teammate?

{
  "tool": "Search_Users",
  "arguments": {
    "query": "teammate@example.com",
    "fields_to_return": [
      "govtribe_id",
      "name",
      "email"
    ]
  }
}
{
  "tool": "Search_Saved_Searches",
  "arguments": {
    "owner_ids": [
      "<teammate_user_govtribe_id>"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "updated_at",
      "govtribe_type",
      "govtribe_url"
    ]
  }
}

Which saved searches run against federal contract opportunities, awards, or another record family?

{
  "tool": "Search_Saved_Searches",
  "arguments": {
    "scope": [
      "FederalContractOpportunityModel"
    ],
    "fields_to_return": [
      "govtribe_id",
      "name",
      "updated_at",
      "govtribe_type",
      "govtribe_url"
    ]
  }
}