Create saved search MCP tool
Creates a saved search from a search_* persistence 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, destructive, not idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Create saved searches only from a persistence 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_persistence_id": "<search_persistence_id>",
"name": "Cybersecurity operations opportunities",
"frequency": "Weekly"
}
}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.
- Source identifiers and record matching: Use GovTribe IDs and source identifiers when passing records between tools.