whatsapp-hermes

whatsapp-hermes

Connects AI agents to WhatsApp via the Baileys library using QR code pairing, enabling sending and receiving messages without the Meta Business API. Supports persistent sessions, access control, and message buffering.

Category
Visit Server

README

whatsapp-hermes

An MCP (Model Context Protocol) server that lets an AI agent — such as Hermes Agentsend and receive WhatsApp messages. It connects to WhatsApp through the Baileys library (the WhatsApp Web protocol, paired via QR code), so no Meta Business API or developer account is required.

⚠️ Unofficial API — ban risk. WhatsApp does not officially support third-party clients outside the Business API. Use a dedicated number, keep usage conversational, and don't send bulk/unsolicited messages.

Features

  • Persistent WhatsApp Web connection with auto-reconnect
  • QR-code pairing (rendered to stderr) with session persisted to wa_auth/
  • Incoming messages buffered in memory (ring buffer, default 200)
  • Sender allow-list access control
  • Exposed as first-class MCP tools over stdio

MCP Tools

Tool Purpose Params
whatsapp_status Connection + pairing state
whatsapp_send Send a text message to (number or JID), message
whatsapp_list_chats Recent chats, newest first
whatsapp_get_messages Buffered incoming messages chatId?, limit? (20), since? (epoch ms)

to accepts a raw phone number (digits only, with country code, no +) or a full JID (<number>@s.whatsapp.net for a person, <id>@g.us for a group).

Prerequisites

  • Node.js 18+
  • A phone with WhatsApp (to scan the pairing QR)

Install

git clone https://github.com/RicSchonfelder/whatsapp-hermes.git
cd whatsapp-hermes
npm install
cp .env.example .env      # then edit .env

Set access control in .env:

# Only these numbers may reach the agent (digits, country code, no +):
WHATSAPP_ALLOWED_NUMBERS=5511987654321
# or allow everyone (dev only):
# WHATSAPP_ALLOWED_NUMBERS=*

First-time pairing

Run once to pair, without needing an MCP host:

npm run pair

A QR code prints to the terminal (stderr). On your phone: WhatsApp → Settings → Linked Devices → Link a Device, then scan it. The session is saved to wa_auth/ and reused on every subsequent run.

Register with Hermes

hermes mcp add whatsapp --command "node" --args "D:/Programas/Whatsapp/src/index.js"

On Windows, if node isn't resolved from PATH, use the absolute path to the Node executable:

hermes mcp add whatsapp --command "C:\\Program Files\\nodejs\\node.exe" --args "D:/Programas/Whatsapp/src/index.js"

Then in Hermes, reload MCP servers (/reload-mcp) or start a new session. The whatsapp_* tools become available to the agent.

The server boots the WhatsApp client and the MCP stdio server together. On first launch with no saved session it prints a QR to stderr and waits for pairing; after that it connects silently.

Protocol note (important)

MCP uses stdout for JSON-RPC. This server writes all logs and the QR code to stderr — never stdout — so the protocol channel stays clean. If you extend this project, keep that invariant.

Security

  • wa_auth/ holds full session credentials — it is git-ignored. Never commit or share it. Treat it like a password.
  • Always set WHATSAPP_ALLOWED_NUMBERS before exposing the agent.
  • Prefer a dedicated phone number for the bot.

Manutencao

Secrets que nunca devem ser commitados

  • wa_auth/ — contem a sessao autenticada do WhatsApp (credenciais completas). Quem tiver acesso a ela pode ler e enviar mensagens como se fosse o numero vinculado.
  • .env — contem configuracao sensivel (numbers permitidos, etc.).

Ambos estao no .gitignore e protegidos pelo scripts/cleanup.sh.

Limpeza de artefatos temporarios

O projeto gera arquivos operacionais que podem ser removidos sem risco:

bash scripts/cleanup.sh

O script remove apenas *.log e qr_pair.png na raiz do projeto. Ele nunca toca em wa_auth/ ou .env.

Arquivos de log

Arquivos como pair_stdout.log, pair_stderr.log, test_send.log e qr_capture.log sao criados durante pareamento e testes. Podem ser apagados a qualquer momento com o script acima ou manualmente.

License

MIT © RicSchonfelder

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured