socialmate-mcp
A native MCP server for SocialMate that gives your AI a WhatsApp, enabling it to send and read messages, manage contacts and groups, and more through 44 tools.
README
socialmate-mcp
<p align="center"> <img src="https://raw.githubusercontent.com/micbwilliam/n8n-nodes-socialmate/main/assets/logo.png" width="96" alt="SocialMate" /> </p>
<p align="center"> <a href="https://www.npmjs.com/package/socialmate-mcp"><img src="https://img.shields.io/npm/v/socialmate-mcp.svg?color=2563eb" alt="npm version" /></a> <a href="https://www.npmjs.com/package/socialmate-mcp"><img src="https://img.shields.io/npm/dm/socialmate-mcp.svg?color=2563eb" alt="npm downloads" /></a> <a href="LICENSE"><img src="https://img.shields.io/npm/l/socialmate-mcp.svg" alt="license" /></a> <img src="https://img.shields.io/node/v/socialmate-mcp.svg" alt="node version" /> </p>
<p align="center"><strong>Give your AI a WhatsApp.</strong></p>
A native Model Context Protocol server for
SocialMate — the self-hosted WhatsApp automation server (desktop app,
or headless on your own VPS/Docker, managed from a browser at /admin). Point
Claude Desktop, Cursor, Cline or any MCP client at it and your agent can send and read WhatsApp
messages, look up contacts, manage groups, queue a paced batch of personalised messages, recall whole conversations, look at the
photos people send, remember who it's talking to and what media said, and check anti-ban headroom —
44 tools, all on your own machine and your own number.
SocialMate doesn't contain an AI — it gives your AI a WhatsApp. This server is a thin translator over SocialMate's local REST API: every tool call runs through the app's real auth → scope → tier-gate → anti-ban → audit pipeline, so nothing here can bypass a limit and the app stays the single source of truth.
- Guide: https://socialmate.app/docs/mcp-server
- Landing page: https://socialmate.app/whatsapp-mcp-server
- The app: https://socialmate.app
Requirements
- The SocialMate desktop app running, with its Local API server on (API & Integrations).
- An API key from the app (API & Integrations → new key). Its scope (read / send / admin) and your license tier decide which tools work.
- Node.js ≥ 18.17 (only to run
npx; nothing to install globally).
Quickstart — Claude Desktop
Add SocialMate to your claude_desktop_config.json (the app shows a copy-paste snippet under
API & Integrations → MCP):
{
"mcpServers": {
"socialmate": {
"command": "npx",
"args": ["socialmate-mcp"],
"env": {
"SOCIALMATE_API_KEY": "sm_live_xxx",
"SOCIALMATE_BASE_URL": "http://127.0.0.1:3456"
}
}
}
}
Restart Claude Desktop and the WhatsApp tools appear. Cursor, Cline, Goose and any other MCP
client use the same command / args / env — drop it into their MCP config the same way.
Environment variables
| Variable | Required | Default | What it is |
|---|---|---|---|
SOCIALMATE_API_KEY |
✅ | — | An API key from the app → API & Integrations. |
SOCIALMATE_BASE_URL |
http://127.0.0.1:3456 |
The app's API — a desktop app or a headless VPS. Use your Pro named tunnel host to drive WhatsApp from a remote agent. On a VPS (a datacenter IP) you can route an account through your own residential/mobile proxy (Pro) to keep a residential IP. |
What your agent can do — 44 tools
All namespaced whatsapp_*; the model picks the right one from its description.
| Area | Tools |
|---|---|
| Messaging | send_message (with reply_to to quote) · send_media · send_poll · get_poll_results · send_location · send_contact |
| Conversational signals | react_message (emoji: "" removes) · mark_read · send_typing — free on every tier; they consume no send budget and don't raise the risk score |
| Memory & reading | get_ai_context (role-mapped memory feed) · search_messages · fetch_new_messages (poll cursor) · list_chats |
| Vision (see what people send) | list_media (has_context: false = "what haven't I looked at yet?") · get_media — returns the image as an MCP image block, so your model can actually look at it · set_media_context — save what you saw, so it's never analyzed twice |
| Agent Memory (write, Pro) | update_contact (save a name/notes/tags you learned) · set_media_context — SocialMate stores what your agent learned, it never generates it |
| Contacts | list_contacts · get_contact |
| Groups | list_groups · get_group · create_group · update_group_participants · set_group_subject · set_group_description · get_group_invite · leave_group |
| Queue & batches (Pro) | queue_import — for people already waiting on you: one {{field}} template + up to 5000 rows, each row becoming one individual, personalised message paced by anti-ban · queue_message (one, scheduled) · queue_status · list_queue · cancel_queued · retry_queued · list_batches · cancel_batch · retry_batch · pause_queue · resume_queue |
| Sync & status | trigger_sync · sync_status · get_antiban_status · get_capabilities · list_accounts |
Account-scoped tools take an optional account_id; with a single-account key it's auto-resolved.
A good first call is whatsapp_get_capabilities — it tells the agent its tier, scope and feature
flags so it knows what it's allowed to do before it tries.
The vision loop. list_media (has_context: false) → get_media (the item comes back as a real
image content block your vision model can see) → set_media_context (cache the description). After
that the photo rides along already described inside get_ai_context, and is never analyzed again.
get_media returns the thumbnail — enough to see what a photo is, bounded in size; the
full-resolution bytes stay on the HTTP API on purpose (see below).
Batch sending is off by default. queue_import returns 403 bulk_import_disabled (the wire code
is unchanged) until the user switches it on in the app (Settings → Advanced → "Enable batch
sending"). SocialMate is not a broadcast tool — it is for managing your own conversations, with
people who are already waiting on you. Every batch item is an individual, personalised message paced
by the anti-ban engine; identical text to many contacts is blocked by the duplicate guard. When the
gate is closed the server tells the agent to ask, rather than to loop send_message — which is the
pattern that gets numbers banned.
Deliberately not exposed: API-key management, webhook wiring, the per-account proxy, media writes (force-download / delete / cleanup), and the raw media file — an agent minting keys, rewiring delivery, re-routing traffic, deleting files, or pulling a 15 MB blob into its context is a footgun. Do those in the app, or over the HTTP API / n8n. The full list, with a reason per endpoint, is the
NOT_EXPOSEDallowlist incontract.test.mjs— a new app endpoint fails the build until it is either given a tool or deliberately skipped there.
🧠 A seed prompt that makes the agent behave like a human
The server ships a native MCP prompt — socialmate_human_agent — so any client that
supports prompts/list (Claude Desktop, Cursor, …) can load it as a system prompt. No
copy-paste.
It teaches the human reply cadence (mark read → recall the thread → show typing → react or
reply), the whole tool inventory and when not to use each, the tier + anti-ban error
contract (402, blocked sends, queueable:false, signal_rate_limit), the things the agent
genuinely cannot do (no edit/delete/forward; it can't see the contact typing; buttons are
deprecated — send a poll), and the consent and honesty rules.
Fill it in with your business:
| Argument | Example |
|---|---|
business_name |
Northwind Coffee |
business_description |
specialty coffee roastery in Cairo |
agent_name |
Nora |
agent_role |
front-desk support |
tone |
warm, concise, never salesy |
business_hours |
Sun–Thu, 9:00–17:00 Cairo time |
escalation_procedure |
tagging @ops in Slack and telling the customer a colleague will follow up |
scope_boundaries |
orders, opening hours and the menu |
additional_rules |
anything extra |
Canonical text (and the n8n version): docs/AI-AGENT-SYSTEM-PROMPT.md.
Reactions, read receipts and the typing indicator are free on every tier and consume no send budget — an agent can behave like a human without spending its message allowance.
📥 Reacting to incoming messages
This is the one thing to know about MCP. MCP is request/response — it has no inbound push. The server can't notify Claude/Cursor that a WhatsApp message just arrived; a client only acts when you ask it to. Two ways to make an agent react to messages as they arrive:
- Poll (pure MCP) — call
whatsapp_fetch_new_messageson a loop, passing the newesttimestampyou've seen assinceto get only what's new. Requires Pro (it reads synced history). - Event-driven (bridge) — start the loop from n8n's SocialMate Trigger (
message.received) or a webhook to your own code, then let the agent act back through these tools. Works on Free too (themessage.receivedwebhook is a Free event).
For a desktop assistant you drive by hand, MCP alone is perfect. For an unattended auto-responder, use the bridge.
Did it land? — delivery receipts
Every message row returned by whatsapp_fetch_new_messages and whatsapp_search_messages carries a
status: pending → sent → delivered (it reached their phone) → read (they opened it). So
an agent can check whether something it sent actually landed by re-reading the row — it never has to
ask a human. Note that a send returns status: "sent", which only means handed to WhatsApp; it
is not proof of arrival.
To be told the moment it lands, subscribe to the two receipt webhooks (Pro) — like every other event, they arrive through the n8n SocialMate Trigger or your own receiver, never over MCP:
| Event | Fires when |
|---|---|
message.delivered |
Your message reached the recipient's phone (two grey ticks) |
message.read |
They opened it (two blue ticks) |
Both carry messageId, status and fromMe: true — correlate on the messageId your send returned
and the notification loop closes. They fire only for messages the operator sent: an inbound
message the operator reads on their own phone never emits one, so message.read always means they
read yours, never you read theirs.
Scope & tiers
Tools honor the API key's scope and your license tier, exactly like the REST API:
| Free | Pro | |
|---|---|---|
| Read messages, chats, contacts, groups | ✅ | ✅ |
| Send text | ✅ | ✅ |
| Anti-ban status, capabilities | ✅ | ✅ |
| Send media, create/manage groups | — | ✅ |
| History, Get AI Context, poll cursor | — | ✅ |
| Smart queue (schedule / batch / control) | — | ✅ |
A gated tool returns a clear "requires Pro" error rather than failing silently, so the agent can adapt (e.g. fall back to a plain text send).
Develop / explore
Browse and call every tool interactively with the MCP Inspector:
npx @modelcontextprotocol/inspector npx socialmate-mcp
Run the test suite (spawns the server against a mock REST API and drives it over MCP):
npm install
npm test
Prefer n8n?
Building visual, triggered workflows instead of a desktop assistant? SocialMate also ships a native n8n node whose every operation is usable as an AI-Agent tool. Same WhatsApp, different client — see the AI agents guide.
License
MIT © SocialMate Ltd.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。