Create saved search MCP tool
Creates a saved search from a Search_* search_results_id with a name and optional email notifications at custom frequencies.
- MCP tool name:
Create_Saved_Search - Data type: Saved search data type
- Returns: Saved search MCP response
- Annotations: Not read only, not destructive, not idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP, GovTribe Compact MCP server
Examples
Create saved searches only from the search_results_id returned by a prior Search_* call.
Save a weekly monitor for cybersecurity opportunities
{
"tool": "Search_Federal_Contract_Opportunities",
"arguments": {
"query": "cybersecurity operations support",
"search_mode": "semantic",
"fields_to_return": [
"govtribe_id",
"name",
"posted_date",
"due_date"
]
}
}{
"tool": "Create_Saved_Search",
"arguments": {
"search_results_id": "<search_results_id>",
"name": "Cybersecurity operations opportunities",
"frequency": "Weekly"
}
}Notification frequency
frequency is required and accepts Instant, Daily, Weekly, or Never. Use Never to save the search without matching-result email.
Saved-search notification frequency does not set an automation's polling frequency. Supply that cadence separately when creating a saved-search automation trigger.
Related articles
- Saved search MCP response: Review the response shape returned by this tool.
- Saved search data type: Understand the shared record fields and relationships used by this tool.
- GovTribe AI: Review the GovTribe AI surface where this tool can be called.
- GovTribe for Agents: Use GovTribe for Agents as the starting point for MCP tools, MCP tool responses, and guides.
- MCP servers: Review where this MCP tool can be used.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.