Skip to content

Commit 8ca27b7

Browse files
authored
docs: add uv as alternative installation option for Windows (#1562)
Add uv package manager as an alternative to pip in the Windows PowerShell quick-start section. The default installation still uses pip for broad compatibility, with uv available as a faster alternative in a collapsible subsection. Closes #1503 Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
1 parent f256e98 commit 8ca27b7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,21 @@ curl -s -H "Authorization: Bearer $Env:MCPGATEWAY_BEARER_TOKEN" `
342342
http://127.0.0.1:4444/version | jq
343343
```
344344

345+
<details>
346+
<summary><strong>⚡ Alternative: uv (faster)</strong></summary>
347+
348+
```powershell
349+
# 1️⃣ Isolated env + install from PyPI using uv
350+
mkdir mcpgateway ; cd mcpgateway
351+
uv venv
352+
.\.venv\Scripts\activate
353+
uv pip install mcp-contextforge-gateway
354+
355+
# Continue with steps 2️⃣-4️⃣ above...
356+
```
357+
358+
</details>
359+
345360
</details>
346361

347362
<details>

0 commit comments

Comments
 (0)