Skip to content

Commit 51900fa

Browse files
committed
docs: add GitHub Copilot CLI installation instructions
1 parent b50d7f8 commit 51900fa

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,34 @@ Specify your API key as found on LaunchDarkly's Authorization page.
9393

9494
5. Click `Save`.
9595

96+
### GitHub Copilot CLI installation steps
97+
98+
Use the Copilot CLI to interactively add the MCP server:
99+
100+
```bash
101+
/mcp add
102+
```
103+
104+
Or create/edit `~/.copilot/mcp-config.json` with the following content:
105+
106+
```json
107+
{
108+
"mcpServers": {
109+
"LaunchDarkly": {
110+
"command": "npx",
111+
"args": [
112+
"-y", "--package", "@launchdarkly/mcp-server", "--", "mcp", "start",
113+
"--api-key", "api-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
114+
]
115+
}
116+
}
117+
}
118+
```
119+
120+
Specify your API key as found on LaunchDarkly's Authorization page.
121+
122+
For more information, see the [GitHub Copilot CLI documentation](https://docs.github.com/en/copilot/concepts/agents/about-copilot-cli).
123+
96124
### Standalone binary installation steps
97125

98126
You can also run the MCP server as a standalone binary with no additional dependencies. You must pull these binaries from available GitHub releases while specifying the appropriate `tag` value:

0 commit comments

Comments
 (0)