File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,27 @@ docker run -i --rm \
222222## GitHub Enterprise Server
223223
224224The flag ` --gh-host ` and the environment variable ` GITHUB_HOST ` can be used to set
225- the GitHub Enterprise Server hostname.
225+ 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+ " -e" ,
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+ ```
226246
227247## i18n / Overriding Descriptions
228248
You can’t perform that action at this time.
0 commit comments