WhatsApp Business API einrichten: Anleitung 2026
Schritt-für-Schritt-Anleitung zur WhatsApp Business API – Voraussetzungen, BSP-Auswahl, Template-Freigabe und häufige Fehler behoben.
Verbinde dein WhatsApp in Minuten mit Claude AI. Sende Nachrichten, verwalte Gespräche und automatisiere Workflows mit dem leistungsfähigsten KI-Assistenten.

Stell dir vor, du sagst Claude: "Reply to my last 5 WhatsApp messages with a friendly response" — und es passiert tatsächlich. Kein Programmieren. Kein kompliziertes Setup. Nur du und der leistungsstärkste KI-Assistent auf dem Markt, die zusammenarbeiten.
In dieser Anleitung erfährst du, wie du:

Stell dir das so vor: Wenn du jetzt möchtest, dass Claude dir bei WhatsApp hilft, müsstest du Nachrichten von deinem Handy kopieren, in Claude einfügen, eine Antwort erhalten und diese dann zurück in WhatsApp kopieren. Ziemlich umständlich, oder?
Mit dieser Integration spricht Claude direkt mit deinem WhatsApp. Du sagst Claude einfach, was es tun soll — "send a message", "check my unread chats", "create a group" — und es passiert sofort.
Es ist wie E-Mail mit Gmail zu verbinden. Einmal eingerichtet, funktioniert es einfach.
Das Ganze wird durch etwas namens MCP (Model Context Protocol) ermöglicht — aber du musst nicht verstehen, was das bedeutet. Alles, was du wissen musst: Es ist die Brücke, die Claude dein WhatsApp steuern lässt.
Nicht alle KI-Assistenten sind gleich. Hier ist der Grund, warum Claude bei der WhatsApp-Automatisierung heraussticht:
| Funktion | Claude | ChatGPT | Andere KI-Tools |
|---|---|---|---|
| Denkt vor dem Handeln | Ja | Teilweise | Unterschiedlich |
| Erledigt mehrstufige Aufgaben eigenständig | Ja | Eingeschränkt | Selten |
| Versteht den gesamten Gesprächskontext | Ja | Ja | Unterschiedlich |
| Verfügbar als Desktop-App, Web, CLI und API | Ja | Web + API | Eingeschränkt |
| Native WhatsApp-Integrationsunterstützung | Ja | Ja | Teilweise |
Claude antwortet nicht nur — es denkt mit. Wenn du es bittest, "find my unhappy customers and draft personalized responses", wird Claude:
Kein anderer KI-Assistent macht das so zuverlässig.
Du brauchst nur zwei Dinge:
1. Ein WhatsTeam-Konto — Das verbindet deine WhatsApp-Nummer mit der Cloud, damit Claude darauf zugreifen kann.
Noch keins? Erstelle hier ein kostenloses Konto — es dauert weniger als 2 Minuten.
2. Deinen API-Schlüssel — Stell dir das wie ein persönliches Passwort vor, das Claude den Zugriff auf dein WhatsApp ermöglicht. Hol dir deinen API-Schlüssel hier — gehe zu Settings → API Keys und erstelle einen neuen oder kopiere einen vorhandenen.

Funktioniert sowohl auf claude.ai als auch in der Claude Desktop-App. Keine Installation nötig — das ist der schnellste Weg, um loszulegen.
Öffne Claude (Web oder Desktop) und klicke auf das Customize-Symbol in der linken Seitenleiste.

Im Customize-Panel klicke auf Connectors.

Klicke oben auf die +-Schaltfläche und wähle Add custom connector.

Gib im Dialog einen Namen ein (z.B. "WhatsApp") und füge deine MCP-Server-URL ein (ersetze YOUR_API_KEY durch deinen tatsächlichen Schlüssel):
https://api.whats.team/mcp?key=YOUR_API_KEY
Klicke dann auf Add.

