claudeers.

πŸ”“ unclaimed β€” this page was auto-generated from GitHub. Are you the creator?

Claim this page β†’
// Integrations & Connectors

wa-automate-nodejs

πŸ’¬ πŸ€– The most reliable tool for chatbots with advanced features. Be sure to 🌟 this repository for updates!

// Integrations & Connectors[ cli ][ api ][ desktop ][ web ][ claude ]#claude#api#chatbots#framework#nodejs#typescript#integrationsβ—· NOASSERTION$open-sourceupdated 15 days ago
Actively maintained
100/100
last commit 21 days ago
last release 21 days ago
releases 702
open issues 154
// install
git clone https://github.com/open-wa/wa-automate-nodejs

[!WARNING] By using this project you explicitly agree to the Terms of Service.

This project is unofficial and is not affiliated with WhatsApp or Meta. Use it at your own risk.

[!CAUTION] This repository is currently on version 5, which is still in alpha and may have issues.

For now, use version 4 instead unless you are explicitly testing or contributing to v5.

The last stable version is 4.76.0:

npx @open-wa/[email protected]
wa-automate-nodejs

open-wa / wa-automate

Turn a WhatsApp account into an API, bot runtime, webhook bridge, and AI tool surface.

Easy API - SocketClient - Embedded runtime - Plugins - MCP - Support

What this is

@open-wa/wa-automate is the Node.js toolkit for turning WhatsApp Web automation into something you can actually build on: a local API, a bot backend, a webhook source, a plugin host, or an MCP server for AI agents.

This repo is now the v5 monorepo. That means the architecture is cleaner and more modular, but the package version here is still 5.0.0-alpha.0. If you are running a mature v4 production system, stay on 4.76.0 for now and test v5 separately.

Need a WhatsApp API running quickly? Start with Easy API. Want the browser/runtime inside your own app? Use the embedded runtime. Building integrations, proxying sessions, or exposing WhatsApp to an AI agent? Those surfaces are in this repo too.

What can you build?

  • customer support inboxes that sync WhatsApp into your own tools
  • order, booking, and delivery notifications from internal systems
  • bots that react to messages, group activity, and runtime events
  • webhook bridges for CRMs, helpdesks, automations, and low-code tools
  • multi-session automations with named accounts and isolated consumers
  • AI-agent workflows through the built-in Model Context Protocol server

Capabilities at a glance

SurfaceWhat it gives youStart here
Easy APIRun WhatsApp as a local HTTP API with docs and generated schemasQuick start
SocketClientConnect another Node.js app to a running Easy API instanceSimple automation
Embedded runtimeOwn the runtime lifecycle directly through createClientDeep integration
Browser driversChoose Puppeteer, Playwright, or Lightpanda-backed runtime packagesEmbedded runtime
PluginsLoad reusable integrations with plugins and pluginConfigPlugins and integrations
WebhooksPush WhatsApp events into your own servicePlugins and integrations
ChatwootBridge WhatsApp into Chatwoot conversationsPlugins and integrations
Cloudflare proxyReach a local session remotely without exposing local ports directlyCloudflare Session Proxy
MCPLet AI agents discover and call Easy API methods as toolsAI-agent integration

Pick your path

If you want to...Start here
get a WhatsApp-backed API running in minutesQuick start: Easy API
build a bot without owning the browser runtimeSimple automation: SocketClient
own the runtime inside your own Node.js appDeep integration: embedded runtime
move from stable v4 into the v5 alpha carefullyMigrating from v4 to v5
publish or share reusable automation piecesPlugins and integrations

The short version

You can use this project in a few practical ways:

  • run a ready-made API with the CLI
  • connect another app to that runtime
  • embed the runtime directly in your own Node.js code
  • add integrations and plugins

Quick start: Easy API

Want to convert a WhatsApp account into an API with the least ceremony? Run the CLI:

npx @open-wa/wa-automate --port 8080

That starts an Easy API instance, launches the first-run authentication flow, and exposes interactive docs for the live session.

v5 is alpha right now, so keep commands explicit and test in a disposable environment before wiring it into anything important.

