GitHub Repos Manager

GitHub Repos Manager

kurdin

Provides comprehensive GitHub repository management through 89 API-integrated tools for issues, pull requests, files, and security. Uses only a GitHub token for authentication without requiring Docker or CLI dependencies.

Integrates with GitHub's REST API to provide repository management, issue tracking, pull request handling, file operations, security management, and analytics with intelligent caching for performance optimization.

18371 views6Local (stdio)

What it does

  • Manage GitHub repositories and organizations
  • Handle issues and pull requests
  • Perform file operations and code management
  • Track repository analytics and metrics
  • Configure security settings and permissions
  • Execute bulk operations across repositories

Best for

Developers automating GitHub workflowsProject managers tracking issues and PRsDevOps teams managing multiple repositoriesCode reviewers streamlining review processes
89 tools with direct API integrationNo Docker requiredToken-only authentication

About GitHub Repos Manager

GitHub Repos Manager is a community-built MCP server published by kurdin that provides AI assistants with tools and capabilities via the Model Context Protocol. GitHub Repos Manager integrates with GitHub's REST API to streamline repo management, issues, pull requests, file ops, s It is categorized under developer tools, productivity.

How to install

You can install GitHub Repos Manager in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

GitHub Repos Manager is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

github-svgrepo-logo GitHub Repos Manager MCP Server

Token-based GitHub automation management. No Docker for optimal performance, Flexible configuration for fine-grained control, 89 tools with direct API integration.

A comprehensive Model Context Protocol (MCP) server that enables your MCP client (Claude Desktop, Roo Code, Cline, Cursor, Windsurf, etc.) to interact with GitHub repositories using your GitHub personal access token.

This tool simplifies managing GitHub repositories using only a GitHub token for setup. By skipping Docker, it avoids unnecessary complexity, delivering fast and effective results through direct API integration.

This server is built using Node.js and provides a complete toolkit for repository management, issue tracking, collaboration management, and more, all while leveraging the GitHub API for optimal performance.

Skip to Quick Setup and MCP Client Configuration

πŸš€ Key Advantages over other GitHub Automation MCP Servers

🎯 Simplicity: Token-based access eliminates complexity. 🌿 Efficiency: No Docker ensures lightweight, optimal performance. πŸ’ͺ Power: 89 tools with direct API integration offer unmatched flexibility. πŸ”’ Flexibility: Fine-grained control with configurable tools.

🎯 Simple Setup & Operation

βœ… No Docker required - Simple Node.js server that runs anywhere
βœ… One token setup - Only needs a GitHub Personal Access Token to work
βœ… Direct API integration - No dependency on gh CLI, faster and more reliable
βœ… Zero configuration - Works out of the box with just the token

πŸ”’ Advanced Security & Control

βœ… Allowed repositories - Restrict operations to specific repos or owners
βœ… Tool management - Enable/disable specific tools for fine-grained control
βœ… Default repository - Set a default repo for streamlined workflows
βœ… Flexible permissions - Configure exactly what the server can access

πŸ’ͺ Powerful Features

βœ… Comprehensive toolkit - 89 powerful tools for complete GitHub workflow
βœ… Branch & commit management - Create branches, explore history, compare changes
βœ… Image upload support - Upload and embed images directly in issues
βœ… Advanced filtering - Sort, filter, and search with multiple criteria
βœ… Rate limit handling - Built-in GitHub API rate limit management

🎯 Complete Feature Set

πŸ“ Repository Management

  • Smart repository listing with filtering by visibility (public/private/all) and sorting options
  • Detailed repository information including stats, URLs, and metadata
  • File and directory browsing with support for specific branches/commits
  • Repository search across all of GitHub with advanced sorting
  • Default repository setting for streamlined workflows

🎫 Advanced Issue Management

  • Complete issue lifecycle - create, edit, list, and manage states
  • Rich content support - upload and embed images directly in issues
  • Label management - add, remove, and organize with custom labels
  • Assignee management - assign/unassign team members
  • Issue locking/unlocking with customizable reasons
  • Comment system - create, edit, delete, and list issue comments
  • State management - open, close, and track issue progress

πŸ”„ Pull Request Management

  • Pull request listing with state filtering and sorting
  • Comprehensive PR information including branch details and status

🌿 Branch & Commit Management

  • Branch operations - list all branches with protection status and latest commits
  • Branch creation - create new branches from existing branches or commits
  • Commit history - explore commit history with advanced filtering (date, author, branch)
  • Commit details - get comprehensive commit information including file changes
  • Commit comparison - compare any two commits, branches, or tags to see differences

πŸ‘₯ Collaboration & User Management

  • User profile information for any GitHub user or your own account
  • Repository collaborator management with permission filtering
  • Team collaboration tools for managing access and permissions

🎨 Advanced Capabilities

  • Image upload and embedding - upload local images directly to GitHub
  • Batch operations - manage multiple assignees, labels, and comments
  • Flexible authentication - secure token-based GitHub API access
  • Smart error handling - comprehensive error reporting and recovery

