MCP tools

set_reach_out_schedule

Set a reach-out schedule

Sets how often the Reach-out nudge routine reminds you about this person.

Annotations

{
  "title": "Set a reach-out schedule",
  "readOnlyHint": false,
  "destructiveHint": false,
  "openWorldHint": false,
  "idempotentHint": true
}

Input

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "contactId": {
      "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)$"
    },
    "frequency": {
      "type": "string",
      "enum": [
        "daily",
        "weekly",
        "monthly"
      ]
    },
    "hour": {
      "default": 9,
      "type": "integer",
      "minimum": 0,
      "maximum": 23
    },
    "minute": {
      "default": 0,
      "type": "integer",
      "minimum": 0,
      "maximum": 59
    },
    "daysOfWeek": {
      "default": [
        1
      ],
      "description": "Weekly runs; 0 is Sunday",
      "type": "array",
      "items": {
        "type": "integer",
        "minimum": 0,
        "maximum": 6
      }
    },
    "dayOfMonth": {
      "default": 1,
      "type": "integer",
      "minimum": 1,
      "maximum": 31
    }
  },
  "required": [
    "contactId",
    "frequency",
    "hour",
    "minute",
    "daysOfWeek",
    "dayOfMonth"
  ],
  "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