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.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI โ†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE โ†— (opens in a new tab)
  • llms.txt โ†— (opens in a new tab)
  • Catalog JSON โ†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
ยฉ 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. ๐Ÿ’ฐ Finance & Fintech
  3. Github MCP Server
Github MCP Server logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 7:14:37 PM

Github MCP Server

User RatingsBe the first to rate and review this MCP server! 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 Repository4 GitHub StarsTotal stargazers on GitHub for the source repository (4 stars).Visit Website

AI-optimized GitHub MCP server: 112 tools, 98% token reduction, compact responses.

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 โ–พ

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "github-mcp-server-2": {
      "url": "https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://opensource.org/licenses/AGPL-3.0"
    }
  }
}

๐Ÿ’ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing Alternatives๐Ÿ’ฐ More in Finance & Fintech

Documentation Overview

GitHub MCP Server

License: AGPL v3 Python 3.10+ MCP Tools Version

The most comprehensive GitHub MCP server - Full GitHub workflow automation with Actions monitoring, advanced PR management, intelligent code search, and complete file management. Built for AI-powered development teams.

๐Ÿ‘‰ New here? See the Quick Start Guide

๐Ÿš€ AI-Optimized for Token Efficiency

This server is designed with AI agents in mind:

Response Formats

FormatUse CaseToken Savings
compactDiscovery, lists, status checks80-97% smaller
jsonFull details when neededFull response
markdownHuman-readable displayFormatted text

Real-World Savings

ResourceFull JSONCompactSavings
Commit~3,000 chars~100 chars97%
Issue~2,500 chars~150 chars94%
Repository~4,000 chars~200 chars95%
PR Overview~20,000 chars~1,800 chars91% (GraphQL)

Smart Usage

server.ts
// Default: Use compact for most operations
const issues = await callMCPTool("github_list_issues", {
  owner: "user", repo: "repo",
  limit: 10,
  response_format: "compact"  // 94% smaller!
});

// Use json only when you need every field
const fullIssue = await callMCPTool("github_get_issue", {
  owner: "user", repo: "repo",
  issue_number: 42,
  response_format: "json"
});

Combined with our code-first architecture (98% token reduction), you get the most efficient GitHub MCP server available.

๐Ÿ“– Documentation:

  • Token Efficiency Guide - Detailed savings by tool (18x more efficient)
  • Response Formats Reference - Complete compact field listings

โœจ What's New

๐Ÿš€ Latest: v2.5.6 - AI Optimization & Token Efficiency (December 18, 2025)

  • ๐Ÿ“ฆ Compact Format Rollout - 26 tools now support response_format: "compact" (80-97% token savings!)
  • ๐Ÿ”ง ETag Cache Fix - Fixed critical bug where cache returned empty data on 304 responses
  • ๐Ÿ“– AI-Agnostic Guide - CLAUDE.md renamed to MCP_GUIDE.md with instructions for Claude, Cursor, Windsurf, Copilot, Cline
  • ๐Ÿ”’ Security Tool Docs - Added permission requirements for Dependabot, Code Scanning, Secret Scanning tools
  • ๐Ÿ“Š GraphQL Optimization - PR overview via GraphQL is 91% smaller than REST equivalent
  • โœ… 320 tests passing - Full CI validation

v2.5.5 - MCP Registry Ready (December 17, 2025)

  • ๐Ÿ”„ Removed admin-only tools (delete_repository, transfer_repository)
  • โž• Added delete tools (delete_release, delete_gist)
  • ๐Ÿ”ง Fixed return data for create_branch, create_file, create_pull_request
  • โœ… Test coverage expanded to 320 tests

Previous: v2.5.1 - Architecture Refactor & Performance (December 9, 2025)

  • ๐Ÿ—๏ธ Modular Architecture - github_mcp.py split into modular package structure
  • โšก Connection Pooling - 97% latency reduction (4000ms โ†’ 108ms for subsequent calls)
  • ๐Ÿ”ง Dictโ†’Model Conversion - callMCPTool now works seamlessly with plain JavaScript objects
  • ๐Ÿ“ Multiline Code Support - Fixed truncation issues, full JSON protocol support
  • โœ… Live Integration Tests - 15/15 passing, 320 total tests
  • ๐Ÿ“ฆ 21 Tool Modules - Clean organization: tools/, models/, utils/, auth/

Previous: v2.5.0 - Phase 2 Full Send (December 4, 2025)

