Skip to main content
Get unread message count for current user in a conversation.

Tool details

FieldValue
Nameget_conversation_unread_count
GroupConversations

Playground

Input schema

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

Output schema

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