hubspot_create_contact
Add new contacts to HubSpot CRM by specifying email, first name, last name, and additional properties using the HubSpot MCP Server.
Instructions
Create a new contact in HubSpot
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Contact's email address | ||
firstname | Yes | Contact's first name | |
lastname | Yes | Contact's last name | |
properties | No | Additional contact properties |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Contact's email address",
"type": "string"
},
"firstname": {
"description": "Contact's first name",
"type": "string"
},
"lastname": {
"description": "Contact's last name",
"type": "string"
},
"properties": {
"description": "Additional contact properties",
"type": "object"
}
},
"required": [
"firstname",
"lastname"
],
"type": "object"
}