Skip to main content
Glama
prodmeevan

whatsapp-mcp-free

by prodmeevan

list_messages

Retrieve recent messages from a specific WhatsApp chat by providing its JID or phone number, with an optional limit.

Instructions

Recent messages from one chat (jid or phone number)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jidYes
limitNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It implies a read-only listing operation but does not state ordering, pagination, whether message content/media is included, or any side effects such as marking messages read.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with no filler. Every word contributes to the core purpose and parameter clarification.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter list operation, the description is minimally viable. However, with no output schema and no annotations, it leaves out the exact return shape, ordering, and usage boundaries, making it adequate but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds useful meaning for the required parameter by noting that jid can be a jid or phone number. The limit parameter is not described in words, though the schema's default, minimum, and maximum provide some semantics. Given 0% schema description coverage, the description only partially compensates.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly names the resource ('messages'), the scope ('from one chat'), and the recency ('recent'), and it clarifies the key parameter by allowing 'jid or phone number'. It does not explicitly name sibling tools, but the 'one chat' scope helps differentiate it from list_chats and search_messages.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to use this tool versus alternatives such as list_chats, search_messages, or ai_inbox. No exclusions, prerequisites, or explicit selection criteria are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.