Install GitHub MCP Server in Rovo Dev CLI
January 5, 2026 ยท View on GitHub
Prerequisites
- Rovo Dev CLI installed (latest version)
- GitHub Personal Access Token with appropriate scopes
MCP Server Setup
Uses GitHub's hosted server at https://api.githubcopilot.com/mcp/.
Install steps
- Run
acli rovodev mcpto open the MCP configuration for Rovo Dev CLI - Add configuration by following example below.
- Replace
YOUR_GITHUB_PATwith your actual GitHub Personal Access Token - Save the file and restart Rovo Dev CLI with
acli rovodev
Example configuration
{
"mcpServers": {
"github": {
"url": "https://api.githubcopilot.com/mcp/",
"headers": {
"Authorization": "Bearer YOUR_GITHUB_PAT"
}
}
}
}