Tool tree
Real estate marketing software and agency services
get_in_contactSensitive Action
Get in contact with the agent or team. Submits contact details including required email, optional first and last name, and an optional note.
View tool JSON
{
"name": "get_in_contact",
"kind": "transact",
"impl": "imperative",
"description": "Get in contact with the agent or team. Submits contact details including required email, optional first and last name, and an optional note.",
"inputSchema": {
"type": "object",
"properties": {
"email": {
"type": "string",
"description": "Email address of the contact (required)"
},
"first_name": {
"type": "string",
"description": "First name of the contact (optional)"
},
"last_name": {
"type": "string",
"description": "Last name of the contact (optional)"
},
"note": {
"type": "string",
"description": "Optional note or message"
}
},
"required": [
"email"
]
}
}