For first login, the runtime will ask you to authenticate. Depending on your setup, either:

  • scan the QR code the runtime prints, or
  • use link-code login if that fits your setup better

Once the session is connected, open:

http://localhost:8080/api-docs/

That page is your first proof of life: the session is up, the API is reachable, and the method surface is discoverable.

Other useful generated artifacts:

http://localhost:8080/meta/swagger.json
http://localhost:8080/meta/postman.json

Useful first commands:

# choose a port
npx @open-wa/wa-automate --port 8080

# provide your own API key
npx @open-wa/wa-automate --port 8080 --api-key "your-secure-key"

# run a named session
npx @open-wa/wa-automate --session-id sales --port 8081

# send events to your service
npx @open-wa/wa-automate --webhook "https://your-app.example/webhooks/open-wa"

Good defaults for a first real session:

  • set a sessionId early if you might run more than one account
  • protect the API with an --api-key before exposing it outside your machine
  • keep business logic in your own app and let open-wa own the WhatsApp runtime

If your goal is simply "connect WhatsApp to another service", add --webhook first and write no custom runtime code until you know you need it.

If you prefer Docker:

docker run -p 8080:8080 --init openwa/wa-automate

Docker notes:

  • this is best for local testing or a disposable first run unless you also plan session persistence properly
  • --init is recommended so zombie processes are cleaned up properly
  • you can pin the library version with W_A_V, for example -e W_A_V=4.42.1

Simple automation: SocketClient

Building a bot, worker, or app integration? Keep the WhatsApp runtime in Easy API and let your Node.js app act as a clean remote consumer.

Start the runtime:

npx @open-wa/wa-automate --port 8080 --api-key "your-secure-key"

Install the remote consumer in your app:

npm install @open-wa/socket-client

Keep the Easy API process running. Your app is a remote consumer, not the runtime host.

Then connect from your app:

import { SocketClient } from '@open-wa/socket-client';

async function start() {
  const client = await SocketClient.connect('http://localhost:8080', 'your-secure-key');

  client.onMessage(async (message) => {
    if (message.body === 'Hi') {
      await client.sendText(message.from, 'πŸ‘‹ Hello!');
    }
  });
}

start().catch(console.error);

Why this path is good for most builders:

  • open-wa owns the browser automation runtime
  • your app stays small and focused on automation logic
  • the current v5 runtime uses HTTP RPC for commands and Server-Sent Events for runtime events behind the compatibility client

This is usually the best choice if you want to ship automation fast without owning browser setup, session lifecycle, and API hosting in the same process.

Deep integration: embedded runtime

If Easy API is the hosted engine, embedded runtime is the cockpit. Use it when your app needs to own browser selection, lifecycle, and runtime behavior directly.

The v5 public contract exposes createClient from @open-wa/core through @open-wa/wa-automate.

This path is lower-level than Easy API + SocketClient. Use it when runtime ownership matters more than the quickest working bot.

npm install @open-wa/wa-automate @open-wa/driver-puppeteer
import { createClient } from '@open-wa/wa-automate';
import { PuppeteerDriver } from '@open-wa/driver-puppeteer';

async function start() {
  const client = await createClient({
    sessionId: 'sales',
    driver: new PuppeteerDriver(),
    headless: true,
  });

  client.onMessage(async (message) => {
    if (message.body === 'Hi') {
      await client.sendText(message.from, 'πŸ‘‹ Hello!');
    }
  });
}

start().catch(console.error);

Important v5 reality:

  • the repo’s current public contract centers on createClient
  • some docs are still being reorganized from the older v4-era shape
  • pluggable browser drivers are now part of the architecture

Available runtime driver packages in this repo:

  • @open-wa/driver-puppeteer
  • @open-wa/driver-playwright
  • @open-wa/driver-lightpanda

Use the embedded path when you need deeper control over browser selection, runtime lifecycle, or infrastructure behavior.

Configuration and CLI

Common config fields documented in the repo’s current config schema and docs include:

  • sessionId
  • headless
  • useChrome / executablePath
  • qrTimeout / authTimeout
  • licenseKey
  • linkCode
  • plugins
  • pluginConfig

Common high-value CLI flags include:

