Update tag MCP tool
Update a GovTribe workspace tag.
- MCP tool name:
Update_Tag - Data type: Tag data type
- Returns: Tag MCP response
- Annotations: Not read only, destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP
Examples
Resolve the tag first, then update its name or color.
Rename a tag and change its color
{
"tool": "Search_Tags",
"arguments": {
"query": "proposal",
"fields_to_return": [
"govtribe_id",
"name",
"background_color"
]
}
}{
"tool": "Update_Tag",
"arguments": {
"tag_id": "<tag_govtribe_id>",
"name": "Proposal submitted",
"backgroundColor": "#2563eb"
}
}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.
- 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.