GovTribe

Set favorite MCP response

MCP tool response returned after adding or removing a GovTribe record from the current user favorites.

Response Shape

The tool returns the record's favorite state after the change. Because the tool is idempotent, the response always describes the state that now applies, whether or not anything was changed by the call.

FieldTypeNotes
govtribe_typestringThe GovTribe type of the record whose favorite state was set.
govtribe_idstringThe GovTribe identifier of that record.
favoritedbooleanThe favorite state that now applies for the signed-in user.
favorite_claim_idstring or nullIdentifier of the stored favorite. Present when favorited is true. Returned as null when favorited is false, including when the record was already not favorited.

Example

{
  "govtribe_type": "vendor",
  "govtribe_id": "<vendor_govtribe_id>",
  "favorited": true,
  "favorite_claim_id": "<favorite_claim_govtribe_id>"
}