Öffne eine neue Unterhaltung und tippe zum Beispiel:
"Show me my connected WhatsApp devices"
Claude wird mit deinen WhatsApp-Kontoinformationen antworten. Du bist verbunden!
Hol dir deinen kostenlosen WhatsTeam API-Schlüssel und starte die WhatsApp-Automatisierung mit Claude in unter 2 Minuten!
Du kannst den Connector auch direkt über eine Konfigurationsdatei hinzufügen:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonhljs json{
"mcpServers": {
"whatsteam": {
"type": "http",
"url": "https://api.whats.team/mcp?key=YOUR_API_KEY"
}
}
}
Du hast bereits andere Integrationen? Füge den
"whatsteam": { ... }-Block innerhalb des vorhandenen"mcpServers"-Abschnitts ein, getrennt durch ein Komma.
Nach der Bearbeitung starte Claude Desktop neu (Cmd + Q auf dem Mac, Alt + F4 unter Windows) und öffne es erneut.
Perfekt für: Entwickler, die im Terminal arbeiten und WhatsApp in ihren Workflow integrieren möchten.
Führe diesen einzelnen Befehl aus:
hljs bashclaude mcp add whatsteam https://api.whats.team/mcp?key=YOUR_API_KEY
Oder füge es in die .mcp.json-Datei deines Projekts ein:
hljs json{
"servers": {
"whatsteam": {
"type": "http",
"url": "https://api.whats.team/mcp?key=YOUR_API_KEY"
}
}
}
Starte Claude Code neu und überprüfe mit:
"Ping the WhatsApp MCP server"
Perfekt für: Produkte, Chatbots oder autonome Agenten bauen, die von Claude + WhatsApp angetrieben werden.
hljs pythonimport anthropic
client = anthropic.Anthropic()
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=1024,
messages=[
{"role": "user", "content": "Send a WhatsApp message to +12345678909 saying hello"}
],
mcp_servers=[
{
"type": "url",
"url": "https://api.whats.team/mcp?key=YOUR_API_KEY",
"name": "whatsteam"
}
]
)
hljs javascriptimport Anthropic from '@anthropic-ai/sdk'
const client = new Anthropic()
const response = await client.messages.create({
model: 'claude-sonnet-4-20250514',
max_tokens: 1024,
messages: [
{ role: 'user', content: 'Send a WhatsApp to +12345678909 saying hello' }
],
mcp_servers: [
{
type: 'url',
url: 'https://api.whats.team/mcp?key=YOUR_API_KEY',
name: 'whatsteam'
}
]
})
Die vollständige API-Dokumentation findest du in den Anthropic MCP Docs.
So sieht ein echtes Gespräch mit Claude aus, sobald WhatsApp verbunden ist:
Du: "Show me my connected WhatsApp devices"
Claude:
I found 3 connected devices on your WhatsTeam account:
Device Phone Status Sales +1 415 555 1234 Online Support +1 415 555 5678 Online Marketing +44 20 7946 0958 Online All 3 devices are online and ready to send messages. Which one would you like to use?
Du: "Send a message from Sales to +1 212 555 9876 saying: Hi! Just checking in on your order. Let me know if you need anything."
Claude:
Message sent successfully!
From: Sales (+1 415 555 1234) To: +1 212 555 9876 Message: Hi! Just checking in on your order. Let me know if you need anything.
Du: "Show me my last 5 conversations"
Claude:
Here are your 5 most recent conversations on the Sales device:
Contact Last Message Time Status Sarah M. (+1 212 555 9876) "Thanks, I'll check it out!" 2 min ago Active John D. (+44 77 1234 5678) "When will my order arrive?" 15 min ago Pending Maria Lopez (+34 612 345 678) "Perfecto, gracias!" 1 hour ago Active Alex Chen (+1 310 555 4321) "Can I change my delivery address?" 3 hours ago Pending Emma W. (+49 151 1234 5678) "Sent a photo" Yesterday Resolved You have 2 pending conversations that haven't been replied to. Want me to draft responses?
Jetzt, wo du verbunden bist, lass uns etwas Echtes machen. Öffne Claude und tippe diese Prompts nacheinander ein:
1. Verbindung prüfen:
"Show me my connected WhatsApp devices"
Claude wird mit einer Liste deiner Geräte, deren Telefonnummern und ihrem Online-Status antworten — als Bestätigung, dass alles funktioniert.
2. Deine erste KI-gestützte Nachricht senden:
"Send a WhatsApp message to +12345678909 saying: Hi! This message was sent by Claude AI"
Du siehst eine Bestätigung mit Absender, Empfänger und Nachrichteninhalt. Die Nachricht kommt sofort auf WhatsApp an.
3. Deine letzten Unterhaltungen lesen:
"Show me my last 10 WhatsApp conversations with the contact name and last message"
Claude zeigt dir eine formatierte Tabelle deiner letzten Chats mit Namen, Nachrichtenvorschau und Zeitstempeln.
4. Deine erste KI-Erkenntnis erhalten:
"Read my unread WhatsApp messages and give me a summary of what my contacts are asking about"
Hier zeigt Claude seine Stärke — es liest deine Nachrichten, versteht den Kontext und gibt dir eine Zusammenfassung wie:
"You received 12 messages today. 5 are about order status, 3 are asking for pricing info, 2 are support requests, and 2 are general greetings."
5. Deine erste Automatisierung:
"Check my unread messages. For each one, draft a friendly and professional reply. Show me the drafts before sending."
Claude liest jede ungelesene Nachricht, formuliert eine personalisierte Antwort und zeigt sie dir zur Freigabe:
Unread from John D.: "When will my order arrive?" Draft reply: "Hi John! Your order #4521 is on its way and should arrive by Thursday. I'll send you the tracking link shortly!"
Unread from Alex Chen: "Can I change my delivery address?" Draft reply: "Hi Alex! Of course. Could you send me the new address and I'll update it right away?"
Should I send these replies?
Hier sind echte Prompts, die du sofort kopieren und einfügen kannst:
1. Kundensupport auf Autopilot
"Read my unread WhatsApp messages and respond to customer questions with helpful, friendly answers"
2. Intelligentes Lead-Follow-up
"Which of my WhatsApp contacts messaged me in the last 24 hours but haven't received a reply? Draft a follow-up for each one"
Claude identifiziert unbeantwortete Unterhaltungen und formuliert personalisierte Follow-ups:
Found 3 contacts without a reply: Sarah M., John D., and Maria Lopez. Here are my suggested follow-ups...
3. Eine Aktion bewerben
"Send a promotional message to my last 20 active contacts saying: Special offer this week! 20% off all services. Reply YES to claim!"
4. Stimmungsanalyse
"Analyze my last 50 WhatsApp conversations and tell me: how many customers seem happy, neutral, or frustrated?"
Claude liest deine Unterhaltungen durch und liefert dir eine Auswertung:
Out of 50 conversations: 32 positive (64%), 12 neutral (24%), 6 frustrated (12%). The main complaints are about delivery times and response speed.
5. Team-Gruppenerstellung
"Create a WhatsApp group called 'Q2 Marketing Team' and add these numbers: +12345678909, +12345678909, +12345678909"
6. Monatsbericht
"Give me a report of my WhatsApp activity this month: total messages sent, received, most active contacts, and busiest day"
This month: 847 messages sent, 623 received, 45 new conversations. Most active day: Tuesday. Most active contact: Sarah M. (34 messages). Average response time: 12 minutes.
7. Sofortige Übersetzung
"Translate this message to Spanish and send it to +12345678909: 'Your order has been shipped and will arrive in 2-3 business days'"
Sent to +12345678909: "Su pedido ha sido enviado y llegara en 2-3 dias habiles"
8. Geplante Erinnerungen
"Send a WhatsApp message to +12345678909 tomorrow at 9 AM saying: Reminder — our meeting is at 2 PM today"
9. Medienverwaltung
"Show me all the images and documents I received on WhatsApp today"
10. Team-Aufgabenzuweisung
"Check my unread chats. Assign the first 5 to agent Maria and the next 5 to agent Carlos"
Claude zeigt keine WhatsApp-Tools an
Nachricht konnte nicht gesendet werden
Authentifizierungsfehler
Claude antwortet, führt aber keine WhatsApp-Aktionen aus
Du hast gerade das leistungsstärkste WhatsApp-Automatisierungs-Setup freigeschaltet, das es heute gibt. Mit Claudes fortschrittlicher Denkfähigkeit und WhatsTeams zuverlässiger WhatsApp-Anbindung kannst du:
Starte deine kostenlose Testversion auf WhatsTeam — verbinde deine WhatsApp-Nummer mit Claude in weniger als 5 Minuten. Keine Kreditkarte erforderlich!
Schritt-für-Schritt-Anleitung zur WhatsApp Business API – Voraussetzungen, BSP-Auswahl, Template-Freigabe und häufige Fehler behoben.