Search tags MCP tool
Searches GovTribe workspace tags and returns tag IDs, names, and colors.
- MCP tool name:
Search_Tags - Data type: Tag data type
- Returns: Tag MCP response
- Search modes: Keyword
- Annotations: Read only, not destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Use this tool to resolve workspace tag IDs before assigning tags with pipeline, pursuit, or task tools.
Find tags for capture status
{
"tool": "Search_Tags",
"arguments": {
"query": "capture",
"fields_to_return": [
"govtribe_id",
"name",
"background_color",
"govtribe_type"
]
}
}Resolve tags by known GovTribe IDs
{
"tool": "Search_Tags",
"arguments": {
"tag_ids": [
"<tag_govtribe_id>"
],
"fields_to_return": [
"govtribe_id",
"name",
"background_color"
]
}
}Related articles
- Tag MCP response: Review the response shape returned by this tool.
- Tag data type: Understand the shared record fields and relationships used by this tool.
- Choose a search mode and write queries: Choose keyword or semantic search behavior and shape
queryvalues. - 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.