Tálamo
    Tálamo MCPv1.3

    audit_​request_​sync

    Prepara una sincronización de auditoría y exige aprobación en Tálamo.

    Auditoría
    Escritura cerrada
    Versión del contrato 1.0.0

    Permisos y seguridad

    Procedencia
    audited_account
    Requiere confirmación
    openWorld
    false

    Esquema de entrada

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "account_id": {
          "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)$"
        },
        "confirmation_id": {
          "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)$"
        }
      },
      "required": [
        "account_id"
      ],
      "additionalProperties": false
    }

    Esquema de salida

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "confirmation_required": {
          "type": "boolean"
        },
        "confirmation_id": {
          "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)$"
        },
        "confirmation_url": {
          "type": "string",
          "format": "uri"
        },
        "expires_at": {
          "type": "string",
          "format": "date-time",
          "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
        }
      },
      "additionalProperties": {}
    }

    Ejemplo

    json
    {
      "title": "Prepare synchronization",
      "input": {
        "account_id": "00000000-0000-4000-8000-000000000004"
      },
      "output": {
        "confirmation_required": true,
        "confirmation_id": "00000000-0000-4000-8000-000000000005",
        "confirmation_url": "https://talamo.app/mcp/confirm/00000000-0000-4000-8000-000000000005",
        "expires_at": "2026-08-06T12:10:00.000Z"
      }
    }

    Límites

    • Only an owned account can be synchronized.
    • One-time confirmation expires after 10 minutes.
    • Synchronization never places, closes, or modifies trades.

    Errores estables

    CodeDescription
    UNAUTHORIZEDThe OAuth token is missing, expired, revoked, or invalid for this resource.
    VALIDATION_ERRORThe arguments do not match the published input schema.
    TOOL_ERRORThe operation could not be completed without exposing internal details.
    CONFIRMATION_REQUIREDOpen the returned URL and approve the exact action.
    CONFIRMATION_INVALIDThe approval is expired, denied, already used, or does not match the payload.
    NOT_FOUNDThe account is not owned by the authenticated user.