Skip to content

Commit 5b2ad93

Browse files
add docs for Rovo Dev CLI installation
1 parent 1832210 commit 5b2ad93

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
@@ -82,6 +82,7 @@ Alternatively, to manually configure VS Code, choose the appropriate JSON block
8282
- **[Claude Applications](/docs/installation-guides/install-claude.md)** - Installation guide for Claude Web, Claude Desktop and Claude Code CLI
8383
- **[Cursor](/docs/installation-guides/install-cursor.md)** - Installation guide for Cursor IDE
8484
- **[Windsurf](/docs/installation-guides/install-windsurf.md)** - Installation guide for Windsurf IDE
85+
- **[Rovo Dev CLI](/docs/installation-guides/install-rovo-dev-cli.md)** - Installation guide for Rovo Dev CLI
8586

8687
> **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.
8788
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)