Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server that provides tools for interacting with the GitHub API, enabling AI assistants to query repositories, pull requests, issues, commits, users, and more.

README.md

GitHub MCP Server

An MCP (Model Context Protocol) server that provides tools for interacting with the GitHub API. This server enables AI assistants to query repositories, pull requests, issues, commits, users, and more.

Features

  • 🔍 Search repositories and users
  • 📦 Get repository information
  • 🔀 List and view pull requests
  • 🐛 List and view issues
  • 📝 View commits and compare branches
  • 👤 Get user information
  • 📄 Read file contents from repositories
  • 🏷️ List releases and branches

Prerequisites

  • Node.js (v18 or higher)
  • A GitHub Personal Access Token

Installation

  1. Clone this repository:
git clone https://github.com/grysonbaltazar/github-mcp.git
cd github-mcp
  1. Install dependencies:
npm install
  1. Build the TypeScript code:
npm run build

Configuration

Get a GitHub Token

  1. Go to GitHub Settings → Developer settings → Personal access tokens
  2. Click "Generate new token (classic)"
  3. Give it a name (e.g., "MCP Server")
  4. Select scopes:
  • repo - Full control of private repositories
  • read:user - Read user profile data
  • read:org - Read org and team membership (optional)
  1. Generate and copy the token

For Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "github": {
      "command": "node",
      "args": ["/path/to/github-mcp/build/index.js"],
      "env": {
        "GITHUB_TOKEN": "your_github_token_here"
      }
    }
  }
}

For Cursor

Edit ~/.cursor/mcp_config.json:

{
  "mcpServers": {
    "github": {
      "command": "node",
      "args": ["/path/to/github-mcp/build/index.js"],
      "env": {
        "GITHUB_TOKEN": "your_github_token_here"
      }
    }
  }
}

Usage

Once configured, the MCP server provides the following tools:

  • get_repository - Get detailed information about a repository
  • list_user_repos - List repositories for a user or organization
  • search_repositories - Search for repositories on GitHub
  • get_pull_request - Get details about a specific pull request
  • list_pull_requests - List pull requests for a repository
  • get_pr_files - Get the list of files changed in a pull request
  • get_pr_comments - Get review comments on a pull request
  • get_commit - Get details about a specific commit
  • list_commits - List commits in a repository
  • compare_commits - Compare two commits or branches
  • get_issue - Get details about a specific issue
  • list_issues - List issues for a repository
  • get_issue_comments - Get comments on an issue
  • list_branches - List branches in a repository
  • get_branch - Get details about a specific branch
  • get_user - Get information about a GitHub user
  • search_users - Search for users on GitHub
  • get_file_contents - Get the contents of a file in a repository
  • list_releases - List releases for a repository
  • get_latest_release - Get the latest release for a repository

Development

Testing with MCP Inspector

npx @modelcontextprotocol/inspector node build/index.js

This will open a web interface where you can test all the tools interactively.

Watch Mode

npm run watch

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.