apple-voice-memos-mcp 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apple-voice-memos-mcp",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "MCP server for Apple Voice Memos on macOS \u2014 AssemblyAI diarization, whisper.cpp fallback, auto-saved transcripts, bundled app + one-command setup",
|
|
5
5
|
"bin": {
|
|
6
6
|
"apple-voice-memos-mcp": "bin/cli.js"
|
|
@@ -102,7 +102,7 @@ export function saveTranscript({ memo, result, transcriptsDir }) {
|
|
|
102
102
|
.replace(/\s+/g, " ")
|
|
103
103
|
.trim()
|
|
104
104
|
.slice(0, 80);
|
|
105
|
-
const base = `${
|
|
105
|
+
const base = `${safeTitle} - ${date} (id-${memo.id})`;
|
|
106
106
|
|
|
107
107
|
const files = [];
|
|
108
108
|
// markdown completo con diarization
|
|
@@ -111,10 +111,10 @@ export function saveTranscript({ memo, result, transcriptsDir }) {
|
|
|
111
111
|
const md = [
|
|
112
112
|
`# Trascrizione memo vocale — ${displayName}`,
|
|
113
113
|
"",
|
|
114
|
-
`- **Memo vocale
|
|
115
|
-
`- **Memo ID:** ${memo.id}`,
|
|
114
|
+
`- **Memo vocale:** ${displayName}`,
|
|
116
115
|
`- **Data e ora:** ${formatDateTime(memo.date)}`,
|
|
117
116
|
`- **Durata:** ${formatDuration(memo.duration)}`,
|
|
117
|
+
`- **Memo ID:** ${memo.id}`,
|
|
118
118
|
`- **Provider trascrizione:** ${provider}`,
|
|
119
119
|
result.speakers ? `- **Speaker rilevati:** ${result.speakers}` : "",
|
|
120
120
|
result.languageCode ? `- **Lingua:** ${result.languageCode}` : "",
|