github-triage-mcp
Provides GitHub issue triage capabilities, including determining whose turn it is on each issue, generating Markdown triage reports, retrieving full issue threads, searching issues, and finding linked issues and pull requests.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@github-triage-mcpwhat needs me right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
github-triage-mcp
An MCP server that answers "what needs me right now?" across your GitHub issues, and returns the answer as Markdown that is already formatted.
Why
gh issue list can tell you which issues are open and who they are assigned
to. It cannot tell you the thing you actually want to know, which is whose
turn it is — that needs the author of the most recent comment compared
against the assignee. So you end up asking an assistant to work it out, and
explaining the grouping you want, again, every time.
This server does that comparison and ships the formatting with it. The report comes out the same shape whether you asked for "what's on my plate" or "정리해 줘".
Related MCP server: mcp-github-issues
What you get
**12 open issues** involving `you` in `acme`
## 🔴 Your turn (3)
<sub>assigned to you and nothing is blocking them</sub>
| Issue | Repo | Type | Title | Last word | Idle |
|---|---|---|---|---|---|
| #412 | api | bug | retry budget is consumed before the first… | reviewer | 13d |
| #398 | api | perf | stale scan takes 71% of the time budget | opened by you | 9d |
| #77 | web | — | dark mode flashes on first paint | teammate | 2d |
## 🟡 Waiting on others (6)
## 🟠 You were pulled in (1)
## ⚪ Unassigned (2)
> Longest untouched on your side: #412 — 13d.
> No reply for 35d on #301 — worth chasing.Issues are bucketed by whose turn it is, then ordered longest-idle first inside each bucket, because the thing that has sat untouched longest is the thing most likely to have been forgotten.
[feat] / [bug] / [chore] title prefixes are lifted into their own column.
On repositories that use title prefixes rather than labels — which is most of
them — that is the real taxonomy.
Requirements
Node.js 18+
The GitHub CLI (
gh), authenticated:gh auth login
Everything goes through gh, so this server never stores a token of its own and
works with GitHub Enterprise wherever gh does.
Install
claude mcp add --scope user github-triage -- npx -y github-triage-mcpgit clone https://github.com/yangchoi/github-triage-mcp.git
cd github-triage-mcp
npm install && npm run build
claude mcp add --scope user github-triage -- node /absolute/path/to/dist/index.jsScope
Without configuration the search covers every repository you can see, which is slow and noisy. Narrow it:
Variable | Example | Effect |
|
| Only these repositories. |
|
| The whole organisation. |
GITHUB_TRIAGE_REPOS wins when both are set, and the repos argument on a
call overrides both.
Tools
Tool | Arguments | Purpose |
|
| The report above. Start here. |
|
| One thread in full — body and every comment, untrimmed. |
|
| GitHub search syntax, scope added automatically. |
|
| Cross-referenced issues and the PRs that close them. |
get_issue deliberately does not trim. Issue threads are often where the design
actually lives — a single comment can run to several thousand characters of
specification — and a summary of a summary loses the specifics that matter.
The digest_issue prompt
An MCP server has no language model inside it, and Claude Code does not support sampling (where a server can ask its client to run a completion). So the server does not summarise.
It does something better suited to it: it owns the instruction. The
digest_issue prompt tells the model reading the thread to report what was
decided, what is still open, and what happens next — with a fixed set of
headings, and an instruction not to invent a next step the thread never agreed
on. The summarising is done by the model that already has your conversation and
your project history; the shape of it comes from here.
Tests
npm testThe suite covers the turn-taking rules, ordering, Markdown rendering, the tool and prompt surface, and the failure modes — all against fixtures and the built server, with no network access and no GitHub account needed.
License
MIT
Available Tools
4 toolsget_issueA
The full text of one issue: body and every comment, untrimmed. Use after triage or search_issues when a thread needs to be read or summarised.
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository as "owner/name" | |
| number | Yes | Issue number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does disclose a key behavioral trait: the content is 'untrimmed' and includes 'every comment,' which hints at completeness and potential payload size. However, it does not explicitly state that the tool is read-only, nor does it mention authentication, rate limits, or lack of side effects. The phrase 'when a thread needs to be read' implies read-only, but this is not a direct disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The first sentence front-loads the core behavior (full untrimmed issue text), and the second provides actionable usage context. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with two parameters and no output schema, the description is nearly complete: it states the return content, the usage context, and the schema fully documents the parameters. Minor gaps are the lack of explicit error conditions and exact output structure, but these are unlikely to mislead an agent deciding to call this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% — both `repo` and `number` are already described in the input schema with clear formats ('owner/name' and 'Issue number'). The description adds no additional parameter-level meaning, so it correctly sits at the baseline for full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states exactly what the tool returns: 'The full text of one issue: body and every comment, untrimmed.' This clearly identifies the resource and scope, and distinguishes it from siblings like `triage` and `search_issues`, which are presumably summary/list tools. An agent can tell this tool apart without opening the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent when to use it: 'Use after `triage` or `search_issues` when a thread needs to be read or summarised.' This gives a clear workflow context and names the alternatives, satisfying the when/when-not guidance with no inference needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
linked_issuesA
Issues and pull requests cross-referenced from an issue, and ones that reference it back. Use to find the PR that implements an issue, or the sibling issue a discussion moved to.
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository as "owner/name" | |
| number | Yes | Issue number |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. It explains the bidirectional nature of the cross-references ('from an issue, and ones that reference it back'), which is useful. However, it does not disclose return format, pagination, or whether the result is a list vs. a single object, leaving some behavioral ambiguity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The core behavior is front-loaded, and the use cases are given in the second sentence. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-style tool with two fully documented parameters and no output schema, the description covers the essential context: what the tool returns and why an agent would use it. It could mention that the result is a list or that it may be empty, but that is a minor gap given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters (repo as 'owner/name' and number as issue number). The description adds the context that 'number' is the issue whose linked items are being retrieved, but it does not add meaning beyond the schema's own descriptions. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('find') and resource ('issues and pull requests cross-referenced from an issue, and ones that reference it back'), and it names two concrete use cases: finding the PR that implements an issue, or the sibling issue a discussion moved to. This clearly distinguishes it from siblings like get_issue (single issue) and search_issues (query-based search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use cases ('Use to find the PR that implements an issue, or the sibling issue a discussion moved to'), which tells an agent when to invoke it. It does not explicitly state when not to use it or name alternatives, but the use cases are specific enough to route correctly against the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_issuesB
Search issues with GitHub search syntax. The configured scope is added automatically unless repos is given.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 20) | |
| query | Yes | Search terms, e.g. "season overlap" or "label:bug" | |
| repos | No | Override the configured scope | |
| state | No | Default open |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses scope handling but omits return format, pagination, authentication needs, or rate limits—important behavioral context for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single well-formed sentence that front-loads the purpose and adds a crucial scope caveat. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is too sparse for a tool with no output schema and no annotations. It does not explain what results look like, how defaults apply, or provide sufficient usage context for an agent to call it correctly beyond basic syntax.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds meaningful parameter context: it explains that 'repos' overrides the configured scope, and 'GitHub search syntax' enriches the query parameter beyond schema examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches issues using GitHub search syntax, giving a specific verb and resource. It does not explicitly contrast with siblings like get_issue or linked_issues, but the search intent is evident and distinct enough.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives. The note about automatic scope addition explains behavior but does not help an agent decide between search_issues, get_issue, or linked_issues.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
triageA
Open issues that involve you, sorted by whose turn it is: waiting on you, waiting on someone else, pulled in, unassigned. Returns a ready-to-read Markdown report — relay it as-is rather than rewriting it. Start here when asked what needs attention.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max issues (default 60) | |
| repos | No | Override the configured scope, e.g. ["owner/name"]. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden: it discloses the Markdown report format, instructs the agent to relay it verbatim instead of rewriting, and reveals the sorting behavior through the four categories. It does not state whether the operation is read-only or whether it uses authenticated user context, but the word 'open issues that involve you' strongly implies a personal read-scoped query.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: first defines the resource and sorting, second tells the agent how to handle the output, and third gives the entry-point directive. No wasted filler or repeated schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-required-parameter report tool, this is complete: it tells the agent what scope it covers, how results are organized, what the output format is, and what to do with that output. Parameter details are handled by the schema, so nothing essential is missing for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes both parameters fully: limit with a default of 60 and repos as an override of the configured scope. The description adds no semantics beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a distinct resource ('Open issues that involve you') and a specific presentation ('sorted by whose turn it is'), so a reader knows exactly what the tool returns. It does not explicitly contrast with siblings like search_issues or get_issue, but the personal-scope and turn-taking organization make the difference clear without that contrast.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
'Start here when asked what needs attention' is an explicit when-to-use signal. The description also clarifies scope ('issues that involve you') and how to handle output, but it does not state when not to use it or name alternative tools for other cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v0.1.0- First observed
get_issue - First observed
linked_issues - First observed
search_issues - First observed
triage
TDQS
Scored across 4 tools
Each tool serves a distinct purpose: triage provides an overview, get_issue retrieves full thread content, search_issues queries by syntax, and linked_issues discovers cross-references. There is no overlap or ambiguity between them.
get_issue and search_issues follow a clear verb_noun pattern, but triage is a bare imperative and linked_issues is a descriptive noun phrase rather than an action. The mixed conventions are still readable, but not fully consistent.
Four tools is exactly right for a focused triage server. Each tool covers a necessary step in the triage workflow without redundancy or bloat.
The tool surface covers the complete read-only triage workflow: get an overview, drill into full details, search, and trace relationships between issues and PRs. No obvious gaps exist for the stated purpose.
Maintenance
Related MCP Connectors
Manage repositories, users, releases, and automate GitHub workflows
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
- ShipstarOAuthai.shipstar
Generate changelogs, release emails, help-center articles, banners, and social posts from commits.
Related MCP Servers
- AlicenseAqualityDmaintenanceGenerates daily standup drafts from your actual GitHub, Jira, Linear, and Slack activity, grouping work items and detecting blockers.524 npmMIT
- FlicenseAqualityDmaintenanceEnables LLMs to list, create, and comment on GitHub issues using your own GitHub identity via stdio transport.3-
- AlicenseAqualityCmaintenanceGenerates engineering intelligence reports (standups, weekly summaries, sprint retrospectives) from GitHub and Jira data, accessible via MCP clients or CLI.104 npmMIT
- AlicenseAqualityBmaintenanceEnables triage of GitHub issues by fetching and filtering issues, checking claim status, and listing new open issues across a watch-list.4MIT