GitHub MCP (Model Context Protocol) server

GitHub MCP (Model Context Protocol) server

An MCP server that enables Claude and other compatible LLMs to interact with the GitHub API, supporting features like creating issues, retrieving repository information, listing issues, and searching repositories.

ualUsham

Developer Tools
Visit Server

README

GitHub MCP (Model Context Protocol) server

Hello! This is a GitHub MCP server designed to enable MCP-compatible LLMs, such as Claude, to communicate with my MCP server and interact with the GitHub API.

Requirements

  • TypeScript (programming language)
  • Octokit (for making API requests to GitHub)
  • Model Context Protocol SDK

Setup the project locally

  1. Clone the repository
  2. Run npm install
  3. Add .env file looking at the sample provided in .env.example file
  4. To build the TypeScript files to Javascript, run npx tsc
  5. To finally run the project, run node build/index.js

Ways to test

You can test your MCP server in 2 ways:

  • MCP inspector
  • Claude Desktop

Test using MCP inspector

  1. Simply run npx @modelcontextprotocol/inspector node build/index.js in the terminal
  2. Go to http://localhost:5173
  3. You can now see the MCP inspector and test.

Test using Claude Desktop

  1. Download and install Claude Desktop from here
  2. Go to File > Settings... > Developer > Edit Config
  3. It should open up the location of claude_desktop_config.json file.
  4. Open that file in your code editor and add the following:
    {
     "mcpServers": {
       "gh": {
         "command": "node",
         "args": ["absolute\\path\\to\\your\\index.js\\file"],
         "env": {
           "GITHUB_TOKEN": "your-github-personal-access-token"
         }
       }
     }
    }
    
  5. Exit and reopen Claude desktop

Functionalities

The MCP supports mainly two features:

  • Tools (4)
    • create-issue: create a new issue in a GitHub repository
    • get-repo-info: get information about a specific GitHub repository
    • list-issues: list issues in a GitHub repository
    • search-repos: Search for GitHub repositories
  • Prompts (5)
    • create-issue-description: generate a description for a GitHub issue
    • create-pull-request-description: generate a description for a GitHub pull request
    • search-repos-prompt: generate a query for searching GitHub repositories
    • create-issue-prompt: generate parameters for creating a GitHub issue
    • enhance-github-response: format and enhance raw GitHub API response data

You can write your own prompts or select a suitable prompt from the dropdown in the "Choose an integration" option for MCP in Claude desktop

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python