diff --git a/README.md b/README.md index ff0390d3b..3806f910d 100644 --- a/README.md +++ b/README.md @@ -342,6 +342,21 @@ curl -s -H "Authorization: Bearer $Env:MCPGATEWAY_BEARER_TOKEN" ` http://127.0.0.1:4444/version | jq ``` +
+⚡ Alternative: uv (faster) + +```powershell +# 1️⃣ Isolated env + install from PyPI using uv +mkdir mcpgateway ; cd mcpgateway +uv venv +.\.venv\Scripts\activate +uv pip install mcp-contextforge-gateway + +# Continue with steps 2️⃣-4️⃣ above... +``` + +
+