Skip to main content

Agency Saas Deprecated Get Saas Plan

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READghl.agency_saas_deprecated_get_saas_plan
  • Contract tier: legacy
  • Risk: read
  • Catalog version: 2026-07-12.2
  • Descriptor hash: 00e4f5f562d2f0182e11954c358a3a4c5eacbc35844cf1ad3f03eb2cfdf98479

Deprecated public API path for reading one GHL SaaS plan by plan ID. GHL category: Launchpad / Saas. Requires an agency PIT token and company ID. Agency API is only available on the $497/mo Pro SaaS plan. This is a read-only agency SaaS operation. This tool uses a deprecated GHL public API path and is exposed only for parity/backward compatibility.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-agency-saas-deprecated-get-saas-plan-example",
"method": "tools/call",
"params": {
"name": "ghl.agency_saas_deprecated_get_saas_plan",
"arguments": {
"planId": "planId_123",
"query": {}
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"planId"
],
"properties": {
"query": {
"type": "object",
"description": "Optional GHL-supported query parameters for this SaaS endpoint, such as Stripe customer/subscription identifiers or pagination/filter fields from the official docs.",
"additionalProperties": true
},
"planId": {
"type": "string",
"description": "planId path parameter required by /saas-api/public-api/saas-plan/:planId."
}
},
"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-agency-saas-deprecated-get-saas-plan-example",
"method": "tools/call",
"params": {
"name": "ghl.agency_saas_deprecated_get_saas_plan",
"arguments": {
"planId": "planId_123",
"query": {}
}
}
}'

Example Responses

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