@mcptoolshop/voice-soundboard-core 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/README.md +17 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
  </p>
14
14
 
15
15
  <p align="center">
16
- 12 voices &bull; 5 presets &bull; 8 emotions &bull; SSML-lite &bull; SFX tags &bull; multi-speaker dialogue<br>
16
+ 48 voices &bull; 9 languages &bull; 5 presets &bull; 8 emotions &bull; SSML-lite &bull; SFX tags &bull; multi-speaker dialogue<br>
17
17
  Swappable TTS backends. Guardrails built in. Ships as a single <code>npx</code> command.
18
18
  </p>
19
19
 
@@ -23,7 +23,7 @@
23
23
 
24
24
  - **MCP native** &mdash; stdio transport, works with Claude Desktop, Cursor, and any MCP client
25
25
  - **5 tools** &mdash; `voice_speak`, `voice_dialogue`, `voice_status`, `voice_interrupt`, `voice_inner_monologue`
26
- - **12 approved voices** &mdash; curated set with presets (`narrator`, `announcer`, `whisper`, `storyteller`, `assistant`)
26
+ - **48 approved voices, 9 languages** &mdash; English (American + British), Japanese, Mandarin, Spanish, French, Hindi, Italian, Brazilian Portuguese. Curated presets: `narrator`, `announcer`, `whisper`, `storyteller`, `assistant`
27
27
  - **Emotion spans** &mdash; 8 emotions via `[happy]...[/happy]` inline markup
28
28
  - **SSML-lite** &mdash; `<break>`, `<emphasis>`, `<prosody>` without full SSML complexity
29
29
  - **SFX tags** &mdash; `[ding]`, `[chime]`, `[whoosh]`, `[tada]`, `[error]`, `[click]` inline sound effects
@@ -129,20 +129,21 @@ category?: "thinking" # general | thinking | observation | debug
129
129
 
130
130
  ## Voices
131
131
 
132
- | ID | Name | Accent | Gender |
133
- |----|------|--------|--------|
134
- | `af_aoede` | Aoede | American | Female |
135
- | `af_jessica` | Jessica | American | Female |
136
- | `af_sky` | Sky | American | Female |
137
- | `am_eric` | Eric | American | Male |
138
- | `am_fenrir` | Fenrir | American | Male |
139
- | `am_liam` | Liam | American | Male |
140
- | `am_onyx` | Onyx | American | Male |
141
- | `bf_alice` | Alice | British | Female |
142
- | `bf_emma` | Emma | British | Female |
143
- | `bf_isabella` | Isabella | British | Female |
144
- | `bm_george` | George | British | Male |
145
- | `bm_lewis` | Lewis | British | Male |
132
+ 48 voices across 9 languages. Language is auto-inferred from the voice ID prefix — no configuration required.
133
+
134
+ | Prefix | Language |
135
+ |--------|----------|
136
+ | `af_` / `am_` | English (American) |
137
+ | `bf_` / `bm_` | English (British) |
138
+ | `jf_` / `jm_` | Japanese |
139
+ | `zf_` / `zm_` | Mandarin Chinese |
140
+ | `ef_` / `em_` | Spanish |
141
+ | `ff_` | French |
142
+ | `hf_` / `hm_` | Hindi |
143
+ | `if_` / `im_` | Italian |
144
+ | `pf_` / `pm_` | Brazilian Portuguese |
145
+
146
+ See the [full voice list](https://github.com/mcp-tool-shop-org/mcp-voice-soundboard#voices) in the main README.
146
147
 
147
148
  ### Presets
148
149
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcptoolshop/voice-soundboard-core",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Backend-agnostic core library for MCP Voice Soundboard — 48 voices, 9 languages, validation, SSML-lite, chunking, emotion spans, SFX tags, and schemas.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",