Skip to main content
Glama
tarun101

WhatsApp Read Agent MCP Server

by tarun101

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation3/5

    Most tools are distinct, but list_chats and find_chats_by_name overlap since list_chats already supports name-substring filtering. This could confuse an agent choosing between them, though descriptions help clarify the intended use case.

    Naming Consistency4/5

    Tool names consistently follow a verb_noun pattern with lowercase and underscores. Minor deviation: list_chats vs find_chats_by_name for similar operations, but overall the pattern is readable and predictable.

    Tool Count5/5

    Seven tools is well-scoped for a read-only WhatsApp archive agent. Each tool covers a specific aspect (sync status, chat listing, history, single messages, attachments), and none feel redundant or missing at this scale.

    Completeness5/5

    The tool set provides full coverage for reading archived WhatsApp data: sync status, chat discovery, full message history retrieval, individual message access, and attachment handling. No significant operations are missing for the stated purpose of a read agent.

  • Average 4.3/5 across 7 of 7 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 1 commit in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is failing
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

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

    With no annotations, the description carries the burden and does disclose some behavioral traits: it lists metadata, indicates whether bytes are downloaded, and notes 'deterministic forward pagination'. However, it does not mention read-only status, auth requirements, or what 'archived' means, leaving gaps in behavioral coverage.

    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 two sentences, front-loaded with the primary purpose and followed by a succinct pagination note. Every word earns its place, with no redundant phrasing.

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

    Completeness4/5

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

    For a list tool with 3 parameters and no output schema, the description is reasonably complete: it defines scope, includes metadata details, and specifies pagination behavior. It could add return shape or error conditions, but given the simplicity, it is adequate and slightly above minimum.

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

    Parameters2/5

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

    Schema description coverage is 0%, so the description must compensate. It mentions pagination but does not explain the limit, cursor, or chatId parameters beyond what the schema already shows. This is a significant gap given there are three parameters, only one of which is required.

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

    Purpose5/5

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

    The description uses a specific verb 'List' with a clear resource ('archived messages in a chat that carry an attachment') and enumerates attachment types. It clearly distinguishes from sibling tools like get_attachment (which likely fetches a single attachment) and get_history (which lists messages generally).

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

    Usage Guidelines4/5

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

    It states the tool is for listing chat messages with attachments, which provides clear context for when to use it. However, it does not explicitly contrast with alternatives or state when not to use it, so it misses the 'explicit alternatives' bar for a 5.

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

  • Behavior3/5

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

    The description states it returns exact timestamp and content, adding behavioral context. It also indicates an archived, read-only operation. However, with no annotations, it does not disclose potential outcomes like message not found or error handling, making it adequate but not rich.

    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?

    A single sentence with no redundancy. Every word contributes: the verb, the resource, the identifiers, and the returned data. Well front-loaded for quick scanning.

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

    Completeness4/5

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

    For a simple fetch operation, the description covers the core purpose, identification parameters, and return value. It lacks details on failure behavior or response structure, but given the tool's simplicity and sibling context, it is fairly complete.

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

    Parameters4/5

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

    Since schema description coverage is 0%, the description compensates by clarifying that chatId is a chat JID and id is a message id, adding meaning beyond plain string type declarations. It also implies their role in locating the message, though format specifics are absent.

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

    Purpose5/5

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

    The description uses a specific verb 'Fetch' and identifies the resource as a 'single archived message' with the exact identifiers (chat JID and message id). This clearly distinguishes it from siblings like get_history (multiple messages) and get_attachment.

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

    Usage Guidelines4/5

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

    The context is clear: use this to fetch one specific archived message by its chat and message IDs. It does not explicitly mention when not to use it or name alternatives, but the single-message phrasing makes the intended use obvious.

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

  • Behavior4/5

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

    With no annotations, the description carries the transparency burden. It discloses deterministic ordering, optional filtering, and cursor-based pagination, which are key behavioral traits. It does not cover auth, rate limits, or return format, but for a simple read-only listing tool, the disclosed behaviors are adequate.

    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 extremely concise: two sentences, front-loaded with the primary purpose, and every clause adds value. No redundant phrasing or excessive detail.

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

    Completeness4/5

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

    For a simple list tool with no output schema and no annotations, the description covers the essential operational aspects: what is listed, ordering, optional filter, and pagination. It does not describe the return item structure, but the tool's simplicity makes this a minor gap rather than a critical omission.

    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?

    Schema description coverage is 67% (2 of 3 parameters have descriptions). The description adds some context by linking 'search' to 'name substring' and explaining cursor pagination, but it does not add meaning for the 'limit' parameter beyond its schema constraints. This aligns with the baseline score of 3 for adequate schema coverage.

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

    Purpose5/5

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

    The description clearly states the verb ('List'), the resource ('archived chats'), and the scope ('1:1 and group'), and adds a distinctive behavioral detail ('ordered deterministically by name'). This distinguishes it from sibling tools like find_chats_by_name, which likely searches non-archived chats.

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

    Usage Guidelines4/5

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

    The description provides clear context for when to use the tool: it lists archived chats, supports optional name substring filtering, and explains pagination via cursor. It does not explicitly mention alternatives or exclusions, but the specification of 'archived' and the pagination method offer enough guidance for correct use.

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

  • Behavior4/5

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

    No annotations are provided, so the description carries the burden of behavioral disclosure. It adds value by disclosing that matching is case-insensitive and substring-based, and that it operates on 'resolved names' – a useful nuance. For a search tool, this is adequate; it doesn’t explicitly state read-only, but 'Find' implies it. Missing details like pagination or result limits are not critical for such a simple query.

    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 two sentences: the first states the core functionality, the second gives a practical use case. There is no wordy filler or redundancy, and the most important information is front-loaded. Every sentence earns its place.

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

    Completeness4/5

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

    With a single parameter, no output schema, and simple search behavior, the description is mostly complete. It explains the search semantics and gives a typical use case tied to a sibling tool (get_history). It does not mention potential multi-word handling or result limits, but these are minor gaps given the tool's simplicity and sibling context.

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

    Parameters4/5

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

    The input schema has one parameter 'name' with a description ('Contact or group name to search for'), giving 100% schema coverage. The tool description adds semantic value by explaining how 'name' is used: it matches against the 'resolved name' as a case-insensitive substring. This goes beyond the schema and helps the agent understand the matching behavior.

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

    Purpose5/5

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

    The description opens with 'Find chats whose resolved name matches (case-insensitive substring)', which is a specific verb ('Find'), resource ('chats'), and qualifier ('by name'). This clearly distinguishes it from sibling tools like list_chats, which would list all chats, and get_history/get_message, which target individual chats.

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

    Usage Guidelines4/5

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

    The description explicitly tells the agent when to use this tool: 'Use this to locate a named contact or group, e.g., before reading their full history.' This provides a clear use case and a workflow hint (use before get_history). It does not explicitly state when not to use it or name alternatives, but the guidance is sufficient for most scenarios.

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

  • Behavior5/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly reveals that the tool only returns locally-archived bytes, never fetches from WhatsApp, requires explicit per-message approval, and is subject to an operator allowlist. These are meaningful behavioral traits that go beyond the input schema.

    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 two sentences long, front-loaded with the primary action, and every clause contributes meaning (approval requirement, no network fetch, local-only). There is no redundancy or fluff.

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

    Completeness4/5

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

    The tool is simple with 4 parameters and no output schema. The description covers the essential preconditions (approval, allowlist) and core behavior (local-only, no fetch), which is sufficient for an agent to decide when to invoke it. However, the exact return format (inline base64 vs. local path) is only implied through the includeBase64 parameter, not spelled out in the description.

    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 schema already provides descriptions for 'approved' and 'includeBase64', covering half the parameters. The description reinforces the requirement for 'approved' but does not explain 'id' or 'chatId' beyond their self-evident names. Since schema coverage is exactly 50%, not 'low', the baseline of 3 is appropriate; the description adds minimal extra parameter meaning.

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

    Purpose5/5

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

    The description opens with a specific verb ('Return') and a precise resource ('an approved attachment's locally-archived bytes'), clearly distinguishing it from siblings like list_attachments (which only lists) and get_message (which retrieves messages). The scope is further clarified by 'approved', 'local', and 'Never fetches from WhatsApp'.

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

    Usage Guidelines4/5

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

    The description states the key precondition ('Requires approved: true') and mentions the operator allowlist, giving clear context for when the tool can be invoked. It also implies that this tool is for already-downloaded data ('Never fetches from WhatsApp'), but it does not explicitly name sibling alternatives like list_attachments for finding attachment IDs, so it falls short of a 5.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the burden of disclosing behavior. It explicitly states 'Reads nothing from WhatsApp', which informs the agent that this is a safe, local read operation with no network or write side effects. It does not cover edge cases like unlinked devices, but the core behavioral trait is disclosed.

    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 two concise sentences. The first sentence front-loads the purpose with 'Report', lists key output fields, and the second adds a valuable safety qualifier. Every word earns its place with no redundancy or fluff.

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

    Completeness5/5

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

    For a zero-parameter tool with no output schema, the description fully specifies what the tool returns: link status, last sync time, and archive counts. It also clarifies the local nature of the data. There is no additional complexity requiring more context, making the description complete for an agent to invoke correctly.

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

    Parameters4/5

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

    The tool has zero parameters, so the baseline score is 4. The description adds no parameter info because there are none to explain. The schema coverage is effectively 100% since the input schema is empty, so no additional meaning is needed beyond what the schema already conveys.

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

    Purpose5/5

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

    The description uses the specific verb 'Report' and clearly identifies the resource as 'the local archive status'. It lists the exact pieces of information provided (linked device, last sync time, counts of archived chats/messages), which differentiates it from sibling tools that access individual chats, messages, or attachments.

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

    Usage Guidelines4/5

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

    The description implies a clear use case: when an AI agent needs to know the sync/link status or archive counts. It does not explicitly name alternatives or exclusions, but the contrast with sibling tools (list_chats, get_message, etc.) is implicit and sufficient for a simple status query tool.

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

  • Behavior5/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It fully explains the deterministic page behavior, direction ordering, chronological return, cursor usage, and termination condition (hasMore). No safety or side-effect warnings are needed since this is read-only, and the pagination contract is described in detail.

    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 two sentences, immediately stating the core purpose, followed by essential pagination mechanics. Every sentence adds value; no redundant or filler content. Front-loaded and highly efficient.

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

    Completeness4/5

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

    For a paginated history tool with no output schema, the description covers the key usage contract: page ordering, direction, cursor, and termination. It does not describe the message object fields, but this is likely inferable from siblings like get_message and is secondary to the pagination mechanics. The description is contextually sufficient for an agent to use the tool correctly.

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

    Parameters4/5

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

    The schema description covers only chatId (25%). The description compensates by explaining direction and cursor semantics explicitly ('forward reads oldest→newest', 'pass the cursor back to continue'), which are non-obvious parameters. It does not describe 'limit' but that is self-explanatory. Overall, the description adds significant meaning beyond the schema for the critical parameters.

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

    Purpose5/5

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

    The description clearly states the tool reads a page of chat history with a specific verb ('Read') and resource ('chat's message history'). It distinguishes from siblings like get_message by focusing on paginated history and explicitly describes direction semantics (forward/backward), which no other sibling covers.

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

    Usage Guidelines4/5

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

    The description provides clear operational guidance: how to use direction and cursor, that messages are chronological, and to iterate until hasMore is false. It does not explicitly compare to alternatives (e.g., get_message for single messages), but the sibling names and context make the distinction obvious. Strong usage instructions, but lacked explicit 'when-not-to-use'.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

whatsapp-mcp MCP server

Copy to your README.md:

Score Badge

whatsapp-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tarun101/whatsapp-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server