Update custom field definition MCP tool
Update a workspace custom field definition's name, placeholder text, or required flag. The field type cannot be changed after creation.
- MCP tool name:
Update_Custom_Field_Definition - Data type: Custom field definition data type
- Returns: Custom field definition MCP response
- Annotations: Not read only, destructive, idempotent, closed world
- Surfaces: GovTribe AI, GovTribe MCP, GovTribe Compact MCP server
Examples
Resolve the definition with Search custom field definitions first. Only the arguments you include change. field_type is not accepted: a field's type is fixed when it is created, so to change it, delete the definition and create a new one.
Rename a field and make it required
{
"tool": "Update_Custom_Field_Definition",
"arguments": {
"custom_field_definition_id": "<custom_field_definition_govtribe_id>",
"name": "Ceiling Value",
"required": true
}
}Clear the placeholder text
{
"tool": "Update_Custom_Field_Definition",
"arguments": {
"custom_field_definition_id": "<custom_field_definition_govtribe_id>",
"placeholder_text": null
}
}Related articles
- Custom field definition MCP response: Review the response shape returned by this tool.
- Custom field definition 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.
Update contact group
Update a GovTribe workspace contact group name, description, tags, or linked saved Contact search.
Update memories
Updates an existing durable user memory after locating the correct entry; prefer updating canonical memories over creating duplicates. Can revise memory text, reinforce or weaken memories, or set a future expires_at review date. Legacy memories without a future review date must include expires_at before they can be updated.