This server gives Claude direct access to your macOS Voice Memos database, reading from the CloudRecordings.db file in your Group Containers folder. You get five tools: list_voice_memos for browsing recordings with search and pagination, get_voice_memo for metadata, get_audio to retrieve file paths or base64-encoded audio, get_transcript to extract Apple's transcripts from the custom tsrp atom embedded in m4a files, and transcribe_memo to generate new transcripts using SFSpeechRecognizer. Requires Full Disk Access permission and macOS Sonoma or later. Most useful when you want Claude to search through old recordings, pull transcripts into context, or coordinate with other audio processing tools like whisper-mcp for local transcription workflows.
An MCP (Model Context Protocol) server that provides programmatic access to Apple Voice Memos on macOS. Use this to let Claude and other AI assistants interact with your voice recordings.
Pairs well with whisper-mcp for local transcription.
npm install -g apple-voice-memo-mcp
Or use directly with npx:
npx apple-voice-memo-mcp
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"apple-voice-memo-mcp": {
"command": "npx",
"args": ["-y", "apple-voice-memo-mcp"]
}
}
}
After editing, restart Claude Desktop.
For Claude Code, add to your project's .mcp.json file:
{
"mcpServers": {
"apple-voice-memo-mcp": {
"command": "npx",
"args": ["-y", "apple-voice-memo-mcp"]
}
}
}
Or for user-wide configuration, add to ~/.claude/settings.json:
{
"mcpServers": {
"apple-voice-memo-mcp": {
"command": "npx",
"args": ["-y", "apple-voice-memo-mcp"]
}
}
}
Tip: Use /mcp in Claude Code to verify the server is connected.
If running from source instead of npm:
{
"mcpServers": {
"apple-voice-memo-mcp": {
"command": "node",
"args": ["/path/to/apple-voice-memo-mcp/dist/index.js"]
}
}
}
Full Disk Access: Required to read the Voice Memos database
Speech Recognition (for transcription):
transcribe_memo toollist_voice_memosList all voice memos with metadata.
Parameters:
limit (optional): Maximum number of results (1-100, default: 50)offset (optional): Pagination offsetsearch (optional): Search term to filter by titleExample response:
{
"memos": [
{
"id": 1,
"title": "Meeting Notes",
"date": "2025-01-07T10:30:00.000Z",
"duration": 120.5,
"hasTranscript": true
}
],
"total": 15
}
get_voice_memoGet detailed metadata for a specific memo.
Parameters:
id (required): Memo IDget_audioRetrieve the audio file.
Parameters:
id (required): Memo IDformat (optional): "path" or "base64" (default: "path")get_transcriptExtract transcript from a memo.
Parameters:
id (required): Memo IDformat (optional): "text", "json", or "timestamped"transcribe_memoTranscribe a memo using SFSpeechRecognizer.
Parameters:
id (required): Memo IDlanguage (optional): Language code (default: "en-US")Voice Memos data is stored in:
~/Library/Group Containers/group.com.apple.VoiceMemos.shared/Recordings/CloudRecordings.db.m4a formatApple stores transcripts directly inside the .m4a audio files using a custom MPEG-4 atom called tsrp. This MCP server parses these atoms to extract transcripts - no separate transcript files exist.
# Clone the repository
git clone https://github.com/jwulff/apple-voice-memo-mcp.git
cd apple-voice-memo-mcp
# Install dependencies
npm install
# Build
npm run build
# Run in development
npm run dev
# Test with MCP inspector
npm run inspector
transcribe_memo tool to generate a transcript via SFSpeechRecognizerIf you see errors about missing better_sqlite3.node bindings:
npm rebuild better-sqlite3
This recompiles the native module for your current Node.js version.
MIT
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp