Upsert Contact
Immutable Catalog + Curated Guide
This lossless descriptor comes from the active Portal catalog and is enhanced with reviewed examples.
- Contract tier:
agent_ready - Risk:
write - Catalog version:
2026-07-12.2 - Descriptor hash:
6097abe395ef28aaebc5b722d2256584d5a366a9642c42e67afcd40367d729e5
Create or update a contact idempotently.
Request Body
{
"jsonrpc": "2.0",
"id": "ghl-upsert-contact-example",
"method": "tools/call",
"params": {
"name": "ghl.upsert_contact",
"arguments": {
"firstName": "Ava",
"lastName": "Reed",
"email": "ava.reed@example.com",
"tags": [
"lead",
"vip"
]
}
}
}
Arguments Schema
{
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tags to assign to contact"
},
"email": {
"type": "string",
"description": "Contact email address"
},
"phone": {
"type": "string",
"description": "Contact phone number"
},
"dryRun": {
"type": "boolean",
"default": false,
"description": "Preview changes without writing"
},
"source": {
"type": "string",
"description": "Source of the contact"
},
"lastName": {
"type": "string",
"description": "Contact last name"
},
"tenantId": {
"type": "string",
"description": "Tenant ID from list_tenants."
},
"firstName": {
"type": "string",
"description": "Contact first name"
},
"assignedTo": {
"type": "string",
"description": "User ID to assign contact to"
}
}
}
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
- Node.js
- Python
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-upsert-contact-example",
"method": "tools/call",
"params": {
"name": "ghl.upsert_contact",
"arguments": {
"firstName": "Ava",
"lastName": "Reed",
"email": "ava.reed@example.com",
"tags": [
"lead",
"vip"
]
}
}
}'
const response = await fetch('https://portal.madpanda3d.com/api/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer mad_live_***',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"jsonrpc": "2.0",
"id": "ghl-upsert-contact-example",
"method": "tools/call",
"params": {
"name": "ghl.upsert_contact",
"arguments": {
"firstName": "Ava",
"lastName": "Reed",
"email": "ava.reed@example.com",
"tags": [
"lead",
"vip"
]
}
}
}),
});
const data = await response.json();
console.log(data);
import requests
url = 'https://portal.madpanda3d.com/api/mcp'
headers = {
'Authorization': 'Bearer mad_live_***',
'Content-Type': 'application/json',
}
payload = {
"jsonrpc": "2.0",
"id": "ghl-upsert-contact-example",
"method": "tools/call",
"params": {
"name": "ghl.upsert_contact",
"arguments": {
"firstName": "Ava",
"lastName": "Reed",
"email": "ava.reed@example.com",
"tags": [
"lead",
"vip"
]
}
}
}
response = requests.post(url, headers=headers, json=payload, timeout=60)
print(response.json())
Example Responses
- 200 Success
- 400 Missing Required
{
"ok": true,
"contact": {
"id": "cont_294",
"firstName": "Ava",
"email": "ava.reed@example.com"
}
}
{
"ok": false,
"error": "validation_error",
"message": "firstName is required"
}