Skip to content

Commit 92bdc28

Browse files
atinylittleshellSamMorrowDrums
authored andcommitted
add docs for Rovo Dev CLI installation
1 parent 762845a commit 92bdc28

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ Alternatively, to manually configure VS Code, choose the appropriate JSON block
8585
- **[Codex](/docs/installation-guides/install-codex.md)** - Installation guide for Open AI Codex
8686
- **[Cursor](/docs/installation-guides/install-cursor.md)** - Installation guide for Cursor IDE
8787
- **[Windsurf](/docs/installation-guides/install-windsurf.md)** - Installation guide for Windsurf IDE
88+
- **[Rovo Dev CLI](/docs/installation-guides/install-rovo-dev-cli.md)** - Installation guide for Rovo Dev CLI
8889

8990
> **Note:** Each MCP host application needs to configure a GitHub App or OAuth App to support remote access via OAuth. Any host application that supports remote MCP servers should support the remote GitHub server with PAT authentication. Configuration details and support levels vary by host. Make sure to refer to the host application's documentation for more info.
9091
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Install GitHub MCP Server in Rovo Dev CLI
2+
3+
## Prerequisites
4+
5+
1. Rovo Dev CLI installed (latest version)
6+
2. [GitHub Personal Access Token](https://github.com/settings/personal-access-tokens/new) with appropriate scopes
7+
8+
## MCP Server Setup
9+
10+
Uses GitHub's hosted server at https://api.githubcopilot.com/mcp/.
11+
12+
### Install steps
13+
14+
1. Run `acli rovodev mcp` to open the MCP configuration for Rovo Dev CLI
15+
2. Add configuration by following example below.
16+
3. Replace `YOUR_GITHUB_PAT` with your actual [GitHub Personal Access Token](https://github.com/settings/tokens)
17+
4. Save the file and restart Rovo Dev CLI with `acli rovodev`
18+
19+
### Example configuration
20+
21+
```json
22+
{
23+
"mcpServers": {
24+
"github": {
25+
"url": "https://api.githubcopilot.com/mcp/",
26+
"headers": {
27+
"Authorization": "Bearer YOUR_GITHUB_PAT"
28+
}
29+
}
30+
}
31+
}
32+
```

0 commit comments

Comments
 (0)