--port 8080
--api-key "your-secure-key"
--webhook "https://your-app.example/webhooks/open-wa"
--session-id sales
--pm2
--license-key "YOUR-LICENSE-KEY"

Some older docs and examples still mention additional legacy or transitional flags. For v5 alpha onboarding, prefer the smaller set above unless you have verified the exact flag against the version you are running.

For contributors to this monorepo, the repo currently declares:

  • Node.js >=22.21.1
  • pnpm >=10.25.0
pnpm install
pnpm build

Plugins and integrations

This repo is no longer just a single package. It includes a plugin/integration surface for extending the runtime.

Relevant packages in this repo:

  • @open-wa/plugin-sdk
  • @open-wa/integration-webhook
  • @open-wa/integration-chatwoot
  • @open-wa/integration-s3
  • @open-wa/integration-cloudflare
  • @open-wa/node-red

Loading plugins

The current config schema supports plugin references as npm package names or file paths:

plugins: [
  '@open-wa/integration-chatwoot',
  '@open-wa/integration-webhook',
  './my-local-plugin'
],
pluginConfig: {
  webhook: {
    // plugin-specific config
  }
}

If you want to share a bot or plugin

The safest documented path today is:

  1. build it as an npm package or local package
  2. expose it through the plugin SDK
  3. tell users which plugins and pluginConfig entries they need

Good examples to copy from in this repo:

What is not clearly documented yet as a stable public workflow:

  • a public plugin marketplace
  • a formal plugin discovery registry for community downloads

So today, β€œshare a plugin” realistically means β€œpublish a package people can install and load”.

Built-in integration examples

  • Webhook: push events into your own service
  • Chatwoot: connect open-wa to Chatwoot for bidirectional message handling
  • Cloudflare Session Proxy: remote session access without opening public ports
  • Node-RED: low-code visual automation on top of Easy API

Cloudflare Session Proxy

If you want remote access without exposing local ports, this repo ships @open-wa/cf-proxy.

High-level flow:

  1. deploy the Worker to your Cloudflare account
  2. attach your session to that proxy as the upstream
  3. connect consumers through the proxy URL

Example consumer connection:

import { SocketClient } from '@open-wa/socket-client';

const client = await SocketClient.connect(
  'cf-proxy://open-wa-proxy.account.workers.dev?sessionId=my-session&token=CONSUMER_TOKEN'
);

This is the cleanest path if you want remote access but do not want to invent your own transport bridge.

AI-agent integration (MCP)

If your goal is to let an AI agent interact with WhatsApp, the cleanest surface is the built-in Model Context Protocol server.

MCP exposes every Easy API method as a discoverable tool that AI agents (Claude, Cursor, Windsurf, custom agents) can call directly β€” no manual HTTP wiring needed.

Quick start

npx @open-wa/wa-automate --port 8080 --api-key "your-secure-key" --mcp

Then point your MCP client at:

http://localhost:8080/mcp

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "open-wa": {
      "url": "http://localhost:8080/mcp",
      "headers": {
        "X-API-Key": "your-secure-key"
      }
    }
  }
}

Cursor / Windsurf

Add a new MCP server with the URL http://localhost:8080/mcp and include X-API-Key in headers.

How it works

  • Uses the Streamable HTTP transport (single endpoint, no separate SSE/messages paths)
  • Tools are generated from the schema registry β€” same methods as the HTTP API
  • API key required on every request (same key as Easy API)
  • Session readiness is enforced β€” tools block until the session is fully connected
  • Dashboard: shows connection status, configuration copy-paste snippets (Claude/Cursor), and live tool details at http://localhost:8080/dashboard/mcp

Configuration

{
  "apiKey": "your-secure-key",
  "mcp": {
    "enabled": true,
    "path": "/mcp",
    "exposeToolsMeta": true
  }
}

Security boundary

MCP is an Easy API-only feature. It is not available through createClient(). The API key is mandatory β€” MCP refuses to start without one. Discovery (tool listing) and execution both require authentication.

Without MCP

If you prefer HTTP, give your agent the Easy API docs surface instead:

  • http://localhost:8080/api-docs/
  • http://localhost:8080/meta/swagger.json
  • http://localhost:8080/meta/postman.json

