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: content/copilot/reference/copilot-cli-reference/cli-command-reference.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -301,6 +301,8 @@ For a complete list of commands and options, run `copilot help`.
301
301
> [!NOTE]
302
302
> The `--remote`, `--no-remote`, and `--connect` options require the remote sessions feature to be available on your account.
303
303
304
+
You can use `--remote` with `--resume <TASK-ID>` to resume a remote task locally. This works even when the task was originally created outside a Git repository.
305
+
304
306
## Tool availability values
305
307
306
308
The `--available-tools` and `--excluded-tools` options support these values:
@@ -541,13 +543,26 @@ The CLI includes built-in MCP servers that are available without additional setu
541
543
542
544
| Server | Description |
543
545
|--------|-------------|
544
-
|`github-mcp-server`| {% data variables.product.github %} API integration: issues, pull requests, commits, code search, and {% data variables.product.prodname_actions %}. |
546
+
|`github-mcp-server`| {% data variables.product.github %} API integration: issues, pull requests, labels, commits, code search, and {% data variables.product.prodname_actions %}. |
545
547
|`playwright`| Browser automation: navigate, click, type, screenshot, and form handling. |
546
548
|`fetch`| HTTP requests via the `fetch` tool. |
547
549
|`time`| Time utilities: `get_current_time` and `convert_time`. |
548
550
549
551
Use `--disable-builtin-mcps` to disable all built-in servers, or `--disable-mcp-server SERVER-NAME` to disable a specific one.
550
552
553
+
#### {% data variables.product.github %} MCP server tools
554
+
555
+
The `github-mcp-server` provides the following tools.
Server names can contain any printable characters, including spaces, Unicode characters, and punctuation. Control characters (U+0000–U+001F, U+007F) and the closing brace (`}`) are not allowed. Server names are used as prefixes for tool names—for example, a server named `my-server` produces tool names like `my-server-fetch`, and a server named `My Server` produces `My Server-fetch`.
0 commit comments