Sponsored by Deepsite.site

GitHub PR MCP Server

Created By
ibraheem4a year ago
Claude MCP Server for Github with Linear integration
Content

GitHub PR MCP Server

An enhanced GitHub Pull Request management server built on the Model Context Protocol (MCP). This server extends the base @modelcontextprotocol/server-github functionality with rich PR creation features, providing a more structured and comprehensive pull request workflow.

Overview

This MCP server enhances GitHub pull request management by providing:

  • Structured PR templates with predefined sections
  • Rich media attachment support
  • Automated quality checklists
  • Advanced issue linking and tracking
  • Seamless integration with existing GitHub workflows

Features

  • 🔄 Complete Base Server Compatibility

    • Create PRs with required fields (owner, repo, title, head, base)
    • Optional fields support (body, draft, maintainer_can_modify)
    • List and update PRs with matching schemas
  • 🚀 Enhanced PR Creation

    • Structured PR templates with sections:
      • Overview
      • Key Changes
      • Code Highlights
      • Testing Details
    • Checklist items for PR quality
    • Media attachments support
    • Labels, reviewers, and assignees management
    • Issue linking and tagging

Prerequisites

  • Node.js 18+
  • GitHub Personal Access Token with repo scope
  • Pull request template file at .github/pull_request_template.md (example below)

Example PR Template

Create .github/pull_request_template.md with sections that match the enhanced PR features:

## Overview

Summarize the purpose and scope of this PR.

---

## Key Changes

List the key changes made in this PR.

---

## Code Highlights

Identify important code sections that reviewers should focus on.

---

## Testing

Outline testing approach and results.

---

## Links

Include relevant links and references.

---

## Additional Notes

Provide any extra context or notes for reviewers.

---

### Issue Tagging

Link related issues here.

---

Installation

You can use this server in two ways:

Run directly using npx:

# Make sure GITHUB_TOKEN environment variable is set
export GITHUB_TOKEN=your_github_personal_access_token
npx @ibraheem4/github-mcp

Option 2: Local Build

For development or if you want to modify the server:

  1. Clone the repository:

    git clone https://github.com/ibraheem4/github-mcp.git
    cd github-mcp
    
  2. Install dependencies:

    npm install
    
  3. Build the project:

    npm run build
    

The build will create an executable server in the build directory that can be used by MCP clients.

Environment Variables

The server requires both a GitHub Personal Access Token and a Linear API Key. You can provide these in two ways:

Option 1: Environment File (for local development)

Copy .env.example to .env in the project root:

cp .env.example .env

Then edit .env to add your tokens:

# Required for GitHub API access
GITHUB_TOKEN=your_github_personal_access_token

# Required for Linear API access
LINEAR_API_KEY=your_linear_api_key

When using the server through MCP clients (Claude Desktop, VSCode, etc.), configure the tokens in your MCP settings file as shown in the configuration examples below. This is the recommended approach as it keeps your tokens separate from the project files.

To obtain the required tokens:

  1. GitHub Token: Create a personal access token at https://github.com/settings/tokens with repo scope
  2. Linear API Key: Generate an API key at https://linear.app/settings/api

Usage

Running the Server

Start the MCP server:

npm start

For development:

npm run dev

MCP Server Configuration

This enhanced GitHub PR server can run alongside the base GitHub server in various environments. Here's how to configure each:

Claude Desktop

  1. Open Claude Desktop settings:

    • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%/Claude/claude_desktop_config.json
    • Linux: ~/.config/Claude/claude_desktop_config.json
  2. Add both servers to the configuration. You can use either the npx version or local build:

    {
      "mcpServers": {
        "github-ibraheem4": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-github"],
          "env": {
            "GITHUB_TOKEN": "your_github_personal_access_token"
          }
        },
        // Option 1: Using npx (Recommended)
        "github-pr-ibraheem4": {
          "command": "npx",
          "args": ["-y", "@ibraheem4/github-mcp"],
          "env": {
            "GITHUB_TOKEN": "your_github_personal_access_token",
            "LINEAR_API_KEY": "your_linear_api_key"
          },
          "disabled": false,
          "alwaysAllow": []
        }
        // Option 2: Using local build
        // "github-pr-ibraheem4": {
        //   "command": "node",
        //   "args": ["/path/to/github-mcp/build/index.js"],
        //   "env": {
        //     "GITHUB_TOKEN": "your_github_personal_access_token",
        //     "LINEAR_API_KEY": "your_linear_api_key"
        //   },
        //   "disabled": false,
        //   "alwaysAllow": []
        // }
      }
    }
    

VSCode (Cline Extension)

  1. Open VSCode settings:

    • Mac: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
    • Windows: %APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
    • Linux: ~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  2. Add both servers to the configuration. You can use either the npx version or local build:

    {
      "mcpServers": {
        "github-ibraheem4": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-github"],
          "env": {
            "GITHUB_TOKEN": "your_github_personal_access_token"
          }
        },
        // Option 1: Using npx (Recommended)
        "github-pr-ibraheem4": {
          "command": "npx",
          "args": ["-y", "@ibraheem4/github-mcp"],
          "env": {
            "GITHUB_TOKEN": "your_github_personal_access_token",
            "LINEAR_API_KEY": "your_linear_api_key"
          },
          "disabled": false,
          "alwaysAllow": []
        }
        // Option 2: Using local build
        // "github-pr-ibraheem4": {
        //   "command": "node",
        //   "args": ["/path/to/github-mcp/build/index.js"],
        //   "env": {
        //     "GITHUB_TOKEN": "your_github_personal_access_token",
        //     "LINEAR_API_KEY": "your_linear_api_key"
        //   },
        //   "disabled": false,
        //   "alwaysAllow": []
        // }
      }
    }
    

