G

GitHub MCP Server

@sickn33
Visit Skill
Share:

GitHub's official MCP Server.

What is GitHub MCP Server?

GitHub MCP Server is the official GitHub bridge for exposing repository and workflow actions to MCP-compatible agents.

How to use GitHub MCP Server?

Use it to let agents interact with GitHub issues, PRs, and repository workflows through a structured MCP interface.

Key features of GitHub MCP Server

  • Official GitHub MCP integration
  • Repository workflow access
  • Structured agent tooling surface
  • Go-based server implementation

Use cases of GitHub MCP Server

  1. 1PR automation
  2. 2Issue triage
  3. 3Repository operations from agents

Installation

RecommendedOne-line install
git clone --depth 1 https://github.com/sickn33/antigravity-awesome-skills.git /tmp/ag-skills && mkdir -p ~/.agent/skills && cp -r /tmp/ag-skills/skills/github-mcp-server ~/.agent/skills/ && rm -rf /tmp/ag-skills
Step-by-step install
Step 1: Create skills directory
mkdir -p ~/.agent/skills
Step 2: Clone the skills repository
git clone --depth 1 https://github.com/sickn33/antigravity-awesome-skills.git /tmp/ag-skills
Step 3: Copy this skill
cp -r /tmp/ag-skills/skills/github-mcp-server ~/.agent/skills/
Step 4: Clean up temporary files
rm -rf /tmp/ag-skills

Supported Platforms

claudecursorantigravitygemini

Server Config

config.json
{
  "mcpServers": {
    "github-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "github-mcp-server"
      ]
    }
  }
}
View on GitHub