Skip to main content

Ghl Conversations Read

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READghl.ghl_conversations_read
  • Contract tier: agent_ready
  • Risk: read
  • Catalog version: 2026-07-12.2
  • Descriptor hash: 64725e88c526bcf603308e90e4dc966b6ec507413547538870df423dd1891e7c

Call read-only raw GHL tools in the GHL Conversations category. Conversation, message, SMS, email-send, call, recording, and transcription tools. First use ghl_list_category_tools and ghl_get_tool_reference to choose a raw tool and inspect its schema. Pass the raw tool name in toolName and its parameters in arguments. Compatibility: raw tool parameters supplied beside toolName are also forwarded, but nested arguments take precedence.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-ghl-conversations-read-example",
"method": "tools/call",
"params": {
"name": "ghl.ghl_conversations_read",
"arguments": {
"toolName": "toolName_example",
"tenantId": "tenantId_123",
"arguments": {},
"locationId": "locationId_123",
"strictTenant": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"toolName"
],
"properties": {
"tenantId": {
"type": "string",
"description": "Optional tenant ID override for non-runtime local deployments."
},
"toolName": {
"type": "string",
"description": "Raw Conversations tool name to execute."
},
"arguments": {
"type": "object",
"description": "Arguments for the selected raw tool. Use ghl_get_tool_reference to inspect the schema before calling.",
"additionalProperties": true
},
"locationId": {
"type": "string",
"description": "Optional location ID for route validation. In public runtime mode, the runtime header location wins."
},
"strictTenant": {
"type": "boolean",
"description": "When true, require tenantId to match locationId routing."
}
},
"additionalProperties": true
}

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-ghl-conversations-read-example",
"method": "tools/call",
"params": {
"name": "ghl.ghl_conversations_read",
"arguments": {
"toolName": "toolName_example",
"tenantId": "tenantId_123",
"arguments": {},
"locationId": "locationId_123",
"strictTenant": false
}
}
}'

Example Responses

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