github-ruleset-mcp
Allows managing GitHub branch protection rulesets programmatically, including applying templates, checking protection, listing, deleting rulesets, and listing templates.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@github-ruleset-mcpProtect myorg/api with standard rules"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
github-ruleset-mcp
Branch protection as code. 4 templates, 5 tools, 2-minute setup.
An MCP server that lets Claude (or any MCP client) manage GitHub branch protection rulesets programmatically.
Why?
Setting up branch protection manually is tedious. This MCP server lets you say:
Protect myorg/api with standard rulesAnd Claude handles the rest—validating, previewing, and applying the ruleset via GitHub's API.
Related MCP server: GitHub MCP Server
Installation
Prerequisites
Node.js 18.0.0 or higher
npm or yarn
GitHub Personal Access Token with appropriate scopes
1. Clone and Build
git clone https://github.com/wilsonhj/github-ruleset-mcp.git
cd github-ruleset-mcp
npm install
npm run build2. Configure GitHub Token
Choose one of these secure methods:
Option A: Environment Variable (Recommended)
Add to your shell profile (~/.zshrc, ~/.bashrc, etc.):
export GITHUB_TOKEN="ghp_your_token_here"Then reload: source ~/.zshrc
Option B: macOS Keychain (Most Secure)
# Store token in Keychain
security add-generic-password -a "$USER" -s "github_personal_access_token" -w "ghp_your_token_here"
# Add to ~/.zshrc
echo 'export GITHUB_TOKEN=$(security find-generic-password -a "$USER" -s "github_personal_access_token" -w 2>/dev/null)' >> ~/.zshrc
source ~/.zshrc3. Add to Claude Desktop
Edit your Claude Desktop config:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"github-ruleset": {
"command": "node",
"args": ["/absolute/path/to/github-ruleset-mcp/dist/index.js"],
"env": {
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
}
}
}Important: Replace /absolute/path/to/github-ruleset-mcp with the actual path.
4. Restart Claude Desktop
Close and reopen Claude Desktop to load the MCP server.
5. Verify Installation
Ask Claude: "List available GitHub ruleset templates"
If you see 4 templates (standard, strict, relaxed, controlled), it's working! ✅
Testing (Optional)
Test the server before adding to Claude Desktop:
# Install MCP Inspector
npx @modelcontextprotocol/inspector node dist/index.jsThis opens a web UI where you can interactively test all 5 tools.
Templates
Template | When to Use | What It Does |
| Most repos | 1 approval, CI required, no force push |
| Production | 2 approvals, signed commits, code scanning |
| Dev branches | PR required, no approval needed |
| Releases | Team-gated, staging deploy required |
Tools
Tool | Description |
| Apply branch protection (dry-run by default) |
| Verify a branch is protected |
| Show all rulesets in a repo |
| Remove a ruleset (requires confirmation) |
| Show available templates |
Examples
Protect a new repo:
Apply standard branch protection to myorg/new-servicePre-deployment check:
Verify myorg/api has branch protection before I deployCustom ruleset:
Protect myorg/api main branch requiring 3 approvals and signed commitsToken Scopes
Creating a Fine-Grained Token (Recommended)
Click "Generate new token"
Configure:
Token name:
github-ruleset-mcpExpiration: 90 days (or custom)
Repository access: "Only select repositories" or "All repositories"
Set Repository permissions:
Administration: Read and write ✅
Contents: Read-only ✅
Generate and copy the token immediately
Classic Token (Alternative)
If using classic tokens, you need:
repo— Full repository accessadmin:org_hook— Organization ruleset access (if managing org-level rulesets)
Troubleshooting
"GITHUB_TOKEN environment variable is required"
The token isn't set in your environment. Verify:
echo $GITHUB_TOKENIf empty, check that:
You added the token to your shell profile (
~/.zshrc)You ran
source ~/.zshrcto reloadClaude Desktop was restarted after setting the token
"GraphQL: Could not resolve to a Repository"
Check that:
Repository owner/name are correct
Your token has access to the repository
The repository exists
MCP Server Not Showing in Claude Desktop
Verify the config file path is correct
Check the
argspath points to the compileddist/index.jsRestart Claude Desktop completely (quit and reopen)
Check Claude Desktop logs for errors
Tools Execute But Nothing Happens
If using apply_ruleset, remember it defaults to dry-run mode. Set dry_run: false to actually apply changes.
Advanced
See docs/ADVANCED.md for:
Custom ruleset JSON
Multi-agent integration
CI/CD pipeline integration
Contributing
PRs welcome! Please open an issue first for major changes.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wilsonhj/github-ruleset-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server