@hyperwhisper/mcp package is a Model Context Protocol bridge that wraps the local API. Configure it once and any MCP-capable agent — Cursor, Claude Desktop, Claude Code, Zed, custom code — can call HyperWhisper as a tool.
Prerequisites
- HyperWhisper is installed and you have opened it at least once.
- Settings → Local API is turned on. This is what writes the discovery file the bridge reads.
- Node.js 18 or newer is on your
PATH.node --versionshould print a version number — if it does not, install Node.js from nodejs.org. Thenpxcommand ships with Node.
npx -y @hyperwhisper/mcp fetches and runs it on demand, and every MCP client below uses that command directly.
Tools the bridge exposes
| Tool | What the agent gets |
|---|---|
health | Confirms HyperWhisper is running. No auth required. |
list_models | Catalog of voice and post-processing models. |
list_modes | Saved transcription Modes. |
transcribe | Transcribes an absolute path to an audio file. |
post_process | Rewrites text with a preset (hyper, note, email, commit, prompt) or a free-form prompt. |
search_recordings | Substring search across past transcripts. |
get_recording | Single transcript row by ID. |
Cursor
Edit~/.cursor/mcp.json and add the hyperwhisper entry:
Claude Desktop
Edit~/Library/Application Support/Claude/claude_desktop_config.json:
hyperwhisper.
Claude Code
Run the CLI helper:/mcp lists hyperwhisper with its tools.
Verify
Open a fresh agent session and ask:transcribe tool and return the text inline. If you do not have a sample, Ask hyperwhisper to run a health check is enough — the agent should call health and report the app version.
Troubleshooting
HYPERWHISPER_NOT_RUNNING — the discovery file is missing. Open HyperWhisper, then toggle Settings → Local API on. Re-run the agent prompt.
UNAUTHORIZED — the bearer token in the discovery file no longer matches what the server expects. This usually happens after Regenerate token in Settings. The bridge re-reads the file on every request, so the next agent call should succeed.
Connection refused — the port in the discovery file is stale (the app was force-killed before it could clean up). Toggle the Local API switch off and back on to write a fresh local-api.json.
npx hangs on first run — npx -y downloads the package the first time. Subsequent runs are instant. If your network blocks the npm registry, install once with npm i -g @hyperwhisper/mcp and replace npx -y @hyperwhisper/mcp with hyperwhisper-mcp in the config above.