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
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,9 @@ The Remote GitHub MCP server has optional headers equivalent to the Local server
67
67
-`X-MCP-Lockdown`: Enables lockdown mode, hiding public issue details created by users without push access.
68
68
- Equivalent to `GITHUB_LOCKDOWN_MODE` env var for Local server.
69
69
- 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
+
-`X-MCP-Insiders`: Enables insiders mode for early access to new features.
71
+
- Equivalent to `GITHUB_INSIDER_MODE` env var or `--insider-mode` flag for Local server.
72
+
- 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
73
71
74
> **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.
72
75
@@ -84,18 +87,49 @@ Example:
84
87
}
85
88
```
86
89
90
+
### Insiders Mode
91
+
92
+
The remote GitHub MCP Server offers an insiders version with early access to new features and experimental tools. You can enable insiders mode in two ways:
93
+
94
+
1.**Via URL path** - Append `/insiders` to the URL:
2.**Via header** - Set the `X-MCP-Insiders` header to `true`:
104
+
105
+
```json
106
+
{
107
+
"type": "http",
108
+
"url": "https://api.githubcopilot.com/mcp/",
109
+
"headers": {
110
+
"X-MCP-Insiders": "true"
111
+
}
112
+
}
113
+
```
114
+
115
+
Both methods can be combined with other path modifiers (like `/readonly`) and headers.
116
+
87
117
### URL Path Parameters
88
118
89
119
The Remote GitHub MCP server supports the following URL path patterns:
90
120
91
121
-`/` - Default toolset (see ["default" toolset](../README.md#default-toolset))
92
122
-`/readonly` - Default toolset in read-only mode
123
+
-`/insiders` - Default toolset with insiders mode enabled
124
+
-`/insiders/readonly` - Default toolset with insiders mode in read-only mode
93
125
-`/x/all` - All available toolsets
94
126
-`/x/all/readonly` - All available toolsets in read-only mode
127
+
-`/x/all/insiders` - All available toolsets with insiders mode enabled
95
128
-`/x/{toolset}` - Single specific toolset
96
129
-`/x/{toolset}/readonly` - Single specific toolset in read-only mode
130
+
-`/x/{toolset}/insiders` - Single specific toolset with insiders mode enabled
97
131
98
-
Note: `{toolset}` can only be a single toolset, not a comma-separated list. To combine multiple toolsets, use the `X-MCP-Toolsets` header instead.
132
+
Note: `{toolset}` can only be a single toolset, not a comma-separated list. To combine multiple toolsets, use the `X-MCP-Toolsets` header instead. Path modifiers like `/readonly` and `/insiders` can be combined with the `X-MCP-Insiders` or `X-MCP-Readonly` headers.
0 commit comments