File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ Configure MCP as a Judge in Visual Studio Code with GitHub Copilot:
1111111 . ** Install the package:**
112112
113113 ``` bash
114- uv add mcp-as-a-judge
114+ uv tool install mcp-as-a-judge
115115 ```
116116
1171172 . ** 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
You can’t perform that action at this time.
0 commit comments