Prerequisites

Minimal Requirements - It's That Simple!

  1. Node.js (version 18 or higher) - That's it!
  2. GitHub Personal Access Token (PAT) - The only configuration needed
    • Go to GitHub β†’ Settings β†’ Developer settings β†’ Personal access tokens β†’ Tokens (classic) or Fine-grained tokens.
    • Generate a new token with at least these scopes:
      • repo (Full control of private repositories) - Recommended for full functionality.
      • user:read or user:email (to read user profile data).
      • read:org (if you need to access organization information).
    • Important: Store this token securely. You will need to provide it directly in your MCP client's configuration for this server (see Step 3 below).

Quick Setup

Using npx (Simplest - No Installation Required!)

Make sure you have Node.js installed, then use npx to run the server directly Check that you have exported your GitHub token as an environment variable named GH_TOKEN or include it in your MCP client configuration.

You can run this server directly without cloning or installing:

# Run directly with npx
npx -y github-repos-manager-mcp

For macOS/Linux:

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx",
      "args": [
        "-y",
        "github-repos-manager-mcp"
      ],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE"
      }
    }
  }
}

For Windows, in some cases you may need to use npx.cmd instead of npx:

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx.cmd",
      "args": [
        "-y",
        "github-repos-manager-mcp"
      ],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE"
      }
    }
  }
}

This command will automatically download and run the latest version of the server without needing to install anything locally.

Clone, Install and Run Locally

If you prefer to run the server locally, clone the repository and install dependencies:

git clone https://github.com/kurdin/github-repos-manager.git
cd github-repos-manager
npm install

Then, configure your MCP client to point to the local server using the full path to server.cjs:

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "node",
      "args": ["/full/path/to/your/project/github-repos-manager-mcp/server.cjs"],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE"
      }
    }
  }
}

Important: Replace "ghp_YOUR_ACTUAL_TOKEN_HERE" with your actual GitHub Personal Access Token.

3. Test the Server

Once the MCP client is configured with the correct path to server.cjs and your GH_TOKEN, the server should start automatically when the client attempts to use one of its tools.

You can also test the server script directly for basic authentication, but this requires temporarily setting the GH_TOKEN environment variable in your shell for this specific test:

# For direct script testing ONLY (normal operation uses MCP client config)
export GH_TOKEN="ghp_YOUR_TEMPORARY_TEST_TOKEN"
node server.cjs
unset GH_TOKEN # Important: unset after testing

If successful, you should see "GitHub API authentication successful" and "GitHub Repos Manager MCP Server running on stdio".

Note: The server will only set a default repository if you explicitly configure it through environment variables, command line arguments, or use the set_default_repo tool. It never automatically sets a default repository.

Example File Locations for Claude Desktop claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json (path may vary)

βš™οΈ Configuration Options

Default Repository Setting

You can set a default repository to streamline your workflow and avoid specifying owner and repo in every command. There are three ways to configure this:

1. Environment Variables (Recommended for MCP clients)

Add environment variables to your MCP client configuration:

Using npx:

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx",
      "args": ["-y", "github-repos-manager-mcp"],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE",
        "GH_DEFAULT_OWNER": "octocat",
        "GH_DEFAULT_REPO": "Hello-World"
      }
    }
  }
}

Using local installation:

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "node",
      "args": ["/full/path/to/your/project/github-repos-manager-mcp/server.cjs"],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE",
        "GH_DEFAULT_OWNER": "octocat",
        "GH_DEFAULT_REPO": "Hello-World"
      }
    }
  }
}

2. Command Line Arguments

When running the server directly, you can pass default repository settings:

node server.cjs --default-owner octocat --default-repo Hello-World

3. Runtime Tool Call

Use the set_default_repo tool during your conversation to set or change the default repository:

  • "Set default repository to microsoft/vscode"
  • "Change the default to my own repo username/my-project"

Configuration Priority (highest to lowest):

  1. Command line arguments (--default-owner, --default-repo)
  2. Environment variables (GH_DEFAULT_OWNER, GH_DEFAULT_REPO)

README truncated. View full README on GitHub.

Alternatives

Related Skills

Browse all skills
context7

Search GitHub issues, pull requests, and discussions across any repository. Activates when researching external dependencies (whisper.cpp, NAudio), looking for similar bugs, or finding implementation examples.

40
skill-installer

Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).

19
ui-design-system

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

6
deepwiki

Query the DeepWiki MCP server for GitHub repository documentation, wiki structure, and AI-powered questions.

4
flutter-architecture-expert

Architecture guidance for Flutter apps using the flutter_it construction set (get_it, watch_it, command_it, listen_it). Covers Pragmatic Flutter Architecture (PFA) with Services/Managers/Views, feature-based project structure, manager pattern, proxy pattern with optimistic updates and override fields, DataRepository with reference counting, scoped services, widget granularity, testing, and best practices. Use when designing app architecture, structuring Flutter projects, implementing managers or proxies, or planning feature organization.

3
github-workflow-automation

Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management

2