MCP GitHub Issue Server

MCP GitHub Issue Server

An MCP server that provides LLMs with the ability to use GitHub issues as the task to complete. This server allows LLMs to fetch GitHub issue details and use them as task descriptions.

Installation

npx -y mcp-github-issue

Usage

As an MCP Server

Add to your MCP configuration:

{ "mcpServers": { "github-issue": { "command": "npx", "args": ["-y", "mcp-github-issue"] } } }

Available Tools

get_issue_task

Fetches GitHub issue details to use as a task.

Input Schema:

{ "type": "object", "properties": { "url": { "type": "string", "description": "GitHub issue URL (https://github.com/owner/repo/issues/number)" } }, "required": ["url"] }

Example Usage:

<use_mcp_tool> <server_name>github-issue</server_name> <tool_name>get_issue_task</tool_name> <arguments> { "url": "https://github.com/owner/repo/issues/123" } </arguments> </use_mcp_tool>

Response Format:

{ "task": { "title": "Issue Title", "description": "Issue Description/Body", "source": "https://github.com/owner/repo/issues/123" } }

Features

  • Fetches GitHub issue details from public repositories
  • No authentication required for public repositories
  • Returns structured task data including title, description, and source URL
  • Compatible with the Model Context Protocol (MCP)

Development

# Install dependencies npm install # Build the project npm run build # Run the server locally npm run serve # Format code npm run format # Run MCP inspector npm run inspector

License

MIT

Author

Sam McLeod (https://smcleod.net)

A
security – no known vulnerabilities (report Issue)
A
license - permissive license (MIT License)
A
quality - confirmed to work

Enables LLMs to interact with GitHub issues by providing details as tasks, allowing for seamless integration and task management through GitHub's platform.

  1. Installation
    1. Usage
      1. As an MCP Server
        1. Available Tools
          1. get_issue_task
        2. Features
          1. Development
            1. License
              1. Author