Skip to main content

Create Contact Task

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEghl.create_contact_task
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 2026-07-12.2
  • Descriptor hash: 5c7144b753756272fa17fad9d6743aaf97e4fb2fb78473b87a9ec00b84999925

Create a new task for a contact GHL category: Contacts. This writes to GoHighLevel and may change account data.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-create-contact-task-example",
"method": "tools/call",
"params": {
"name": "ghl.create_contact_task",
"arguments": {
"contactId": "contactId_123",
"title": "title_example",
"dueDate": "dueDate_example",
"body": "body_example",
"dryRun": false,
"tenantId": "tenantId_123",
"completed": false,
"assignedTo": "assignedTo_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"contactId",
"title",
"dueDate"
],
"properties": {
"body": {
"type": "string",
"description": "Task description"
},
"title": {
"type": "string",
"description": "Task title"
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "Preview changes without writing"
},
"dueDate": {
"type": "string",
"description": "Due date (ISO format)"
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"completed": {
"type": "boolean",
"description": "Task completion status"
},
"contactId": {
"type": "string",
"description": "Contact ID"
},
"assignedTo": {
"type": "string",
"description": "User ID to assign task to"
}
}
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the GHL MCP operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Tool-specific GHL or local navigation result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe execution, routing, and timing metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe error details when ok is false; credential values are never returned."
}
},
"description": "Normalized GHL MCP response envelope.",
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ghl-create-contact-task-example",
"method": "tools/call",
"params": {
"name": "ghl.create_contact_task",
"arguments": {
"contactId": "contactId_123",
"title": "title_example",
"dueDate": "dueDate_example",
"body": "body_example",
"dryRun": false,
"tenantId": "tenantId_123",
"completed": false,
"assignedTo": "assignedTo_example"
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool ghl.create_contact_task executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}