Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ”„ Version Control
  3. Ghcli Mcp Connector
G
Health: ActiveRecent health check succeeded.Last checked 8/10/2026, 11:59:07 PM

Ghcli Mcp Connector

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

MCP server for the GitHub CLI (gh). Read-only by default; single Go binary.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "ghcli-mcp-connector": {
      "command": "npx",
      "args": [
        "-y",
        "ghcli-mcp-connector"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ”„ More in Version Control

Documentation Overview

πŸ”Œ ghcli-mcp-connector

Talk to the GitHub CLI (gh) from an MCP-speaking agent.

CI CodeQL Latest release MCP Registry Go Reference License: MIT MCP Conventional Commits PRs Welcome


A single static Go binary that speaks the Model Context Protocol and lets an agent run GitHub CLI commands: any gh <command> <subcommand> invocation β€” repo, issue, pr, release, gist, workflow, run, secret, variable, project, ruleset, codespace, extension, api, and more β€” with a read-only-by-default safety gate on anything that changes state on GitHub.

No Python, no uv, no runtime dependency to install β€” just a binary and an .mcp.json. It shells out to the gh binary already installed and authenticated on the host (gh auth login, stored in the OS keychain, or GH_TOKEN/GITHUB_TOKEN) instead of reimplementing a GitHub API client, so it gets the full breadth of the CLI for free rather than a hand-curated subset of endpoints.

Note: this is a sibling of github-mcp-connector, not a replacement. That one talks to the GitHub REST API directly via google/go-github with a curated set of 18 tools. This one shells out to the gh CLI itself β€” same trade-off as aws-mcp-connector vs. a hand-written AWS SDK client: broader coverage (gh extensions, gh's own filters/formatting, workflow/run/codespace/project/ruleset management) through a single ghcli_exec escape hatch, instead of a curated surface.

✨ Why this exists

An agent that only has a narrow, hand-picked set of GitHub tools hits a wall the moment you need something outside that set. This connector instead wraps the gh CLI itself, so an agent can run gh pr list, gh issue create, gh workflow run, gh api repos/owner/repo/issues β€” anything the CLI can do β€” without waiting on a new tool to be written for it. State-changing commands are blocked by default and require both a server-level opt-in and a per-call confirm=true, so exploring/ reading is safe out of the box.

🧰 Tools

ToolWhat it doesWrite?
ghcli_execRun any gh <command> <subcommand> ... command. Read-only by default β€” commands that change GitHub state need GHCLI_MCP_ALLOW_WRITE=true on the server and confirm=true on the call.βœ… (gated)
ghcli_helpShow gh <command> [subcommand] --help text β€” always safe, use it to check exact syntax before calling ghcli_exec.
ghcli_whoamiShow the GitHub identity (login, name, profile URL) the configured auth resolves to.

Every tool accepts an optional response_format: markdown (default, readable for a chat UI) or json (for programmatic use).

This server has no working-directory git repo, so repo-scoped commands need an explicit -R/--repo owner/repo rather than relying on gh's cwd-based repo detection.

πŸš€ Quickstart

Fastest path: grab a prebuilt bundle from the latest release β€” download ghcli-mcp-connector-plugin-<version>-<os>-<arch>.zip, unzip it, and point Cowork/Claude at the plugin/ folder inside (see step 4 of SETUP.md). No Go toolchain required.

From source:

bash
# 1. Build
cd go-server
go mod tidy
go build -o ghcli-connector-server .
cp ghcli-connector-server ../plugin/servers/go/

# 2. Set up auth β€” needs the gh CLI itself installed and logged in
#    (gh auth login) β€” see SETUP.md
gh auth status   # should succeed before running the server

# 3. Run
./go-server/ghcli-connector-server   # serves MCP over stdio

Or make build β€” see the Makefile for every shortcut (test, vet, fmt, lint, tidy).

Full walkthrough β€” including wiring this up as a Claude/Cowork plugin β€” is in SETUP.md.

πŸ” Configuration

Everything is environment variables, passed through by the plugin's .mcp.json:

VariablePurposeDefault
GH_TOKEN / GITHUB_TOKENgh CLI's own token env vars. Leave unset to use whatever gh auth login already configured.unset (keychain auth)
GH_HOSTTarget a GitHub Enterprise hostname instead of github.com.unset (github.com)
GHCLI_MCP_ALLOW_WRITE"true" to permit state-changing commands at all (still needs confirm=true per call).false (read-only)
GHCLI_MCP_ALLOWED_REPOSComma-separated allowlist of owner/repo values, e.g. "me/proj,me/other". Only enforced when a call passes an explicit -R/--repo flag.unset (unrestricted)
GHCLI_MCP_CLI_PATHPath to the gh binary.gh resolved via PATH

πŸ§ͺ Quality bar

This isn't a toy script β€” it's got the same checks you'd expect from a production Go service:

  • βœ… Unit tests for every input-validation path (go test ./...)
  • βœ… go vet + gofmt clean
  • βœ… golangci-lint (govet, staticcheck, errcheck, gosec, and more)
  • βœ… govulncheck β€” no known vulnerabilities in the dependency graph
  • βœ… CodeQL static security analysis on every push
  • βœ… End-to-end verified against real GitHub during development β€” not mocks
  • βœ… Dependabot keeps Go modules and Actions current

All of it runs in CI on every push and PR.

🏷️ Releases & versioning

Versions follow semver and are cut automatically by release-please from Conventional Commits on main:

  • fix: ... β†’ patch (v0.1.0 β†’ v0.1.1)
  • feat: ... β†’ minor (v0.1.1 β†’ v0.2.0)
  • feat!: ... / BREAKING CHANGE: footer β†’ major (v0.2.0 β†’ v1.0.0)

Every merged PR updates a standing "chore(main): release vX.Y.Z" PR with an auto-generated CHANGELOG.md. Merging that PR:

  1. tags the release and publishes it on GitHub
  2. builds and attaches zipped, ready-to-install plugin bundles for linux/darwin/windows Γ— amd64/arm64
  3. regenerates server.json from those exact assets (fresh version + SHA-256 hashes) and publishes it to the official MCP Registry via mcp-publisher, authenticated with GitHub OIDC β€” no stored secrets

See .github/workflows/release-please.yml and .github/workflows/publish-mcp-registry.yml (also runnable by hand for an existing tag via workflow_dispatch).

πŸ“ Layout

Code
ghcli-mcp-connector/
β”œβ”€β”€ README.md                  ← you are here
β”œβ”€β”€ SETUP.md                   ← step-by-step setup guide
β”œβ”€β”€ CONTRIBUTING.md             ← how to contribute
β”œβ”€β”€ CODE_OF_CONDUCT.md
β”œβ”€β”€ SECURITY.md                 ← vulnerability reporting
β”œβ”€β”€ CODEOWNERS
β”œβ”€β”€ LICENSE                     ← MIT
β”œβ”€β”€ Makefile                    ← build / test / lint shortcuts
β”œβ”€β”€ .golangci.yml                ← lint rules
β”œβ”€β”€ release-please-config.json  ← semver/changelog automation config
β”œβ”€β”€ .release-please-manifest.json
β”œβ”€β”€ server.json                  ← MCP Registry manifest (regenerated fresh per release by CI)
β”œβ”€β”€ scripts/
β”‚   └── render-server-json.sh    ← rebuilds server.json from a release's zip assets
β”œβ”€β”€ .github/
β”‚   β”œβ”€β”€ workflows/
β”‚   β”‚   β”œβ”€β”€ ci.yml                     ← build, vet, test, lint, govulncheck
β”‚   β”‚   β”œβ”€β”€ codeql.yml                 ← security scanning
β”‚   β”‚   β”œβ”€β”€ pr-title.yml               ← Conventional Commits PR title check
β”‚   β”‚   β”œβ”€β”€ release-please.yml         ← version PRs, tagging, GitHub releases
β”‚   β”‚   β”œβ”€β”€ publish-mcp-registry.yml   ← publishes server.json to the MCP Registry
β”‚   β”‚   └── rebuild-release-assets.yml ← manual re-attach fallback
β”‚   β”œβ”€β”€ ISSUE_TEMPLATE/
β”‚   β”œβ”€β”€ PULL_REQUEST_TEMPLATE.md
β”‚   └── dependabot.yml
β”œβ”€β”€ go-server/                  ← the MCP server source
β”‚   β”œβ”€β”€ main.go
β”‚   β”œβ”€β”€ main_test.go
β”‚   β”œβ”€β”€ go.mod / go.sum
β”‚   └── README.md
└── plugin/                     ← installable Cowork/Claude plugin
    β”œβ”€β”€ .claude-plugin/plugin.json
    β”œβ”€β”€ .mcp.json                ← holds credentials locally β€” never commit real ones
    β”œβ”€β”€ skills/ghcli-mcp/SKILL.md ← teaches Claude when/how to use the tools
    └── servers/go/              ← compiled binary goes here

🀝 Contributing

PRs and issues are very welcome β€” see CONTRIBUTING.md for the full guide (setup, coding conventions, how to add a new tool) and the Code of Conduct.

main is protected: every change, including the maintainer's, lands via pull request with CI green. PR titles must follow Conventional Commits β€” that's what drives the automatic versioning above.

Found a security issue? Please follow SECURITY.md instead of opening a public issue.

πŸ“„ License

MIT Β© FerhatDundar

Related MCP Servers

View all in Version Control View all alternatives
  • M
    Mcp

    Official GitLab MCP Server

    πŸ”„ Version Control1 views
    Compare vs Mcp β†’
  • G
    Github Mcp Connector

    MCP server for GitHub: repos, files, issues, PRs, search. Single Go binary.

    πŸ”„ Version Control0 views
    Compare vs Github Mcp Connector β†’
  • S
    Saidsef Mcp Github Pr Issue Analyser

    A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…

    πŸ”„ Version Control1 views
    Compare vs Saidsef Mcp Github Pr Issue Analyser β†’
  • G
    Git Mcp Server

    MCP server for GitLab and GitHub

    πŸ”„ Version Control0 views
    Compare vs Git Mcp Server β†’

Frequently Asked Questions about Ghcli Mcp Connector

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "ghcli-mcp-connector": { "command": "npx", "args": ["-y", "ghcli-mcp-connector"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewGhcli Mcp Connector AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/ghcli-mcp-connector?style=directory)](https://allmcps.com/mcp/ghcli-mcp-connector)
HTML Embed
<a href="https://allmcps.com/mcp/ghcli-mcp-connector"><img src="https://allmcps.com/api/badge/ghcli-mcp-connector?style=directory" alt="Ghcli Mcp Connector on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ”„Version Control
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars0
GitHub Star CountTotal stargazers on GitHub representing community popularity (0 stars).
Last commit7d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 3, 2026
33Quality signal: Emerging Β· 33/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools11/30
Adoption & activity4/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ”„ Version Control β†’Best MCP servers for Git & Version Control β†’Alternatives to Ghcli Mcp Connector β†’Install in Claude DesktopInstall in CursorInstall in VS Code