MAJOR RELEASE: 47 new tools added (62 โ†’ 109 total tools)! Comprehensive GitHub API coverage.

New in v2.5.0:

  • ๐Ÿš€ GitHub Actions Expansion (12 tools) - Complete workflow management: get/trigger workflows, manage runs/jobs, artifacts
  • ๐Ÿ”’ Security Suite (13 tools) - Dependabot, Code Scanning, Secret Scanning, Security Advisories
  • ๐Ÿ“‹ Projects (9 tools) - Classic project boards: list/create/update projects, manage columns
  • ๐Ÿ’ฌ Discussions (7 tools) - Community discussions: list/get discussions, categories, comments, create/update discussions, add comments (GraphQL)
  • ๐Ÿ”” Notifications (6 tools) - User notifications: list/manage threads, subscriptions
  • ๐Ÿ‘ฅ Collaborators & Teams (3 tools) - Repository access management

Previous: v2.4.0 - Phase 1 Tool Expansion (December 4, 2025)

15 new tools added (48 โ†’ 62 total tools)!

New in v2.4.0:

  • ๐ŸŽฏ Issue Comments - github_add_issue_comment for commenting on issues
  • ๐Ÿ“ Gists - Full CRUD operations: github_list_gists, github_get_gist, github_create_gist, github_update_gist
  • ๐Ÿท๏ธ Labels - Complete label management: github_list_labels, github_create_label, github_delete_label
  • โญ Stargazers - Star/unstar repositories: github_list_stargazers, github_star_repository, github_unstar_repository
  • ๐Ÿ‘ค User Context - Enhanced user operations: github_get_authenticated_user, github_list_user_repos, github_list_org_repos, github_search_users
  • โœ… Restored - github_get_user_info back in TypeScript definitions

Previous: v2.3.1 - Code-First Mode Enforced by Default (January 26, 2025)

  • ๐ŸŽฏ Default Enforcement - Code-first mode now defaults to true (was false)
  • ๐Ÿš€ Zero Configuration - New users get 98% token reduction automatically
  • โœ… Documentation Alignment - Code now matches documentation claims
  • ๐Ÿ”ง Architectural Integrity - True reference implementation of code-first MCP

Previous: v2.3.0 - Architecture Formalization (January 26, 2025)

Single-Tool Architecture Formalized: The intended design from day one - one tool, 98% token reduction!

New in v2.3.0:

  • ๐ŸŽฏ Architecture Clarification - Single-tool design formalized (always the intended architecture)
  • ๐Ÿ› ๏ธ CLI Utilities - Development diagnostics moved to CLI (github-mcp-cli)
  • ๐Ÿ“Š Testing Excellence - 320 tests, 63% coverage (up from 181 tests, 55%)
  • โœ… 33 New Tests - Comprehensive coverage of auth, utilities, and tool operations
  • ๐Ÿ“ Documentation Updates - Clear architecture documentation and CLI usage

v2.2.0 - Enterprise Ready (November 20, 2025)

GitHub App Authentication: 3x rate limits (15,000 vs 5,000 requests/hour) with fine-grained permissions!

New in v2.2.0:

  • ๐Ÿ” GitHub App Authentication - Enterprise-grade auth with installation-based access
  • โšก 3x Rate Limits - 15,000 requests/hour vs 5,000 with PAT
  • ๐Ÿ”„ Dual Authentication - Automatic App โ†’ PAT fallback
  • ๐Ÿ› 19 Auth Fixes - Consistent authentication across all tools
  • โœ… 100% Backward Compatible - Existing PAT users unaffected

v2.1.0 - Enhanced Tool Discovery (November 19, 2025)

Zero Failed Tool Calls: Intelligent tool discovery eliminates discovery issues while maintaining 98% token efficiency!

New in v2.1.0:

๐Ÿ” Tool Discovery Functions

  • listAvailableTools() - Discover all tools on-demand
  • searchTools(query) - Find relevant tools by keyword
  • getToolInfo(name) - Get complete schemas with examples
  • Discovery in code - No extra tokens loaded into Claude's context!

Benefits:

  • โœ… Zero failed tool calls from discovery issues
  • โœ… Professional first-time user experience
  • โœ… Maintains 98% token reduction
  • โœ… Complete type information for all tools

๐ŸŽ‰ v2.0.0 - Revolutionary Code-First Architecture (November 18, 2025)

The Game Changer: 98% token reduction (70,000 โ†’ 800 tokens)!

