Github Proxy
FreeNot checkedA self-hosted GitHub MCP server with per-repository guardrails for AI agents, enabling fine-grained access control and audit trails.
About
A self-hosted GitHub MCP server with per-repository guardrails for AI agents, enabling fine-grained access control and audit trails.
README
A self-hosted GitHub MCP server running on Cloudflare Workers, designed for personal / small-team use with per-repository guardrails for AI agents.
Any MCP-capable agent (Claude, Codex, ChatGPT, Cursor, Cline, …) can be plugged in — with tight control over which repos it can touch and how.
[!WARNING] If you need security or stability, use the official GitHub MCP server. Fork freely; security issues are your responsibility once forked.
Why
Generic GitHub tokens give an agent full account access. This server narrows that down:
- Per-repo permission levels —
read/issues/full - Branch protection — new branches must match a prefix (default
claude/);main/masternever writable - Commit-message policy — Conventional Commits, validated server-side
- Label whitelist —
allowedLabelsper repo; the server never auto-creates labels on GitHub - Forbidden paths —
.github/workflows/**always blocked - Audit trail — every write auto-appends
Signed-off-by/Assisted-bytrailers or a footer identifying the agent and model
Architecture
MCP agent ──(Streamable HTTP + OAuth)──▶ Cloudflare Worker
│
├── workers-oauth-provider (OAuth 2.1 server to MCP clients)
├── GitHub OAuth (OAuth client to github.com)
├── KV (session tokens)
├── Durable Object (MCP agent state)
└── Octokit (GitHub REST)
Config (ghmcp.config.ts) is bundled with the Worker at deploy time — no runtime KV reads, typechecked via satisfies.
Quick start
git clone <your-fork>
cd kz-github-mcp
npm install
cp ghmcp.config.sample.ts ghmcp.config.ts # edit: repos you want to expose
cp wrangler.sample.jsonc wrangler.jsonc # edit: KV id + worker name
cp .env.example .env # edit: for local dev only
Create a GitHub OAuth App (Homepage = https://<worker>.<subdomain>.workers.dev, Callback = /callback), then:
wrangler kv namespace create "OAUTH_KV" # add the id to wrangler.jsonc
wrangler secret put GITHUB_CLIENT_ID
wrangler secret put GITHUB_CLIENT_SECRET
wrangler secret put COOKIE_ENCRYPTION_KEY # openssl rand -hex 32
npm run deploy
Local development: same flow with a second OAuth App pointing at http://localhost:8788, credentials in .env, then npm run dev.
Continuous deployment (optional)
.github/workflows/deploy.yml deploys to Cloudflare on every push to main. Set two repo secrets in GitHub Settings → Secrets and variables → Actions:
| Secret | Where to get it |
|---|---|
CLOUDFLARE_API_TOKEN |
Cloudflare dashboard → My Profile → API Tokens → create a token with the "Edit Cloudflare Workers" template |
CLOUDFLARE_ACCOUNT_ID |
Cloudflare dashboard → right sidebar of any Workers page |
The GitHub OAuth credentials (GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, COOKIE_ENCRYPTION_KEY) live as Wrangler secrets on the Worker itself, not in GitHub Actions — you only need to set them once with wrangler secret put.
See docs/ARCHITECTURE.md for how it works, docs/CONFIG.md for every config field.
Connect an AI agent
Claude (claude.ai) — Settings → Connectors → Add custom connector → paste https://<worker>.<subdomain>.workers.dev/sse.
Claude Code / Codex / Cursor / Cline — add to the client's MCP config:
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["mcp-remote", "https://<worker>.<subdomain>.workers.dev/sse"]
}
}
}
Any MCP host — point it at the same /sse endpoint. OAuth flow runs on first connect.
Tools
Prefixed with ghmcp_. Each declares a minimum permission level; the server denies calls below that.
| Category | Tools | Min level |
|---|---|---|
| User | get_me |
read |
| Repo | list_repos, get_file_content, search_code |
read |
| Issues | list_issues, get_issue, search_issues, list_issue_comments |
read |
| Issues | create_issue, update_issue, add_issue_comment |
issues |
| PRs | list_pull_requests, get_pull_request |
read |
| PRs | create_pull_request |
issues |
| Files | create_or_update_file, create_branch |
full |
| Actions | list_workflow_runs, get_workflow_run_logs |
read |
Any tool can be disabled via disabledTools in the config.
Validation
npm run validate-config
Uses the gh CLI to confirm that every repo in ghmcp.config.ts exists and that every label in allowedLabels is present on GitHub. Runs automatically as a prebuild hook, so a typo fails npm run build.
License
Originally forked from cloudflare/ai/demos/remote-mcp-github-oauth. MIT-licensed.
This tool is MIT-licensed. — see LICENSE.
Installing Github Proxy
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/kazaminn/github-mcp-proxyFAQ
Is Github Proxy MCP free?
Yes, Github Proxy MCP is free — one-click install via Unyly at no cost.
Does Github Proxy need an API key?
No, Github Proxy runs without API keys or environment variables.
Is Github Proxy hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Github Proxy in Claude Desktop, Claude Code or Cursor?
Open Github Proxy on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
by duxiaohuiSupabase
Database, auth and storage
by SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Github Proxy with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
