Clay
createNote
Create a note for a contact. Only use this when the user explicitly asks to create, add, or save a note.
Remote clay-inc/clay-mcp
Other tools also called createNote?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"content": {
"type": "string",
"example": "This is a note",
"description": "The content of the note. You may reference and link to other contacts in the note using the following format: [contact:{contact_id}:contact name], example: [contact:123:John Doe]"
},
"contact_id": {
"type": "number",
"example": 123,
"description": "The ID of the contact to add the note to."
},
"reminder_date": {
"type": "string",
"format": "date-time",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|))$",
"description": "If the user wants to set a reminder for the note. This should be a a ISO 8601 date in the following format: YYYY-MM-DDTHH:MM[:SS[.sss]]Z"
}
}
}