hubspot_create_company
Add a new company to HubSpot CRM by specifying the company name and additional properties. Simplifies CRM data management through the HubSpot MCP Server.
Instructions
Create a new company in HubSpot
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Company name | |
properties | No | Additional company properties |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Company name",
"type": "string"
},
"properties": {
"description": "Additional company properties",
"type": "object"
}
},
"required": [
"name"
],
"type": "object"
}