Skip to main content

Send Sms

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEghl.send_sms
  • Contract tier: agent_ready
  • Risk: write
  • Catalog version: 2026-07-12.2
  • Descriptor hash: c5576b8ef3092a8832e31ebf19ed0db830149580ca89c719be41eaf9789b8b14

Send an SMS message to a contact in GoHighLevel GHL category: Conversations. This writes to GoHighLevel and may change account data.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-send-sms-example",
"method": "tools/call",
"params": {
"name": "ghl.send_sms",
"arguments": {
"contactId": "contactId_123",
"message": "message_example",
"tenantId": "tenantId_123",
"fromNumber": "fromNumber_example"
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"contactId",
"message"
],
"properties": {
"message": {
"type": "string",
"maxLength": 1600,
"description": "The SMS message content to send"
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"contactId": {
"type": "string",
"description": "The unique ID of the contact to send SMS to"
},
"fromNumber": {
"type": "string",
"description": "Optional: Phone number to send from (must be configured in GHL)"
}
}
}

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-send-sms-example",
"method": "tools/call",
"params": {
"name": "ghl.send_sms",
"arguments": {
"contactId": "contactId_123",
"message": "message_example",
"tenantId": "tenantId_123",
"fromNumber": "fromNumber_example"
}
}
}'

Example Responses

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