Installation - fleXRPL/github-mcp GitHub Wiki

Installation

Follow these steps to install the GitHub MCP Server:

Prerequisites

  • Python 3.8+
  • GitHub account
  • System keychain access

Installation Steps

  1. Clone the repository:
    git clone https://github.com/yourusername/github-mcp.git
    cd github-mcp
    
  2. Install dependencies:
    pip install -e .
    
  3. Verify installation:
    python -m github_mcp.server --help
    

Setup Flow

flowchart TD
    A[Clone Repository] --> B[Install Dependencies]
    B --> C[Configure Authentication]
    C --> D[Run Server]
    D --> E[Connect with Cursor IDE]

Next Steps