GitHub Repos Manager MCP Server

Token-based GitHub automation management. No Docker, Flexible configuration, 80+ tools with direct API integration.

Local serverstdioGo

What is the GitHub Repos Manager MCP server?

GitHub Repos Manager becomes available to MCP clients through the github repos manager mcp server. Token-based GitHub automation management. No Docker, Flexible configuration, 80+ tools with direct API integration.

What GitHub Repos Manager does

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.

Installing the github repos manager mcp server

The server is distributed via npm as npx, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 5 environment variables: GH_TOKEN, GH_DEFAULT_OWNER, GH_DEFAULT_REPO, GH_ALLOWED_REPOS, GH_ALLOWED_TOOLS. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. GitHub Repos Manager sits in that group. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Written in Go.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the github repos manager mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

How to install the GitHub Repos Manager MCP server

**For macOS/Linux:**
```json
{
  "mcpServers": {
    "github-repos-manager": {
      "command": "npx",
      "args": [
        "-y",
        "github-repos-manager-mcp"
      ],
      "env": {
        "GH_TOKEN": "ghp_YOUR_ACTUAL_TOKEN_HERE"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GH_TOKENCredential the server authenticates with.Yes
GH_DEFAULT_OWNERConfiguration value read at startup.Optional
GH_DEFAULT_REPOConfiguration value read at startup.Optional
GH_ALLOWED_REPOSConfiguration value read at startup.Optional
GH_ALLOWED_TOOLSConfiguration value read at startup.Optional

Frequently asked questions

It connects GitHub Repos Manager to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with GitHub Repos Manager directly.