Files
skald-connectors/connectors/whatsapp/connector.json
T
dguiducci 3440890d11 Migliorate llm_short_description per tutti i connector — tool names espliciti
Ogni connector.json ora ha una llm_short_description che elenca i tool
specifici che espone, così l'LLM sa esattamente cosa attivare (lazy load).

SKALD.md: documentata criticità del campo llm_short_description
nel system prompt dell'LLM.
2026-07-22 22:21:52 +01:00

50 lines
1.5 KiB
JSON

{
"id": "whatsapp",
"name": "WhatsApp",
"type": "mcp_local",
"scope": "user",
"launch_command": "node index.js",
"transport": "stdio",
"requires": [
"NODE"
],
"tags": [
"messaging",
"mcp",
"local",
"whatsapp",
"qr"
],
"dependencies": [
"@whiskeysockets/baileys>=6.7.9",
"qrcode>=1.5.4"
],
"setup_instructions": [
"Skald installs dependencies automatically (npm install).",
"Open the connector in Skald and scan the QR code with your WhatsApp phone.",
"The session is persisted and survives restarts."
],
"docs": [
{
"lang": "en",
"description": "Send and read WhatsApp messages from your own linked account. Uses Baileys multi-device protocol \u2014 no browser, no Chromium needed. Link via QR code.",
"llm_short_description": "WhatsApp messaging: read and send messages, manage chats (free, QR-based). Tools: status (connection check), get_qr (auth via QR code), logout, list_chats, get_messages (per chat, paginated), send_message, send_media (images/documents), download_media, search_messages (full-text), search_contacts. Links to user's WhatsApp Web session."
}
],
"auth": {
"type": "qr"
},
"mcp_config": {
"command": "node",
"args": [
"index.js"
],
"transport": "stdio"
},
"homepage": "https://github.com/WhiskeySockets/Baileys",
"icon_small": "icon_sm.png",
"icon_large": "icon_lg.png",
"version": 3,
"version_string": "2.0.3",
"version_release_date": "2026-07-21"
}