Skip to content

Commit 212cdcd

Browse files
author
Zvi Fried
committed
Fix installation command: use 'uv tool install' instead of 'uv add'
1 parent fcd9a6d commit 212cdcd

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Configure MCP as a Judge in Visual Studio Code with GitHub Copilot:
111111
1. **Install the package:**
112112

113113
```bash
114-
uv add mcp-as-a-judge
114+
uv tool install mcp-as-a-judge
115115
```
116116

117117
2. **Configure Visual Studio Code MCP settings:**
@@ -131,13 +131,25 @@ Configure MCP as a Judge in Visual Studio Code with GitHub Copilot:
131131

132132
### **Method 2: Using Docker**
133133

134-
1. **Pull the Docker image:**
134+
1. **Authenticate with GitHub Container Registry (if needed):**
135+
136+
```bash
137+
# Using GitHub CLI (recommended)
138+
gh auth token | docker login ghcr.io -u USERNAME --password-stdin
139+
140+
# Or using personal access token
141+
echo $GITHUB_TOKEN | docker login ghcr.io -u USERNAME --password-stdin
142+
```
143+
144+
> **Note**: Authentication may be required for private repositories. For public repositories, you can skip this step.
145+
146+
2. **Pull the Docker image:**
135147

136148
```bash
137149
docker pull ghcr.io/hepivax/mcp-as-a-judge:latest
138150
```
139151

140-
2. **Configure Visual Studio Code MCP settings:**
152+
3. **Configure Visual Studio Code MCP settings:**
141153

142154
Add this to your Visual Studio Code MCP configuration file:
143155

0 commit comments

Comments
 (0)