豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 842 Bytes

File metadata and controls

32 lines (24 loc) · 842 Bytes

Install GitHub MCP Server in Rovo Dev CLI

Prerequisites

  1. Rovo Dev CLI installed (latest version)
  2. GitHub Personal Access Token with appropriate scopes

MCP Server Setup

Uses GitHub's hosted server at https://api.githubcopilot.com/mcp/.

Install steps

  1. Run acli rovodev mcp to open the MCP configuration for Rovo Dev CLI
  2. Add configuration by following example below.
  3. Replace YOUR_GITHUB_PAT with your actual GitHub Personal Access Token
  4. 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"
      }
    }
  }
}