We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gh-host
1 parent 29bf8bf commit cea5c72Copy full SHA for cea5c72
1 file changed
README.md
@@ -222,7 +222,27 @@ docker run -i --rm \
222
## GitHub Enterprise Server
223
224
The flag `--gh-host` and the environment variable `GITHUB_HOST` can be used to set
225
-the GitHub Enterprise Server hostname.
+the GitHub Enterprise Server hostname inculding the `https` connection schema:
226
+
227
+``` json
228
+"github": {
229
+ "command": "docker",
230
+ "args": [
231
+ "run",
232
+ "-i",
233
+ "--rm",
234
+ "-e",
235
+ "GITHUB_PERSONAL_ACCESS_TOKEN",
236
237
+ "GITHUB_HOST",
238
+ "ghcr.io/github/github-mcp-server"
239
+ ],
240
+ "env": {
241
+ "GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}",
242
+ "GITHUB_HOST": "https://your_full_domain_name_dot_com"
243
+ }
244
+}
245
+```
246
247
## i18n / Overriding Descriptions
248
0 commit comments