You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -247,7 +247,7 @@ To keep your GitHub PAT secure and reusable across different MCP hosts:
247
247
The flag `--gh-host` and the environment variable `GITHUB_HOST` can be used to set
248
248
the hostname for GitHub Enterprise Server or GitHub Enterprise Cloud with data residency.
249
249
250
-
- For GitHub Enterprise Server, prefix the hostname with the `https://` URI scheme, as it otherwise defaults to `http://`, which GitHub Enterprise Server does not support.
250
+
- For GitHub Enterprise Server, prefix the hostname with the `https://` URI scheme. HTTPS is required and enforced: non-HTTPS hosts are refused so that credentials are never sent over cleartext (the only exception is a loopback host such as `http://localhost` for local development).
251
251
- For GitHub Enterprise Cloud with data residency, use `https://YOURSUBDOMAIN.ghe.com` as the hostname.
252
252
253
253
```json
@@ -894,7 +894,7 @@ The following sets of tools are available:
894
894
-**add_issue_comment** - Add comment to issue or pull request
895
895
-**Required OAuth Scopes**: `repo`
896
896
-`body`: Comment content. Required unless reaction is provided. (string, optional)
897
-
-`comment_id`: The numeric ID of the issue or pull request comment to react to. Use this for reactions to comments; omit it to react to the issue or pull request itself. Cannot be combined with body. (number, optional)
897
+
-`comment_id`: The numeric ID of the issue or pull request comment to react to. Use this for reactions to comments; omit it to react to the issue or pull request itself. Cannot be combined with body. (integer, optional)
898
898
-`issue_number`: Issue or pull request number to comment on or react to. (number, required)
899
899
-`owner`: Repository owner (string, required)
900
900
-`reaction`: Emoji reaction to add. Required unless body is provided. (string, optional)
@@ -1308,6 +1308,11 @@ The following sets of tools are available:
1308
1308
-`path`: Path to the file to delete (string, required)
When `--scope-challenge` is enabled, requests with insufficient scopes receive a `403 Forbidden` response with a `WWW-Authenticate` header indicating the required scopes.
34
34
35
+
### Repository deletion and request-state encryption
36
+
37
+
The `delete_repository` tool uses multi-round-trip elicitation and carries its
38
+
confirmed target through client-held request state. To expose this tool in HTTP
39
+
mode, configure a stable 32-byte encryption key encoded with standard Base64:
0 commit comments