GitHub Issue MCP Server

Enables LLMs to utilize GitHub issues as tasks by fetching issue details.

Local serverstdioTypeScript 14

What is the GitHub Issue MCP server?

Enables LLMs to utilize GitHub issues as tasks by fetching issue details. The github issue mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 1 defined tool rather than through you.

What it actually does

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.

  • 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)

Its toolset

Everything the assistant can do here goes through one of these:

  • get_issue_task — The get_issue_task tool exposed by this server

Adding it to your client

mcp-github-issue on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

When to reach for it

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. GitHub Issue's toolset — get_issue_task — is a fair guide to whether it matches your workflow. It is maintained by sammcj; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the github issue mcp server does with a few real requests.

Available tools

ToolWhat it does
get_issue_taskThe get_issue_task tool exposed by this server.

How to install the GitHub Issue MCP server

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

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use GitHub Issue to get issue task.

Frequently asked questions

The tool returns structured task data including the issue's title, description/body, and the URL of the issue.