loglux/whatsapp-mcp-stream

💬 Communication
0 Views
0 Installs

📇 🏠 🍎 🪟 🐧 - WhatsApp MCP server over Streamable HTTP with web admin UI (QR/status/settings), bidirectional media upload/download, and SQLite persistence.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "loglux-whatsapp-mcp-stream": {
      "command": "npx",
      "args": [
        "-y",
        "loglux-whatsapp-mcp-stream"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

WhatsApp MCP Stream

CI

A WhatsApp MCP server built around Streamable HTTP transport, using Baileys for WhatsApp connectivity, with a web admin UI and bidirectional media flow (upload + download).

Key points:

  • Transport: Streamable HTTP at /mcp
  • Engine: Baileys
  • Admin UI: QR, status, logout, runtime settings, chat history viewer
  • Media: upload endpoints + /media hosting + MCP download tool

Quick Start (Docker)

# build and run

docker compose build

docker compose up -d

The server will be available at:

  • Admin UI: http://localhost:3003/admin
  • MCP endpoint: http://localhost:3003/mcp
  • Media files: http://localhost:3003/media/<filename>

DNS on hosts with --iptables=false

On some NAS / hardened hosts (e.g. Synology with dockerd --iptables=false), Docker's embedded DNS proxy (127.0.0.11) has no iptables DNAT rules and refuses connections inside containers.

Fix: copy resolv.conf.example to resolv.conf and add a volume override:

cp resolv.conf.example resolv.conf

Then add to a local docker-compose.override.yml (not committed):

services:
  mcp-whatsapp:
    volumes:
      - ./resolv.conf:/etc/resolv.conf:ro

docker compose up picks up the override automatically.

Runtime Settings

Settings can be edited in the admin UI and are persisted to SETTINGS_PATH (defaults to MEDIA_DIR/settings.json).

Admin UI

Admin UI Admin console with runtime settings, QR linking, chat history viewer, export, and status.

Supported settings:

  • media_public_base_url
  • upload_max_mb
  • upload_enabled
  • max_files_per_upload
  • require_upload_token
  • upload_token
  • auto_download_media
  • auto_download_max_mb

Authentication

Built-in authentication is not implemented yet. In production, use a gateway that enforces auth. This project works well behind authmcp-gateway:

https://github.com/loglux/authmcp-gateway

Media Upload API

Base64 JSON:

curl -X POST http://localhost:3003/api/upload \
  -H "Content-Type: application/json" \
  -d {filename:photo.jpg,mime_type:image/jpeg,data:<base64>}

Multipart (recommended for large files):

curl -X POST http://localhost:3003/api/upload-multipart \
  -F "file=@/path/to/file.jpg"

Both return url and (if configured) publicUrl.

Sending Local Files via send_media

The ./files/ directory in the project root is bind-mounted into the container at /app/files. Drop any file there and reference it immediately — no container restart needed:

# On host:
cp report.pdf /path/to/whatsapp-mcp-stream/files/

# In send_media:
media_path: /app/files/report.pdf

For a URL source, pass media_url directly to send_media or stage_media — the server downloads the file itself without base64.

Upload Auth (Optional)

If require_upload_token=true, provide a token with either:

  • x-upload-token: <token>
  • Authorization: Bearer <token>

MCP Transport

The server exposes Streamable HTTP at /mcp.

Typical flow:

  1. POST /mcp with JSON-RPC initialize
  2. Use the returned mcp-session-id header for subsequent requests
  3. POST /mcp for tool calls

Note: clients must send Accept: application/json, text/event-stream on initialize.

Smoke Test

Quick regression smoke for MCP tools:

npm run smoke:mcp

Optional custom target:

MCP_BASE_URL=http://localhost:3003 npm run smoke:mcp

MCP Tools

Auth

ToolDescription
get_qr_codeGet the latest WhatsApp QR code as an image for authentication.
check_auth_statusCheck if the WhatsApp client is authenticated and ready.
logoutLogout from WhatsApp and clear the current session.

Contacts

ToolDescription
search_contactsSearch contacts by name or phone number.
resolve_contactResolve a contact by name or phone number (best matches).
get_contact_by_idGet contact details by JID.
get_profile_picGet profile picture URL for a JID.
get_group_infoGet group metadata and participants by group JID.

Chats

ToolDescription
list_chatsList chats with metadata and optional last message.
get_chat_by_idGet chat metadata by JID.
list_groupsList group chats only.
get_direct_chat_by_contact_numberResolve a direct chat JID by phone number.
get_chat_by_contactResolve a contact by name or phone number and return chat metadata.
analyze_group_overlapsFind members that appear across multiple groups.
find_members_without_direct_chatFind group members with no direct chat.
find_members_not_in_contactsFind group members missing from contacts.
run_group_auditRun combined group audit as one routine operation.

Messages

ToolDescription
list_messagesGet messages from a specific chat.
search_messagesSearch messages by text (optionally scoped to a chat).
get_message_by_idGet a specific message by ID (jid:id).
get_message_contextGet recent messages around a specific message.
get_last_interactionGet the most recent message for a JID.
send_messageSend a text message to a person or group. Supports optional idempotency_key.

Media

ToolDescription
send_mediaSend media (image/video/document/audio). Accepts media_path, media_url, or media_content (base64). Supports optional idempotency_key.
stage_mediaSave a file to the server's media directory and return its local path. Use the returned saved_path in send_media (media_path) — avoids base64 when the source is a URL (server downloads directly), or allows sending the same file to multiple recipients without re-uploading.
download_mediaDownload media from a message.

Utility

ToolDescription
pingHealth check tool.

Recovery Notes

This service contains an intentional recovery workaround for Baileys/WhatsApp session-state corruption.

Why it exists:

  • In production we observed cases where the container stayed alive and MCP still answered, but the WhatsApp session was functionally broken.
  • The most common indicators were Baileys errors like failed to find key ... to decode mutation and failed to sync state from version.
  • In that state, a manual container restart often restored service.

Current behavior:

  • On app-state corruption signals, the service first tries a soft recovery with forceResync().
  • If the same class of failure repeats within a time window, it escalates to an internal WhatsApp client restart.
  • On disconnects such as Connection Terminated, the service schedules a disconnect watchdog and escalates to an internal restart if the socket does not return to open in time.
  • The reconnect lifecycle is guarded against nested lock deadlocks, so disconnect recovery can complete without requiring a manual container restart.
  • Recent production observations show repeated socket disconnects (428 Connection Terminated, 503 Stream Errored) being auto-recovered back to open.
  • A dedicated /healthz endpoint reports 503 only when the service is genuinely stuck outside the allowed recovery window.
  • Docker health checks use /healthz, so the container is restarted only after in-process recovery has had a chance to work.

These recovery mechanisms reduce operator intervention and improve resilience against common WhatsApp/Baileys session failures.

License

MIT

Persistence

Chats and messages are persisted to a local SQLite database stored in the session volume.

Environment variables:

VariableDefaultDescription
DB_PATH<SESSION_DIR>/store.sqliteSQLite database path for chats/messages persistence.
WA_EVENT_LOG0Enable detailed WhatsApp event logs.
WA_EVENT_STREAM0Write raw Baileys event stream to a file for deep debugging.
WA_EVENT_STREAM_PATH/app/logs/wa-events.logFile path for the event stream log.
WA_RESYNC_RECONNECT1Enable reconnect safety net after force resync.
WA_RESYNC_RECONNECT_DELAY_MS15000Delay before reconnect after force resync (ms).
WA_SYNC_RECOVERY_COOLDOWN_MS300000Minimum delay between automatic app-state recoveries.
WA_SYNC_RECOVERY_WINDOW_MS900000Time window used to count repeated app-state corruption failures.
WA_SYNC_SOFT_RECOVERY_LIMIT2Number of soft recoveries before escalating to an internal restart.
WA_READINESS_GRACE_MS180000Grace period during recovery/disconnect before /healthz turns unhealthy.
WA_DISCONNECT_RECOVERY_DELAY_MS30000How long to wait after a socket close before the disconnect watchdog forces reconnect/restart.
WA_DISCONNECT_RECOVERY_RESTART_CODES428Comma-separated disconnect status codes that should escalate straight to an internal restart watchdog.
WA_SEND_DEDUP_WINDOW_MS45000Suppress exact duplicate send_message requests to the same JID within this window.
WA_IDEMPOTENCY_TTL_MS86400000How long completed send_message idempotency records are retained in SQLite for safe retries.
WA_MESSAGE_INDEX_MAX20000Max in-memory entries for message index (jid:id -> raw message).
WA_MESSAGE_KEY_INDEX_MAX20000Max in-memory entries for message key index (id -> raw message).
WA_INITIALIZE_TIMEOUT_MS120000Race the WhatsApp client initialise against this deadline; set to 0 to disable. Throws on timeout so recovery can retry instead of hanging.
WA_AUTO_DOWNLOAD_CONCURRENCY3Max parallel auto-downloads. Auto-download runs through an in-process bounded queue so a burst of inbound media cannot saturate the I/O.
WA_AUTO_DOWNLOAD_QUEUE_MAX200Max queued auto-download jobs. Excess is dropped FIFO (oldest first) with a warning log; recent messages stay prioritised.
MCP_HTTP_ENABLE_JSON_RESPONSE1Use direct JSON responses for Streamable HTTP POST requests by default. Set to 0 to force the older SSE-style POST response handling.

Additional transport diagnostics:

  • /mcp POST requests now log request lifecycle events in logs/mcp-whatsapp.log
  • this includes request entry, transport dispatch, transport.handleRequest completion, and HTTP finish / close
  • use these logs to determine whether latency happens before the response leaves whatsapp-mcp-stream or after that on the gateway/client side

Chat History API

Browse stored chats and messages via:

GET /api/chats?limit=50&offset=0&q=<search> — paginated chat list, optionally filtered by name.

GET /api/chats/:jid/messages?limit=50&offset=0 — paginated messages for a chat (newest first).

Both endpoints are used by the Chats tab in the admin UI.

Export

Export a chat (JSON + optional downloaded media) via:

GET /api/export/chat/:jid?include_media=true

If include_media=true, the ZIP includes files already downloaded via download_media. It does not fetch missing media from WhatsApp.

Related MCP Servers

AbdelStark/nostr-mcp

☁️ - A Nostr MCP server that allows to interact with Nostr, enabling posting notes, and more.

💬 Communication0 views
adhikasp/mcp-twikit

🐍 ☁️ - Interact with Twitter search and timeline

💬 Communication0 views
aeoess/mingle-mcp

📇 ☁️ - Agent-to-agent networking. Your AI publishes what you need, matches with other people's agents, both humans approve before connecting. 6 tools, Ed25519 signed, shared network at api.aeoess.com.

💬 Communication0 views
agenticmail/agenticmail

📇 🏠 🍎 🪟 🐧 - Real email and SMS for AI agents. Run a local mail server with disposable inboxes, send/receive real email, fetch verification codes, and drive a real inbox — all from your machine, no third-party email API. Install with npx @agenticmail/mcp.

💬 Communication0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.