mcp-whatsapp-whisper

GBurgardt/mcp-whatsapp-whisper

3.2

If you are the rightful owner of mcp-whatsapp-whisper and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

MCP server that transcribes WhatsApp audio messages using local Whisper.

Tools
3
Resources
0
Prompts
0

mcp-whatsapp-whisper

MCP server that transcribes WhatsApp audio messages using local Whisper.

Requirements

  • macOS with WhatsApp Desktop
  • localwhisper installed at ~/projects/localwhisper
  • ffmpeg (brew install ffmpeg)

Install

npm install
npm run build

Claude Config

Add to your Claude settings:

{
  "mcpServers": {
    "whatsapp": {
      "command": "node",
      "args": ["/path/to/mcp-whatsapp-whisper/dist/server.js"]
    }
  }
}

Tools

  • getRecentAudio: Get recent audio files from a contact
  • searchAudios: Search audio files by contact name or date
  • transcribeAudio: Transcribe audio using localwhisper

Usage

// Get last audio from mom
getRecentAudio(contactName: "mom")

// Search audios from yesterday
searchAudios(query: "john", date: "yesterday")

// Transcribe specific audio
transcribeAudio(audioPath: "/path/to/audio.opus")

License

MIT