Clay
createContact
Create a new contact record in Clay. This endpoint should only be used when you need to create a completely new contact, not for adding contacts to groups.
Remote clay-inc/clay-mcp
Other tools also called createContact?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"bio": {
"type": "string",
"example": "I am a software engineer.",
"description": "The biography of the contact."
},
"email": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"[email protected]",
"[email protected]"
],
"description": "The email of the contact."
},
"phone": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"+1234567890",
"+1234567890"
],
"description": "The phone number of the contact."
},
"title": {
"type": "string",
"example": "Software Engineer",
"description": "The job title of the contact."
},
"website": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"https://www.example.com",
"https://www.example.com"
],
"description": "The website addresses of the contact. These can be any valid web address. They must not be locations."
},
"birthday": {
"type": "string",
"example": "1990-05-12",
"description": "The birthday of the contact. Use the format YYYY-MM-DD, if no year is specified use 0, if no month or day is specified do not include."
},
"linkedin": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"example": "john.doe",
"description": "The LinkedIn handle of the contact."
},
"last_name": {
"type": "string",
"example": "Doe",
"description": "The last name of the contact."
},
"locations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "The city of the contact."
},
"postal": {
"type": "string",
"description": "The postal code of the contact."
},
"region": {
"type": "string",
"description": "The state or region of the contact."
},
"street": {
"type": "string",
"description": "The street address of the contact."
},
"country": {
"type": "string",
"description": "The country of the contact."
}
}
},
"example": [
{
"city": "San Francisco",
"postal": "94105",
"region": "CA",
"street": "123 Main St",
"country": "USA"
}
],
"description": "The locations associated with the contact."
},
"first_name": {
"type": "string",
"example": "John",
"description": "The first name of the contact."
},
"organization": {
"type": "string",
"example": "Google",
"description": "The organization of the contact."
}
}
}