Featured Developer Tools
githubgitissuespull-requestsofficial

Summary

GitHub's official MCP server — manage issues, pull requests, repositories, code search, and Actions from your agent.

Features

  • Read and create issues and PRs
  • Search repositories and code
  • Review pull requests
  • Inspect GitHub Actions runs
  • Hosted remote or local Docker

Installation

Set up this MCP server in your favorite AI agent — copy a ready-made configuration below.

Any MCP-compatible agent

Most agents (Claude, Cursor, Windsurf, VS Code, and more) read a standard mcpServers configuration.

  1. Open your agent's MCP configuration file.
  2. Merge the snippet below into it, filling in the environment variables with your own values.
  3. Restart the agent — the "GitHub" tools will be available.
{
  "mcpServers": {
    "github": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "ghcr.io/github/github-mcp-server"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

Description

GitHub's official MCP server. It connects an agent to the GitHub platform: reading and creating issues and pull requests, browsing and searching repositories and code, reviewing PRs, and inspecting Actions runs. Available as a hosted remote server and as a local Docker image.

Related MCP Servers

Browse all MCP servers →