Skip to content

Commit ccd41ac

Browse files
committed
docs: add MCP client config for say-server
- Add MCP client configuration section to say-server README - Add say-server to combined config in top-level README
1 parent 5ef3120 commit ccd41ac

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,12 +284,20 @@ Add to your MCP client configuration (stdio transport):
284284
"/path/to/ext-apps/examples/qr-server/server.py",
285285
"--stdio"
286286
]
287+
},
288+
"say": {
289+
"command": "uv",
290+
"args": [
291+
"run",
292+
"/path/to/ext-apps/examples/say-server/server.py",
293+
"--stdio"
294+
]
287295
}
288296
}
289297
}
290298
```
291299

292-
> **Note:** The `qr` server requires cloning the repository first. See [qr-server README](examples/qr-server) for details.
300+
> **Note:** The `qr` and `say` servers require cloning the repository first. See [qr-server](examples/qr-server) and [say-server](examples/say-server) READMEs for details.
293301
294302
</details>
295303

examples/say-server/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
A real-time text-to-speech MCP App with karaoke-style text highlighting, powered by [Kyutai's Pocket TTS](https://github.com/kyutai-labs/pocket-tts).
44

5+
## MCP Client Configuration
6+
7+
First, clone the repository:
8+
9+
```bash
10+
git clone https://github.com/modelcontextprotocol/ext-apps.git
11+
```
12+
13+
Then add to your MCP client configuration (stdio transport), replacing the path with your clone location:
14+
15+
```json
16+
{
17+
"mcpServers": {
18+
"say": {
19+
"command": "uv",
20+
"args": [
21+
"run",
22+
"/path/to/ext-apps/examples/say-server/server.py",
23+
"--stdio"
24+
]
25+
}
26+
}
27+
}
28+
```
29+
530
## MCP App Features Demonstrated
631

732
This example showcases several MCP App capabilities:

0 commit comments

Comments
 (0)