Tálamo
    Tálamo MCPv1.3

    journal_​list

    Lista las entradas del journal y los escenarios del Copilot del usuario autenticado.

    Journal
    Solo lectura
    Versión del contrato 1.0.0

    Permisos y seguridad

    Procedencia
    journal
    Requiere confirmación
    No
    openWorld
    false

    Esquema de entrada

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "enum": [
            "planned",
            "open",
            "closed",
            "cancelled"
          ]
        },
        "instrument": {
          "type": "string",
          "maxLength": 24
        },
        "limit": {
          "default": 20,
          "type": "integer",
          "minimum": 1,
          "maximum": 50
        }
      },
      "required": [
        "limit"
      ],
      "additionalProperties": false
    }

    Esquema de salida

    json
    {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "source": {
          "type": "string",
          "const": "journal"
        },
        "entries": {
          "type": "array",
          "items": {
            "type": "object",
            "propertyNames": {
              "type": "string"
            },
            "additionalProperties": {}
          }
        },
        "count": {
          "type": "integer",
          "minimum": 0,
          "maximum": 9007199254740991
        }
      },
      "required": [
        "source",
        "entries",
        "count"
      ],
      "additionalProperties": {}
    }

    Ejemplo

    json
    {
      "title": "Latest planned scenarios",
      "input": {
        "status": "planned",
        "limit": 10
      },
      "output": {
        "source": "journal",
        "entries": [],
        "count": 0
      }
    }

    Límites

    • At most 50 rows per request.
    • Only entries owned by the authenticated user are returned.

    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.