Skip to main content
Advance read cursor for current user in a conversation.

Tool details

FieldValue
Nameupdate_conversation_read_state
GroupConversations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "conversation_id": {
      "type": "string",
      "format": "uuid",
      "description": "Conversation identifier that scopes the request."
    },
    "message_id": {
      "type": "string",
      "format": "uuid",
      "description": "Provide the message id."
    }
  },
  "required": [
    "conversation_id",
    "message_id"
  ],
  "additionalProperties": false,
  "description": "Input schema for the update_conversation_read_state tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "updated": {
      "type": "boolean",
      "description": "The updated associated with this tool result."
    }
  },
  "required": [
    "updated"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the update_conversation_read_state tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}