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: docs/remote-server.md
+3-8Lines changed: 3 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,23 +53,18 @@ These toolsets are only available in the remote GitHub MCP Server and are not in
53
53
54
54
###Optional Headers
55
55
56
-
The Remote GitHub MCP server has optional headers equivalent to the Local server env vars or flags:
56
+
The Remote GitHub MCP server has optional headers equivalent to the Local server env vars:
57
57
58
58
-`X-MCP-Toolsets`: Comma-separated list of toolsets to enable. E.g. "repos,issues".
59
-
- Equivalent to`GITHUB_TOOLSETS` env varor`--toolsets` flagfor Local server.
59
+
- Equivalent to`GITHUB_TOOLSETS` env var for Local server.
60
60
- If the list is empty, default toolsets will be used. Invalid or unknown toolsets are silently ignored without error and will not prevent the server from starting. Whitespace is ignored.
61
-
-`X-MCP-Tools`: Comma-separated list of tools to enable. E.g. "get_file_contents,issue_read,pull_request_read".
62
-
- Equivalent to`GITHUB_TOOLS` env var or`--tools` flag for Local server.
63
-
- Invalid tools will throw an error and prevent the server from starting. Whitespace is ignored.
64
61
-`X-MCP-Readonly`: Enables only "read" tools.
65
62
- Equivalent to`GITHUB_READ_ONLY` env var for Local server.
66
63
- If this header is empty, "false", "f", "no", "n", "0", or "off" (ignoring whitespace and case), it will be interpreted as false. All other values are interpreted as true.
67
64
-`X-MCP-Lockdown`: Enables lockdown mode, hiding public issue details created by users without push access.
68
65
- Equivalent to`GITHUB_LOCKDOWN_MODE` env var for Local server.
69
66
- If this header is empty, "false", "f", "no", "n", "0", or "off" (ignoring whitespace and case), it will be interpreted as false. All other values are interpreted as true.
70
67
71
-
>**Looking for examples?** See the[Server Configuration Guide](./server-configuration.md) for common recipes like minimal setups, read-only mode, and combining tools with toolsets.