Skip to main content

Spec Gap Checklist

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READghl.spec_gap_checklist
  • Contract tier: legacy
  • Risk: read
  • Catalog version: 2026-07-12.2
  • Descriptor hash: 0a152f76afc37a4cc113a01833413b280e940adbe26cc1681e697a05a4ef1068

Return a checklist of recommended validation steps before shipping changes. GHL category: Dashboard. This is a local MCP diagnostic/helper operation and does not call GHL.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-spec-gap-checklist-example",
"method": "tools/call",
"params": {
"name": "ghl.spec_gap_checklist",
"arguments": {
"contactId": "contactId_123",
"locationId": "locationId_123",
"pipelineId": "pipelineId_123",
"conversationId": "conversationId_123",
"pipelineStageId": "pipelineStageId_123"
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"contactId": {
"type": "string",
"description": "Optional contact ID for sample calls."
},
"locationId": {
"type": "string",
"description": "Optional location ID for sample calls."
},
"pipelineId": {
"type": "string",
"description": "Optional pipeline ID for sample calls."
},
"conversationId": {
"type": "string",
"description": "Optional conversation ID for sample calls."
},
"pipelineStageId": {
"type": "string",
"description": "Optional pipeline stage ID for sample calls."
}
},
"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-spec-gap-checklist-example",
"method": "tools/call",
"params": {
"name": "ghl.spec_gap_checklist",
"arguments": {
"contactId": "contactId_123",
"locationId": "locationId_123",
"pipelineId": "pipelineId_123",
"conversationId": "conversationId_123",
"pipelineStageId": "pipelineStageId_123"
}
}
}'

Example Responses

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