@modelcontextprotocol/server-transcript 0.4.1 → 1.0.0

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/README.md CHANGED
@@ -4,6 +4,45 @@
4
4
 
5
5
  An MCP App Server for live speech transcription using the Web Speech API.
6
6
 
7
+ ## MCP Client Configuration
8
+
9
+ Add to your MCP client configuration (stdio transport):
10
+
11
+ ```json
12
+ {
13
+ "mcpServers": {
14
+ "transcript": {
15
+ "command": "npx",
16
+ "args": [
17
+ "-y",
18
+ "--silent",
19
+ "--registry=https://registry.npmjs.org/",
20
+ "@modelcontextprotocol/server-transcript",
21
+ "--stdio"
22
+ ]
23
+ }
24
+ }
25
+ }
26
+ ```
27
+
28
+ ### Local Development
29
+
30
+ To test local modifications, use this configuration (replace `~/code/ext-apps` with your clone path):
31
+
32
+ ```json
33
+ {
34
+ "mcpServers": {
35
+ "transcript": {
36
+ "command": "bash",
37
+ "args": [
38
+ "-c",
39
+ "cd ~/code/ext-apps/examples/transcript-server && npm run build >&2 && node dist/index.js --stdio"
40
+ ]
41
+ }
42
+ }
43
+ }
44
+ ```
45
+
7
46
  ## Features
8
47
 
9
48
  - **Live Transcription**: Real-time speech-to-text using browser's Web Speech API