New Architecture:

  • Single execute_code tool exposed to Claude
  • Write TypeScript code calling 112 tools on-demand
  • 95% faster initialization (45s โ†’ 2s)
  • 98% cost reduction ($1.05 โ†’ $0.01 per workflow)

Total Tools: 1 tool exposed to MCP clients (execute_code) ๐Ÿš€
Internal Tools: 61 GitHub tools available via execute_code
Token Efficiency: 98% reduction vs traditional MCP


๐Ÿ“ฆ Recently Shipped

v1.5.0 (Nov 6, 2025) - Infrastructure Upgrade

  • Repository-rooted operations & chunk reading
  • GraphQL optimization (80% faster PR queries)

View Full Changelog


Workspace Configuration

The workspace tools (workspace_grep, workspace_str_replace, workspace_read_file) enable powerful local file operations on YOUR projects.

What are Workspace Tools?

These tools allow Claude to:

  • ๐Ÿ” Search your codebase efficiently (workspace_grep)
  • โœ๏ธ Edit files with surgical precision (workspace_str_replace)
  • ๐Ÿ“– Read file chunks without loading entire files (workspace_read_file)

Setting Your Workspace Root

Method 1: Claude Desktop Configuration

Edit your Claude Desktop config file (location varies by OS):

macOS:

config.json
{
  "mcpServers": {
    "github-mcp": {
      "command": "python3",
      "args": ["-m", "github_mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_...",
        "MCP_WORKSPACE_ROOT": "/Users/yourname/projects/my-app"
      }
    }
  }
}

Windows:

config.json
{
  "mcpServers": {
    "github-mcp": {
      "command": "python",
      "args": ["-m", "github_mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_...",
        "MCP_WORKSPACE_ROOT": "C:\\Users\\yourname\\projects\\my-app"
      }
    }
  }
}

Linux:

config.json
{
  "mcpServers": {
    "github-mcp": {
      "command": "python3",
      "args": ["-m", "github_mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_...",
        "MCP_WORKSPACE_ROOT": "/home/yourname/projects/my-app"
      }
    }
  }
}

Method 2: Environment Variable

Read the full README โ†’View source on GitHub โ†’

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • Stripe AI logoStripe AI

    MCP server integrating with Stripe - tools for customers, products, payments, and more.

    ๐Ÿ’ฐ Finance & Fintech0 views
    Compare vs Stripe AI โ†’
  • Capsule logoCapsule

    Compact, source-linked context packs that reduce token waste for coding agents.

    ๐Ÿ’ฐ Finance & Fintech0 views
    Compare vs Capsule โ†’
  • AkTools MCP Server logoAkTools MCP Server

    ๆไพ›่‚ก็ฅจใ€ๅŠ ๅฏ†่ดงๅธ็š„ๆ•ฐๆฎๆŸฅ่ฏขๅ’Œๅˆ†ๆžๅŠŸ่ƒฝMCPๆœๅŠกๅ™จ

    ๐Ÿ’ฐ Finance & Fintech0 views
    Compare vs AkTools MCP Server โ†’
  • Agentrisk logoAgentrisk

    Pre-trade token risk scoring API for Base tokens, paid via x402.

    ๐Ÿ’ฐ Finance & Fintech1 views
    Compare vs Agentrisk โ†’

Reviews

No reviews yet โ€” be the first to share how this listing worked for you.

Frequently Asked Questions about Github MCP Server

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

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 PreviewGithub MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/github-mcp-server-2?style=directory)](https://allmcps.com/mcp/github-mcp-server-2)
HTML Embed
<a href="https://allmcps.com/mcp/github-mcp-server-2"><img src="https://allmcps.com/api/badge/github-mcp-server-2?style=directory" alt="Github MCP Server on AllMCPs" /></a>

Technical Specs & Signals

Category๐Ÿ’ฐFinance & Fintech
More technical detailsExpand โ–พ
TransportSSE (Remote)
RuntimeNode.js
Last updatedSep 7, 2026
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 stars4
GitHub Star CountTotal stargazers on GitHub representing community popularity (4 stars).
37Quality signal: Fair ยท 37/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 & tools16/30
Adoption & activity2/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 10,000+ 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 unlock edit access and the Official badge โ€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it โ€” no claim needed. We detect it automatically and keep it verified as long as the badge 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 ๐Ÿ’ฐ Finance & Fintech โ†’Best MCP servers for Finance & Fintech โ†’Alternatives to Github MCP Server โ†’Install in Claude DesktopInstall in CursorInstall in VS Code