Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mcparmory avatar

Github

  • 29 repo stars
  • Updated May 12, 2026
  • mcparmory/registry

com.mcparmory/github is a MCP server that lets your agent manage GitHub repositories, users, releases, and workflow automation.

About

com.mcparmory/github is an MCP server that exposes GitHub repository, user, release, and workflow capabilities to AI coding agents so you can operate your canonical code host from the same thread where you edit code. developers using Claude Code, Cursor, or Codex can create or inspect repos, manage collaborators at a high level, draft releases, and reason about CI workflows without opening a dozen browser tabs. It sits in the build phase as an integration because implementation and delivery for indies are tightly coupled to GitHub: branches, PRs, Actions, and release assets. The package is version 1.0.6, distributed through stdio on PyPI as mcparmory-github (uvx) and as a container image on ghcr.io. Register it when your agent should execute or plan GitHub operations with your PAT or app credentials, not when you only need local git add/commit. Pair it with local editing skills for a full loop from code change to tagged release.

  • Manage repositories, users, and releases from agent-driven prompts
  • Trigger and inspect GitHub Actions workflows without context-switching to the web UI
  • Version 1.0.6 with stdio via uvx (mcparmory-github) or Docker ghcr.io/mcparmory/github:1.0.6
  • Fits ship-phase release tagging and grow-phase changelog hygiene when chained after local commits
  • Developer-tool MCP server—not a markdown skill; requires GitHub token and MCP registration

Github by the numbers

  • Data as of Jul 26, 2026 (Skillselion catalog sync)
terminal
claude mcp add mcparmory-github -- uvx mcparmory-github

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars29
Packagemcparmory-github
TransportSTDIO
AuthNone
Last updatedMay 12, 2026
Repositorymcparmory/registry

What it does

Wire GitHub repos, releases, users, and workflow actions into your agent so shipping and repo chores stay in the chat.

Who is it for?

Best when you ship from GitHub and want the agent to handle repos, releases, and Actions alongside coding tasks.

Skip if: Skip if you're on GitLab-only or offline workflows with no GitHub org or token policy.

What you get

GitHub admin and release steps become tool calls your agent can plan and execute with your credentials.

  • Agent-executed GitHub repo, user, release, and workflow operations with API-backed results
  • Documented release and automation steps the agent can repeat in later ship iterations

By the numbers

  • Server version 1.0.6
  • 2 packages (PyPI mcparmory-github and OCI ghcr.io/mcparmory/github:1.0.6)
  • stdio transport
README.md

MCP Armory

MCP Armory Registry

Production-ready MCP servers for popular APIs, generated by MCP Blacksmith.

GitHub Stars License Servers Python 3.11+

Servers · Install & Usage · Features · How it works · License


MCP servers that connect AI agents to real-world APIs. Each server is a standalone Python package — generated from the upstream OpenAPI spec using MCP Blacksmith and tested against the live API before release. Hosted on MCP Armory or run independently.

Servers

🧠 AI & Machine LearningElevenLabs · Linkup · Parallel · Perplexity AI · Ragie · Replicate

📊 AnalyticsAhrefs · Datadog · Google Analytics · Google Search Console · Linkly · Mixpanel · PostHog

⛓️ Blockchain & CryptoAlchemy NFT

💼 CRM & SalesApollo

💬 CommunicationAtlassian Confluence · Google Gmail · MailerSend · Mailtrap · Postmark · Resend · Slack

🗄️ Data & DatabasesEnigma · Pinecone

🛠️ Developer ToolsAgentQL · Apify · Bitbucket · Bright Data · Browserbase · BuiltWith · Canvas · CircleCI · Codacy · Contentful Management · ConvertAPI · E2B · Firecrawl · GitHub · GitLab · LaunchDarkly · Postman · Scrapingant · Semrush AppCenter · Sentry

📄 Documents & PrintingPDF.co

🛒 E-commerceShopify Admin

💰 FinanceAlpha Vantage · Polygon · Ramp

👥 HR & RecruitingBambooHR

☁️ InfrastructureGlobalping · Grafana · PagerDuty · Rootly · Runpod

⚖️ Legal & ComplianceNetLicensing

🗺️ Maps & LocationGoogle Maps Platform · IP2Location.io IP Geolocation · OpenCage Geocoding

📣 MarketingCustomer.io Journeys Track · Klaviyo

🎬 Media & EntertainmentCanva · Perigon

ProductivityAirtable · Asana · Atlassian Jira · ClickUp · Figma · Google Sheets · Miro · Notion · Outline · Shortcut

🔍 SearchAlgolia Search · Google Search

📦 StorageBox · Files.com · Google Drive

📌 OtherClose

More servers are being added continuously.

Install & Usage

Every server is a standalone PyPI package (mcparmory-<server-name>). Each server's own README.md has full credential setup and configuration instructions.

# With uvx (no install needed)
uvx mcparmory-github

# With pip
pip install mcparmory-github
mcparmory-github

MCP client configuration (Claude Desktop, Cursor, Codex, Claude Code):

{
  "mcpServers": {
    "github": {
      "command": "uvx",
      "args": ["mcparmory-github"],
      "env": {
        "BEARER_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

Features

Every server in this registry provides:

  • Full API coverage — all endpoints from the OpenAPI spec are exposed as MCP tools
  • Authentication — API key, Bearer token, Basic auth, OAuth2, JWT, OpenID Connect, and mutual TLS
  • Multi-auth — servers that support multiple auth methods let you configure whichever you prefer
  • Pydantic validation — request parameters are validated before sending to the API
  • Resilience — configurable retries with exponential backoff, connection pooling, and timeouts
  • Response sanitization — optional redaction of sensitive fields from API responses

How servers are generated

Servers are generated by MCP Blacksmith, an automated pipeline that:

  1. Parses an OpenAPI specification
  2. Transforms operations through LLM-driven passes (naming, parameter filtering, enhancement, classification)
  3. Generates a complete MCP server with auth, models, validation, and configuration
  4. Tests every tool against the live API using an autonomous agent
  5. Deploys passing servers to this registry

The generator targets Python 3.11+ and uses FastMCP as the MCP framework.

Contributing

Servers are auto-generated — don't edit server code directly. If you find an issue, open a GitHub Issue describing:

  • Broken or deprecated endpoints
  • Missing or incorrect parameters
  • Authentication problems
  • Incorrect request/response models

We'll re-generate the affected server with the fix. To request a new server, open an issue with a link to the API's OpenAPI spec or documentation.

License

Each generated server is released under the MIT License. The underlying APIs have their own terms of service — see individual server READMEs for details.


MCP Armory · MCP Blacksmith · Docs

Recommended MCP Servers

How it compares

GitHub REST automation via MCP, not a local git skill or a hosted CI YAML generator by itself.

FAQ

Who is com.mcparmory/github for?

Developers and small teams on GitHub who want their coding agent to manage repos, releases, and workflows through MCP tools.

When should I use com.mcparmory/github?

Use it during build and ship when you need the agent to inspect or change GitHub resources—repos, releases, users, or Actions—without manual UI steps.

How do I add com.mcparmory/github to my agent?

Add a stdio MCP entry pointing to uvx mcparmory-github 1.0.6 or ghcr.io/mcparmory/github:1.0.6, supply a GitHub personal access token or app auth per your setup, and reload the agent’s MCP server list.

Developer Toolsgitdevopsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.