# io.github.jwulff/apple-voice-memo-mcp (npm · apple-voice-memo-mcp)

Access Apple Voice Memos on macOS. List, get audio, extract and generate transcripts.

- Trust score: 69/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `apple-voice-memo-mcp`: 69/100 (this document), [markdown](https://verifymcp.io/servers/jwulff-apple-voice-memo-mcp/apple-voice-memo-mcp.md), [page](https://verifymcp.io/servers/jwulff-apple-voice-memo-mcp/apple-voice-memo-mcp)

## Channel facts

- Registry: `npm`
- Package: `apple-voice-memo-mcp`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (130 of 134), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (130 of 134), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 203 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 415 tokens (~83/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add jwulff-apple-voice-memo-mcp -- npx -y apple-voice-memo-mcp
```

### Codex

```bash
codex mcp add jwulff-apple-voice-memo-mcp -- npx -y apple-voice-memo-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jwulff-apple-voice-memo-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "apple-voice-memo-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jwulff-apple-voice-memo-mcp --command npx --arg -y --arg apple-voice-memo-mcp
```

### Hermes

```yaml
mcp_servers:
  jwulff-apple-voice-memo-mcp:
    command: "npx"
    args: ["-y", "apple-voice-memo-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "jwulff-apple-voice-memo-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "apple-voice-memo-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 69, +48)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 21, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (5)

### `list_voice_memos` (~100 tokens)

List voice memos from Apple Voice Memos app with metadata. Returns memo IDs, titles, dates, durations, and whether they have transcripts.

Input parameters:

- `limit` (number): Maximum number of memos to return (1-100, default: 50)
- `offset` (number): Number of memos to skip for pagination (default: 0)
- `search` (string): Search term to filter memos by title or custom label

### `get_voice_memo` (~48 tokens)

Get detailed metadata for a specific voice memo by its ID. Returns title, date, duration, and transcript availability.

Input parameters:

- `id` (number, required): The ID of the voice memo to retrieve

### `get_audio` (~72 tokens)

Retrieve the audio file for a voice memo. Can return either the file path or base64-encoded audio data.

Input parameters:

- `format` (string): Output format: 'path' returns file path, 'base64' returns encoded audio (default: path)
- `id` (number, required): The ID of the voice memo

### `get_transcript` (~91 tokens)

Extract and return the transcript from a voice memo. Transcripts are stored by Apple inside the audio file. Returns plain text, structured JSON, or timestamped segments.

Input parameters:

- `format` (string): Output format: 'text' for plain text, 'json' for structured data, 'timestamped' for text with timestamps (default: text)
- `id` (number, required): The ID of the voice memo

### `transcribe_memo` (~104 tokens)

Transcribe a voice memo using Apple's SFSpeechRecognizer. This generates a transcript for memos that haven't been transcribed yet. Note: The transcript is returned but not saved to the original file. Requires Speech Recognition permission and downloaded language packs.

Input parameters:

- `id` (number, required): The ID of the voice memo to transcribe
- `language` (string): Language code for transcription (e.g., 'en-US', 'es-ES'). Default: 'en-US'

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/jwulff-apple-voice-memo-mcp/apple-voice-memo-mcp#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 69
- 2026-08-01: 21
- 2026-07-31: 28
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/apple-voice-memo-mcp
- Socket report: https://socket.dev/npm/package/apple-voice-memo-mcp
- Repository: https://github.com/jwulff/apple-voice-memo-mcp
- Changelog RSS feed: https://verifymcp.io/servers/jwulff-apple-voice-memo-mcp/apple-voice-memo-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/jwulff-apple-voice-memo-mcp/apple-voice-memo-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/jwulff-apple-voice-memo-mcp/apple-voice-memo-mcp