Migrating from v4 to v5

The stable public line is still v4.76.0. Use it for production systems unless you are intentionally validating the v5 alpha.

npx @open-wa/[email protected]

If you are testing v5, treat it like a new runtime surface rather than a drop-in README copy-paste from v4:

  • start with Easy API and confirm http://localhost:8080/api-docs/ works
  • test named sessions, auth, webhooks, and generated schemas in a separate environment
  • prefer SocketClient for remote consumers instead of embedding browser/runtime work everywhere
  • use createClient only when you need direct runtime ownership
  • expect some older v4 docs, examples, and flags to be reorganized or replaced during the alpha

Documentation map

The current docs in this repo are organized around real usage modes. Start with:

Running this repo locally

If you want to work on the monorepo itself:

git clone https://github.com/open-wa/wa-automate-nodejs.git
cd wa-automate-nodejs
pnpm install
pnpm build

Useful root scripts:

pnpm dev
pnpm test
pnpm lint
pnpm typecheck

Support

If you need help, paid support, or consulting:

DescriptionLink
Documentationhttps://docs.openwa.dev
Discordhttps://discord.gg/dnpp72a
Get a license keyhttps://openwa.page.link/key
Donate or book 1 hour consultBuy me a coffee
Per-minute consulting
Hire me

License

Hippocratic + Do Not Harm Version 1.0

This code is in no way affiliated with, authorized, maintained, sponsored, or endorsed by WhatsApp or any of its affiliates or subsidiaries. This is independent and unofficial software.

Cryptography notice

This distribution includes cryptographic software. Depending on where you live, there may be restrictions on the import, possession, use, or re-export of encryption software. Check your local laws before using it. See http://www.wassenaar.org/ for more information.

The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code.

// compatibility

Platformscli, api, desktop, web
Operating systemsβ€”
AI compatibilityclaude
LicenseNOASSERTION
Pricingopen-source
LanguageTypeScript

// faq

What is wa-automate-nodejs?

πŸ’¬ πŸ€– The most reliable tool for chatbots with advanced features. Be sure to 🌟 this repository for updates! . It is open-source on GitHub.

Is wa-automate-nodejs free to use?

wa-automate-nodejs is open-source under the NOASSERTION license, so it is free to use.

What category does wa-automate-nodejs belong to?

wa-automate-nodejs is listed under integrations in the Claudeers registry of Claude-compatible tools.

0 views
β˜… 3,627 stars
unclaimed
updated 15 days ago

// embed badge

wa-automate-nodejs on Claudeers
[![Claudeers](https://claudeers.com/api/badge/wa-automate-nodejs.svg)](https://claudeers.com/wa-automate-nodejs)

// retro hit counter

wa-automate-nodejs hit counter
[![Hits](https://claudeers.com/api/counter/wa-automate-nodejs.svg)](https://claudeers.com/wa-automate-nodejs)

// reviews

// guestbook

0/500

// related in Integrations & Connectors

πŸ”“

Use claude code and codex for free in the terminal, VSCode extension, and discord like OpenClaw (voice supported)

// integrationsAlishahryar1/⟨PythonβŸ©β˜… 39,205β—· MIT[ claude ]
πŸ”“

Bridge local AI coding agents (Claude Code, Cursor, Gemini CLI, Codex) to messaging platforms (Feishu/Lark, DingTalk, Slack, Telegram, Discord, LINE, WeChat…

// integrationschenhg5/⟨GoβŸ©β˜… 13,605[ claude ]
πŸ”“

All parts of Claude Code's system prompt, 27 builtin tool descriptions, sub agent prompts (Plan/Explore/Task), utility prompts (CLAUDE.md, compact, statusli…

// integrationsPiebald-AI/⟨JavaScriptβŸ©β˜… 11,624β—· MIT[ claude ]
πŸ”“

Fastest, smallest, and fully autonomous AI assistant infrastructure written in Zig

// integrationsnullclaw/⟨ZigβŸ©β˜… 7,737β—· MIT[ claude ]

// built by

β†’ see how wa-automate-nodejs connects across the ecosystem