minutes
Open-source conversation memory for AI assistants. Record meetings, capture voice memos, search everything — your AI remembers every conversation you've had.
Website | GitHub | MCP Server | Desktop App
Install
Or via Homebrew on macOS:
&&
Quick start
What it does
- Record meetings and voice memos from your microphone
- Transcribe locally with whisper.cpp (Apple Silicon optimized)
- Diarize speakers with pyannote-rs (native Rust, no Python)
- Extract action items, decisions, and people into structured YAML frontmatter
- Search across all conversations by keyword, person, or topic
- Track commitments and relationships across meetings
- Sync voice memos from your phone via iCloud/Dropbox/any folder sync
- Integrate with Claude, Cursor, Windsurf, Obsidian via MCP
Key commands
| Command | Description |
|---|---|
minutes record |
Start recording from microphone |
minutes stop |
Stop recording and transcribe |
minutes process <file> |
Transcribe an audio file |
minutes search <query> |
Full-text search across meetings |
minutes actions |
List open action items |
minutes people |
Relationship intelligence |
minutes commitments |
Track what you promised who |
minutes watch |
Auto-process voice memos from a folder |
minutes dictate |
Speak-to-text (clipboard + daily note) |
minutes health |
System diagnostics |
minutes setup |
Download models and configure |
Output format
Meetings save as markdown with structured YAML frontmatter:
---
title: Q2 Pricing Discussion
date:
duration: 42m
action_items:
- assignee: mat
task: Send pricing doc
due: Friday
status: open
decisions:
- text: Run pricing experiment with monthly billing
---
Works with Obsidian, Logseq, grep, or any markdown tool.
Features
| Feature | Details |
|---|---|
| Transcription | whisper.cpp, local, multiple model sizes |
| Speaker diarization | pyannote-rs (native Rust, ~34MB models) |
| Voice activity detection | Silero VAD (prevents hallucination loops) |
| Audio formats | m4a, mp3, wav, ogg, webm (ffmpeg or symphonia) |
| GPU acceleration | Metal, CoreML (macOS), CUDA (Linux/Windows), ROCm/HIP, Vulkan |
| Phone voice memos | Folder watcher + iCloud/Dropbox/Syncthing |
| MCP server | 15 tools + 7 resources for Claude/Cursor/Windsurf |
| Desktop app | Tauri v2 menu bar app (macOS, Windows) |
| Privacy | Everything local, 0600 permissions on output |
Claude / MCP integration
No API keys needed — Claude reads your meetings via MCP tools.
# MCP server (no Rust required)
You: "What did Alex say about pricing?"
Claude: [searches meetings] → synthesizes answer from transcripts
GPU acceleration
| Backend | Platform | Feature flag | Prerequisites |
|---|---|---|---|
| Metal | macOS | metal |
Xcode Command Line Tools |
| CoreML | macOS | coreml |
Xcode Command Line Tools |
| CUDA | Windows/Linux | cuda |
CUDA Toolkit |
| ROCm/HIP | Linux | hipblas |
ROCm 6.1+ (hipcc, hipblas, rocblas) |
| Vulkan | Windows/Linux | vulkan |
Vulkan SDK (+ vulkan-headers on Arch) |
Metal is the only backend that is exercised daily by the maintainer. CUDA, ROCm/HIP, and Vulkan should be considered experimental: they wire through to whisper.cpp via whisper-rs and are expected to work, but have not been validated in CI.
Windows CUDA users: You may need to set environment variables before building:
$env:CUDA_PATH = "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" $env:CMAKE_CUDA_COMPILER = "$env:CUDA_PATH\bin\nvcc.exe" $env:LIBCLANG_PATH = "C:\Program Files\LLVM\bin" $env:CMAKE_GENERATOR = "NMake Makefiles"The first CUDA build takes longer than usual (compiling GPU kernels) — this is a one-time cost.
ROCm/HIP users: The build expects ROCm installed at
/opt/rocm. If your installation is elsewhere, setHIP_PATHbefore building:Vulkan users: On Windows and macOS, set
VULKAN_SDKto your SDK install root before building. On Linux,whisper-rs-syslinks against the systemlibvulkan.
Links
- Website: useminutes.app
- GitHub: github.com/silverstein/minutes
- MCP Server: npmjs.com/package/minutes-mcp
- Desktop App: GitHub Releases
- Claude Code Plugin:
claude plugin marketplace add silverstein/minutes
License
MIT — Built by Mat Silverstein, founder of X1 Wealth