Skip to main content

Brand Boards Clone Voice

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

WRITEghl.brand_boards_clone_voice
  • Contract tier: legacy
  • Risk: write
  • Catalog version: 2026-07-12.2
  • Descriptor hash: f1c839a98c4ee1f03194675685ca76d3aee75f35bb7a3132a76de2ce0b8a85a9

Clone a GHL Brand Voice using the observed HighLevel UI clone contract. GHL category: Marketing / Brand Boards. This is a UI-observed helper, not a published official GHL docs endpoint. Use it only when the user asks to duplicate an existing Brand Voice. Provide the source brandVoiceId and a new clone name; the runtime injects the authenticated locationId. Use disposable clone names during validation and delete test clones in the same flow.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-brand-boards-clone-voice-example",
"method": "tools/call",
"params": {
"name": "ghl.brand_boards_clone_voice",
"arguments": {
"brandVoiceId": "brandVoiceId_123",
"name": "name_example",
"body": {},
"query": {},
"tenantId": "tenantId_123",
"locationId": "locationId_123",
"strictTenant": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"brandVoiceId",
"name"
],
"properties": {
"body": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name for the cloned Brand Voice."
},
"locationId": {
"type": "string",
"description": "Optional location ID for route validation. If provided, it must match the authenticated runtime location."
},
"brandVoiceId": {
"type": "string",
"description": "Source Brand Voice ID to clone."
}
},
"description": "Optional raw observed GHL UI clone payload. Supported fields are brandVoiceId and name; locationId is injected from the authenticated runtime location.",
"additionalProperties": true
},
"name": {
"type": "string",
"description": "Name for the cloned Brand Voice. Use a clear disposable prefix such as MAD_AUDIT_DELETE_ME_* during validation."
},
"query": {
"type": "object",
"description": "Optional GHL-supported query parameters for this official Brand Boards endpoint, such as pagination or documented filters.",
"additionalProperties": true
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"locationId": {
"type": "string",
"description": "Optional GHL location ID. If provided, it must match the authenticated runtime location; otherwise the runtime location is injected where the official Brand Boards endpoint requires it."
},
"brandVoiceId": {
"type": "string",
"description": "Source Brand Voice ID to clone."
},
"strictTenant": {
"type": "boolean",
"default": true,
"description": "Require tenantId to match locationId routing (default: true)."
}
},
"additionalProperties": false
}

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-brand-boards-clone-voice-example",
"method": "tools/call",
"params": {
"name": "ghl.brand_boards_clone_voice",
"arguments": {
"brandVoiceId": "brandVoiceId_123",
"name": "name_example",
"body": {},
"query": {},
"tenantId": "tenantId_123",
"locationId": "locationId_123",
"strictTenant": false
}
}
}'

Example Responses

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