Command Palette

Search for a command to run...

Home / Servers

whispernotes-mcp

by mazzzystar

Whisper Notes MCP Server & CLI

MCP server and command-line access to Whisper Notes — on-device speech-to-text for Mac and iPhone. Claude and any MCP client can search your transcript history, read transcripts (plain, timestamped, or speaker-labeled), and transcribe audio or video files.

100% on-device. The server speaks over a local Unix socket (0600 permissions) — no open ports, no network interface, no cloud. Your audio and transcripts never leave your Mac.

The MCP server is built into the Whisper Notes Mac app — there is nothing to npx or pip install. This repository is its documentation and registry home. Canonical docs live at whispernotes.app/cli-mcp (agent-readable markdown: whispernotes.app/cli-mcp.md).

Set up

  1. Download Whisper Notes for Mac 1.5.5 or later — Direct Download (DMG) version (the Mac App Store build does not include the Local API). macOS 14+, Apple Silicon.
  2. Open the app → Settings → Integrations → toggle on Local CLI & MCP.
  3. Click Install CLI in the same section — this puts whispernotes (and the wn shorthand, when that name is free) in your terminal.

Connect Claude or any MCP client

Claude Code — one line:

claude mcp add whispernotes -- whispernotes mcp

Claude Desktop — add this to ~/Library/Application Support/Claude/claude_desktop_config.json, then restart Claude Desktop:

{
  "mcpServers": {
    "whispernotes": {
      "command": "/usr/local/bin/whispernotes",
      "args": ["mcp"]
    }
  }
}

Use the full path from which whispernotes — GUI apps don't read your shell's PATH. Any other local MCP client (Cursor, etc.) works the same way: command whispernotes, args ["mcp"]. Transport is stdio; there is no HTTP endpoint.

Then just ask:

  • "Read my last five transcripts and tell me what I should follow up on."
  • "Find the meeting where we discussed the invoice, and draft a reply email."
  • "Transcribe ~/Desktop/podcast.mp3 and pull out every action item."

MCP tools

ToolParametersReturns
list_transcriptslimit (default 20) · sourceRecent transcripts with ids, dates, titles
search_transcriptsquery (required) · limitFull-text matches with snippets
get_transcriptid (required) · timestamps · speakers · max_chars · offsetOne transcript's text
get_latest_transcripttimestamps · speakersYour most recent transcript
transcribe_filepath (required)Transcribes an audio or video file, saves it to history
list_modelsInstalled models and which one is active

Long recordings are paged: when a transcript exceeds max_chars, the response ends with an explicit truncation marker telling the agent which offset to continue from — hour-long meetings never overflow a context window.

CLI

The same binary is a full command-line tool:

$ whispernotes status
WhisperNotes 1.5.5 (340) · SenseVoice Small · ready · 3081 notes

$ whispernotes list --limit 3
9f3c21a8  2026-08-01 09:14  0:42   meeting   Weekly sync — pricing review
b2d84e07  2026-07-31 18:03  12:26  recorded  Idea dump on the walk home
5a1f9c33  2026-07-30 10:52  47:10  imported  interview-with-anna.m4a

$ whispernotes show latest | ollama run llama3 "Summarize the key points:"

$ whispernotes export --format md --audio --output-dir ~/Transcripts
✓ exported 312/312 transcript(s), 312 audio file(s) → /Users/you/Transcripts
CommandOptionsWhat it does
statusApp version, active model, readiness, note count
list--limit N · --source T · --jsonRecent transcripts, newest first
search <query>--limit N · --jsonFull-text search across your history, with snippets
show [id or latest]--timestamps · --speakers · `--max-

Related servers

n8n

Updated today

by n8n-io

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

NOASSERTION199,059

mcp-server-fetch

OfficialUpdated today

by modelcontextprotocol

A Model Context Protocol server providing tools to fetch and convert web content for usage by LLMs

89,138

@modelcontextprotocol/server-filesystem

OfficialUpdated today

by modelcontextprotocol

MCP server for filesystem access

SEE LICENSE IN LICENSE89,138

@modelcontextprotocol/server-everything

OfficialUpdated today

by modelcontextprotocol

MCP server that exercises all the features of the MCP protocol

89,138