unlink_related_people
Unlink two people
Removes the relationship between two contacts and the reverse link in iCloud.
Annotations
{
"title": "Unlink two people",
"readOnlyHint": false,
"destructiveHint": true,
"openWorldHint": true,
"idempotentHint": false
}Input
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ownerContactId": {
"type": "string",
"format": "uuid",
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"
},
"relatedContactId": {
"type": "string",
"format": "uuid",
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$"
}
},
"required": [
"ownerContactId",
"relatedContactId"
],
"additionalProperties": false
}Auth
Bearer personal token (ml_…) or OAuth access token (mla_…). Memlane Pro and iCloud required.
Errors
- 401 missing or invalid credentials
- 403 account is not Pro or iCloud is not connected
- 429 rate limit
- Tool errors return isError text without a stack trace
Destructive confirm
First call returns confirmationId and a summary. After the person confirms, call confirm_destructive_action.