by kurdin
GitHub Repos Manager integrates with GitHub's REST API to streamline repo management, issues, pull requests, file ops, s
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.
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.
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.
MIT
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.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
GitHub Repos Manager reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
GitHub Repos Manager is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Useful MCP listing: GitHub Repos Manager is the kind of server we cite when onboarding engineers to host + tool permissions.
We wired GitHub Repos Manager into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Strong directory entry: GitHub Repos Manager surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: GitHub Repos Manager is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated GitHub Repos Manager against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated GitHub Repos Manager against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: GitHub Repos Manager is the kind of server we cite when onboarding engineers to host + tool permissions.
GitHub Repos Manager has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 58
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.
🎯 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.
✅ 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
✅ 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
✅ 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
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).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.
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.
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:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json (path may vary)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:
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"
}
}
}
}
When running the server directly, you can pass default repository settings:
node server.cjs --default-owner octocat --default-repo Hello-World
Use the set_default_repo tool during your conversation to set or change the default repository:
microsoft/vscode"username/my-project"Configuration Priority (highest to lowest):
--default-owner, --default-repo)GH_DEFAULT_OWNER, GH_DEFAULT_REPO)Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.