HubSpot MCP Server

hubspot_create_contact

Create a new contact in HubSpot

Input Schema

NameRequiredDescriptionDefault
emailNoContact's email address
firstnameYesContact's first name
lastnameYesContact's last name
propertiesNoAdditional 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" }