Github Repos Manager MCP
G

Github Repos Manager MCP

The GitHub Repository Management MCP Server is built on Node.js and enables automated management through a GitHub Personal Access Token. It provides 89 tools to directly integrate with the GitHub API, supporting functions such as repository management, issue tracking, and collaboration management. It does not require Docker and has flexible configuration.
2 points
4.2K

What is the GitHub Repos Manager MCP Server?

This is a Model Context Protocol (MCP) server that allows you to interact with GitHub repositories through a GitHub Personal Access Token (PAT). It simplifies GitHub repository management, avoids the complexity of Docker, and directly uses the GitHub API for operations.

How to use the GitHub Repos Manager MCP Server?

Simply provide a GitHub Personal Access Token to quickly start and run the server. You can use the command line or integrate it into MCP clients, such as Claude Desktop, Roo Code, etc.

Applicable Scenarios

Suitable for developers and teams that need to frequently manage GitHub repositories, create and maintain issues, pull requests, and collaborate on development.

Main Features

Direct API Integration
Operate directly using the GitHub API without relying on CLI tools, improving efficiency and reliability.
Flexible Configuration
Supports fine-grained control, allowing you to enable or disable specific tools and restrict access to specific repositories.
Comprehensive Toolset
Contains 89 tools covering multiple aspects such as repository management, issue tracking, and collaboration management.
Image Upload Support
You can directly upload local images to GitHub issues, facilitating issue description and discussion.
Rate Limit Handling
Built-in GitHub API rate limit management ensures smooth operations without exceeding the limit.
Advantages
No need for Docker, simplifying the deployment process.
Direct API calls, improving performance.
Supports multiple configuration options to meet different needs.
A rich toolset covering all aspects of GitHub management.
Limitations
Requires a valid GitHub Personal Access Token, with high security requirements.
Configuration may be slightly complex for beginners.
Some advanced features may require more complex settings.

How to Use

Install Node.js
Ensure that Node.js version 18 or higher is installed on your system.
Get a GitHub Personal Access Token
Generate a Personal Access Token (PAT) with the necessary permissions on GitHub.
Run the Server
Use npx to directly run the server, or clone the repository, install dependencies, and then run it.
Configure the MCP Client
Configure the server path and environment variables in the MCP client (such as Claude Desktop).

Usage Examples

Create a GitHub Issue
Create an issue in the specified repository, with an image and tags.
View Repository Information
Get detailed information about the specified repository, including statistics and metadata.
Compare Commit Differences
Compare the differences between two commits to understand code changes.

Frequently Asked Questions

How to get a GitHub Personal Access Token?
What permissions does the server require?
How to set the default repository?
Does the server support multi-repository management?
How to solve the GitHub API rate limit problem?

Related Resources

GitHub Repos Manager MCP Server Documentation
The official project page, including source code and complete documentation.
GitHub API Documentation
GitHub REST API reference documentation to understand how to interact with GitHub.
MCP Client Configuration Guide
How to configure the MCP client (such as Claude Desktop) to use the GitHub Repos Manager MCP Server.

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx",
      "args": [
        "-y",
        "github-repos-manager-mcp"
      ],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE"
      }
    }
  }
}

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

{
  "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"
      }
    }
  }
}

{
  "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"
      }
    }
  }
}

{
  "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"
      }
    }
  }
}

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "node",
      "args": ["/path/to/server.cjs"],
      "env": {
        "GH_TOKEN": "ghp_YOUR_TOKEN",
        "GH_ALLOWED_REPOS": "owner1/repo1,owner2/repo2,owner3"
      }
    }
  }
}

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx",
      "args": ["-y", "github-repos-manager-mcp"],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE",
        "GH_DEFAULT_OWNER": "mycompany",
        "GH_DEFAULT_REPO": "main-project",
        "GH_ALLOWED_REPOS": "mycompany,trusted-org/specific-repo",
        "GH_ALLOWED_TOOLS": "list_issues,create_issue,list_prs,get_repo_info"
      }
    }
  }
}

{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx.cmd",
      "args": ["-y", "github-repos-manager-mcp"],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE",
        "GH_DEFAULT_OWNER": "mycompany",
        "GH_DEFAULT_REPO": "main-project",
        "GH_ALLOWED_REPOS": "mycompany,trusted-org/specific-repo",
        "GH_ALLOWED_TOOLS": "list_issues,create_issue,list_prs,get_repo_info"
      }
    }
  }
}

{
  "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": "mycompany",
        "GH_DEFAULT_REPO": "main-project",
        "GH_ALLOWED_REPOS": "mycompany,trusted-org/specific-repo",
        "GH_ALLOWED_TOOLS": "list_issues,create_issue,list_prs,get_repo_info"
      }
    }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

R
Runno
Runno is a collection of JavaScript toolkits for securely running code in multiple programming languages in environments such as browsers and Node.js. It achieves sandboxed execution through WebAssembly and WASI, supports languages such as Python, Ruby, JavaScript, SQLite, C/C++, and provides integration methods such as web components and MCP servers.
TypeScript
4.6K
5 points
N
Netdata
Netdata is an open-source real-time infrastructure monitoring platform that provides second-level metric collection, visualization, machine learning-driven anomaly detection, and automated alerts. It can achieve full-stack monitoring without complex configuration.
Go
5.2K
5 points
M
MCP Server
The Mapbox MCP Server is a model context protocol server implemented in Node.js, providing AI applications with access to Mapbox geospatial APIs, including functions such as geocoding, point - of - interest search, route planning, isochrone analysis, and static map generation.
TypeScript
5.3K
4 points
U
Uniprof
Uniprof is a tool that simplifies CPU performance analysis. It supports multiple programming languages and runtimes, does not require code modification or additional dependencies, and can perform one-click performance profiling and hotspot analysis through Docker containers or the host mode.
TypeScript
7.7K
4.5 points
G
Gk Cli
GitKraken CLI is a command - line tool that provides multi - repository workflow management, AI - generated commit messages and pull requests, and includes a local MCP server for integrating tools such as Git, GitHub, and Jira.
4.6K
4.5 points
M
MCP
A collection of official Microsoft MCP servers, providing AI assistant integration tools for various services such as Azure, GitHub, Microsoft 365, and Fabric. It supports local and remote deployment, helping developers connect AI models with various data sources and tools through a standardized protocol.
C#
7.4K
5 points
C
Claude Context
Claude Context is an MCP plugin that provides in - depth context of the entire codebase for AI programming assistants through semantic code search. It supports multiple embedding models and vector databases to achieve efficient code retrieval.
TypeScript
11.5K
5 points
A
Acemcp
Acemcp is an MCP server for codebase indexing and semantic search, supporting automatic incremental indexing, multi-encoding file processing, .gitignore integration, and a Web management interface, helping developers quickly search for and understand code context.
Python
11.2K
5 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
28.2K
5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
18.9K
4.3 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
17.4K
4.5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
58.3K
4.3 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
25.7K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
53.4K
4.5 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
39.2K
4.8 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
19.4K
4.5 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2025AIBase