Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🧠 Knowledge & Memory
  3. Whispernotes
Whispernotes logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 9:34:29 PM

Whispernotes

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Search, read, and create speech-to-text transcripts on-device with the Whisper Notes Mac app.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "whispernotes": {
      "url": "https://whispernotes.app"
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing Alternatives🧠 More in Knowledge & Memory

Documentation Overview

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:

Terminal
claude mcp add whispernotes -- whispernotes mcp

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

config.json
{
  "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_modelsβ€”Installed 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:

server.ts
$ 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
statusβ€”App 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-chars N Β· --offset N Β· --jsonPrint one transcript (defaults to latest)
transcribe <file>--jsonTranscribe an audio or video file, save it to history
export--format txt or md Β· --output-dir DIR Β· --source T Β· --limit N Β· --audio Β· --speakersBatch-export transcripts, optionally copying the audio alongside
modelslist Β· select <id>List or switch models: parakeet, sensevoice, whisper-small, whisper-large-v3-turbo
languagelist Β· select <code>List or switch transcription language β€” choices follow the active model
mcpβ€”Run the MCP server on stdio
version Β· helpβ€”CLI version Β· usage

Results go to stdout, progress and errors to stderr β€” safe to pipe or redirect. --json always emits a single JSON object or array. whispernotes help prints the full usage; a misused command replies with its exact usage line. wn is a convenience alias β€” scripts and agents should call whispernotes, which always exists.

Privacy & security

  • Transport is a Unix domain socket at ~/Library/Application Support/WhisperNotes/api.sock with 0600 permissions β€” only your macOS user account can connect. No TCP port, no network interface, unreachable from any other machine.
  • Off by default: nothing is served until you enable the toggle in Settings.
  • MCP clients like Claude ask for your approval before each tool call.
  • Transcription runs on-device (Parakeet V3, Whisper, SenseVoice on the Neural Engine / MLX); results are stored only in your local history.

Links

  • Docs: whispernotes.app/cli-mcp Β· raw markdown for agents: /cli-mcp.md
  • Download: Whisper Notes for Mac (DMG)
  • iPhone & Mac App Store: App Store
  • Website: whispernotes.app Β· Changelog Β· Privacy
  • Support: support@whispernotes.app

License

The contents of this repository (documentation and metadata) are MIT-licensed. Whisper Notes itself β€” the application, including the embedded MCP server and CLI β€” is commercial software; see whispernotes.app for terms.

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Knowledge & Memory View all alternatives
  • Moxie Docs MCP logoMoxie Docs MCP
    β˜… Featured

    MCP & Agent Skills for Automated Documentation, and codebase conventions + context

    🧠 Knowledge & Memory21 views
    Compare vs Moxie Docs MCP β†’
  • Scrivener MCP logoScrivener MCP

    Connect Scrivener 3 writing projects to Claude and other AI assistants. 47 tools for document management, writing analysis, semantic search, character/plot memory, and content enhancement. Progressive skill loading, relationship engine with HMS triplets, and JS fallback for offline semantic search. npm i -g scrivener-mcp

    🧠 Knowledge & Memory16 views
    Compare vs Scrivener MCP β†’
  • Better Bear logoBetter Bear

    MCP server for Bear notes β€” read, search, create, edit, tag, and manage notes via CloudKit

    🧠 Knowledge & Memory0 views
    Compare vs Better Bear β†’
  • Drafto logoDrafto

    Create, read, search, and organize your Drafto notes and notebooks.

    🧠 Knowledge & Memory1 views
    Compare vs Drafto β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Whispernotes

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "whispernotes": { "command": "npx", "args": ["-y", "whispernotes"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewWhispernotes AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/whispernotes?style=directory)](https://allmcps.com/mcp/whispernotes)
HTML Embed
<a href="https://allmcps.com/mcp/whispernotes"><img src="https://allmcps.com/api/badge/whispernotes?style=directory" alt="Whispernotes on AllMCPs" /></a>

Technical Specs & Signals

Category🧠Knowledge & Memory
More technical detailsExpand β–Ύ
TransportSSE (Remote)
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
36Quality signal: Fair Β· 36/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 10,000+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🧠 Knowledge & Memory β†’Best MCP servers for Memory & Knowledge β†’Alternatives to Whispernotes β†’Install in Claude DesktopInstall in CursorInstall in VS Code