We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gh-host
1 parent 56b23c3 commit ab94312Copy full SHA for ab94312
1 file changed
README.md
@@ -193,7 +193,27 @@ docker run -i --rm \
193
## GitHub Enterprise Server
194
195
The flag `--gh-host` and the environment variable `GITHUB_HOST` can be used to set
196
-the GitHub Enterprise Server hostname.
+the GitHub Enterprise Server hostname inculding the `https` connection schema:
197
+
198
+``` json
199
+"github": {
200
+ "command": "docker",
201
+ "args": [
202
+ "run",
203
+ "-i",
204
+ "--rm",
205
+ "-e",
206
+ "GITHUB_PERSONAL_ACCESS_TOKEN",
207
208
+ "GITHUB_HOST",
209
+ "ghcr.io/github/github-mcp-server"
210
+ ],
211
+ "env": {
212
+ "GITHUB_PERSONAL_ACCESS_TOKEN": "${input:github_token}",
213
+ "GITHUB_HOST": "https://your_full_domain_name_dot_com"
214
+ }
215
+}
216
+```
217
218
## i18n / Overriding Descriptions
219
0 commit comments