get_chat
Retrieve detailed chat history from WhatsApp, including the last message, by specifying the chat JID. Integrates with MCP servers for AI-driven message management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chat_jid | Yes | The JID of the chat to retrieve | |
include_last_message | No | Include last message details (default true) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chat_jid": {
"description": "The JID of the chat to retrieve",
"type": "string"
},
"include_last_message": {
"default": true,
"description": "Include last message details (default true)",
"type": "boolean"
}
},
"required": [
"chat_jid"
],
"type": "object"
}