Skip to main content

Ghl Create Store Setting

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

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

Create or update store settings including shipping origin and notifications. The default response summarizes private shipping-origin and notification data; set includeStoreSettingDetails true only when exact address, phone, email, subject, or template IDs are explicitly needed. GHL category: Payments. This writes to GoHighLevel and may change account data.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-ghl-create-store-setting-example",
"method": "tools/call",
"params": {
"name": "ghl.ghl_create_store_setting",
"arguments": {
"shippingOrigin": {},
"tenantId": "tenantId_123",
"locationId": "locationId_123",
"strictTenant": false,
"includeStoreSettingDetails": false
}
}
}

Arguments Schema

{
"type": "object",
"required": [
"shippingOrigin"
],
"properties": {
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"locationId": {
"type": "string",
"description": "GHL Location ID (optional, uses default if not provided)"
},
"strictTenant": {
"type": "boolean",
"default": true,
"description": "Require tenantId to match locationId routing (default: true)."
},
"shippingOrigin": {
"type": "object",
"required": [
"name",
"street1",
"city",
"zip",
"country"
],
"properties": {
"zip": {
"type": "string",
"description": "Postal/ZIP code"
},
"city": {
"type": "string",
"description": "City"
},
"name": {
"type": "string",
"description": "Business name"
},
"country": {
"type": "string",
"description": "Country code"
},
"street1": {
"type": "string",
"description": "Street address line 1"
}
},
"description": "Shipping origin address details"
},
"includeStoreSettingDetails": {
"type": "boolean",
"description": "Defaults to false. When false, the response redacts street address, ZIP, phone, email, notification subjects, and template IDs from the provider response."
}
}
}

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-create-store-setting-example",
"method": "tools/call",
"params": {
"name": "ghl.ghl_create_store_setting",
"arguments": {
"shippingOrigin": {},
"tenantId": "tenantId_123",
"locationId": "locationId_123",
"strictTenant": false,
"includeStoreSettingDetails": false
}
}
}'

Example Responses

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