VSCode (Roo Cline Extension)

  1. Open Roo Cline settings:

    • Mac: ~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
    • Windows: %APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
    • Linux: ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json
  2. Add both servers to the configuration. You can use either the npx version or local build:

    {
      "mcpServers": {
        "github-ibraheem4": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-github"],
          "env": {
            "GITHUB_TOKEN": "your_github_personal_access_token"
          }
        },
        // Option 1: Using npx (Recommended)
        "github-pr-ibraheem4": {
          "command": "npx",
          "args": ["-y", "@ibraheem4/github-mcp"],
          "env": {
            "GITHUB_TOKEN": "your_github_personal_access_token"
          },
          "disabled": false,
          "alwaysAllow": []
        }
        // Option 2: Using local build
        // "github-pr-ibraheem4": {
        //   "command": "node",
        //   "args": ["/path/to/github-mcp/build/index.js"],
        //   "env": {
        //     "GITHUB_TOKEN": "your_github_personal_access_token"
        //   },
        //   "disabled": false,
        //   "alwaysAllow": []
        // }
      }
    }
    
  3. Restart your application after making changes

Note: Both servers can run simultaneously in all environments. The base github server provides standard GitHub operations, while the github-pr server adds enhanced PR creation features. You can use either server based on your needs - use the base server for simple operations or the enhanced server when you need rich PR features.

Available Tools

create_pull_request

Create a new pull request with enhanced features

{
  // Required fields (base compatibility)
  owner: string;
  repo: string;
  title: string;
  head: string;
  base: string;

  // Optional fields (base compatibility)
  body?: string;
  draft?: boolean;
  maintainer_can_modify?: boolean;

  // Enhanced features
  overview?: string;
  keyChanges?: string[];
  codeHighlights?: string[];
  testing?: string[];
  links?: Array<{ title: string; url: string }>;
  additionalNotes?: string;
  issueIds?: string[];
  checklist?: {
    adhereToConventions?: boolean;
    testsIncluded?: boolean;
    documentationUpdated?: boolean;
    changesVerified?: boolean;
    screenshotsAttached?: boolean;
  };
  attachments?: Array<{
    type: "image" | "video" | "diagram";
    alt: string;
    url: string;
    width?: number;
  }>;
  labels?: string[];
  reviewers?: string[];
  assignees?: string[];
}

list_pull_requests

List pull requests in a repository

{
  owner: string;    // Required
  repo: string;     // Required
  state?: "open" | "closed" | "all";
}

update_pull_request

Update an existing pull request

{
  owner: string;       // Required
  repo: string;       // Required
  pull_number: number; // Required
  title?: string;
  body?: string;
  state?: "open" | "closed";
}

Development

Directory Structure

src/
├── index.ts           # Main MCP server implementation
├── api/              # API routes and middleware
├── config/           # Configuration
└── types/            # TypeScript type definitions

Adding New Features

  1. Define types in src/types/index.ts
  2. Update server implementation in src/index.ts
  3. Add new tool handlers in the GitHubServer class
  4. Update documentation

Development Setup

Prerequisites

  • Node.js 18+
  • npm or yarn
  • Git
  • GitHub account with personal access token

Local Development

  1. Install dependencies:
npm install
  1. Start development server:
npm run dev
  1. Run tests:
npm test

Testing

  • Unit tests: npm run test:unit
  • Integration tests: npm run test:integration
  • Test coverage: npm run test:coverage

Troubleshooting

Common Issues

  1. Authentication Errors

    • Verify your GitHub token has the required permissions
    • Ensure the token is correctly set in your environment
    • Check token expiration date
  2. Build Issues

    • Clear the build directory: rm -rf build/
    • Delete node_modules and reinstall: rm -rf node_modules && npm install
    • Verify TypeScript version compatibility
  3. Runtime Errors

    • Check logs for detailed error messages
    • Verify all required environment variables are set
    • Ensure compatible Node.js version

Debug Mode

Enable debug logging by setting:

DEBUG=github-pr-mcp:* npm run dev

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests (npm test)
  5. Commit your changes (git commit -m 'feat: add amazing feature')
  6. Push to the branch (git push origin feature/amazing-feature)
  7. Create a Pull Request

License

MIT License - see LICENSE file for details

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
DeepChatYour AI Partner on Desktop
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Amap Maps高德地图官方 MCP Server
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
Playwright McpPlaywright MCP server
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Tavily Mcp
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
ChatWiseThe second fastest AI chatbot™
WindsurfThe new purpose-built IDE to harness magic
CursorThe AI Code Editor
Serper MCP ServerA Serper MCP Server
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.