Skip to content

Commit cba7b71

Browse files
committed
docs(say-server): use raw GitHub URL for direct uv run
1 parent ccd41ac commit cba7b71

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,15 +289,17 @@ Add to your MCP client configuration (stdio transport):
289289
"command": "uv",
290290
"args": [
291291
"run",
292-
"/path/to/ext-apps/examples/say-server/server.py",
292+
"--default-index",
293+
"https://pypi.org/simple",
294+
"https://raw.githubusercontent.com/modelcontextprotocol/ext-apps/refs/heads/main/examples/say-server/server.py",
293295
"--stdio"
294296
]
295297
}
296298
}
297299
}
298300
```
299301

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.
302+
> **Note:** The `qr` server requires cloning the repository first. See [qr-server README](examples/qr-server) for details.
301303
302304
</details>
303305

examples/say-server/README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@ A real-time text-to-speech MCP App with karaoke-style text highlighting, powered
44

55
## MCP Client Configuration
66

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:
7+
Add to your MCP client configuration (stdio transport):
148

159
```json
1610
{
@@ -19,7 +13,9 @@ Then add to your MCP client configuration (stdio transport), replacing the path
1913
"command": "uv",
2014
"args": [
2115
"run",
22-
"/path/to/ext-apps/examples/say-server/server.py",
16+
"--default-index",
17+
"https://pypi.org/simple",
18+
"https://raw.githubusercontent.com/modelcontextprotocol/ext-apps/refs/heads/main/examples/say-server/server.py",
2319
"--stdio"
2420
]
2521
}

0 commit comments

Comments
 (0)