GitHub issues
Create, update, query, and organize GitHub issues with MCP read tools and gh api write operations, including issue types, labels, milestones, sub-issues, dependencies, project fields, and image embeds.
When to invoke
- "Create an issue for this bug."
- "File a feature request in GitHub."
- "Update issue 123 and set the priority."
- "Add a blocked-by relationship between these issues."
- "Link this task to a milestone and project field."
Manage GitHub issues using the @modelcontextprotocol/server-github MCP server.
Available Tools
MCP Tools (read operations)
| Tool |
Purpose |
mcp__github__issue_read |
Read issue details, sub-issues, comments, labels (methods: get, get_comments, get_sub_issues, get_labels) |
mcp__github__list_issues |
List and filter repository issues by state, labels, date |
mcp__github__search_issues |
Search issues across repos using GitHub search syntax |
mcp__github__projects_list |
List projects, project fields, project items, status updates |
mcp__github__projects_get |
Get details of a project, field, item, or status update |
mcp__github__projects_write |
Add/update/delete project items, create status updates |
CLI / REST API (write operations)
The MCP server does not currently support creating, updating, or commenting on issues. Use gh api for these operations.
| Operation |
Command |
| Create issue |
gh api repos/{owner}/{repo}/issues -X POST -f title=... -f body=... |
| Update issue |
gh api repos/{owner}/{repo}/issues/{number} -X PATCH -f title=... -f state=... |
| Add comment |
gh api repos/{owner}/{repo}/issues/{number}/comments -X POST -f body=... |
| Close issue |
gh api repos/{owner}/{repo}/issues/{number} -X PATCH -f state=closed |
| Set issue type |
Include -f type=Bug in the create call (REST API only, not supported by gh issue create CLI) |
Note: gh issue create works for basic issue creation but does not support the --type flag. Use gh api when you need to set issue types.
Workflow
- Determine action: Create, update, or query?
- Gather context: Get repo info, existing labels, milestones if needed
- Structure content: Use appropriate template from references/templates.md
- Execute: Use MCP tools for reads,
gh api for writes
- Confirm: Report the issue URL to user
Creating Issues
Use gh api to create issues. This supports all parameters including issue types.
gh api repos/{owner}/{repo}/issues \
-X POST \
-f title="Issue title" \
-f body="Issue body in markdown" \
-f type="Bug" \
--jq '{number, html_url}'
Optional Parameters
Add any of these flags to the gh api call:
-f type="Bug" # Issue type (Bug, Feature, Task, Epic, etc.)
-f labels[]="bug" # Labels (repeat for multiple)
-f assignees[]="username" # Assignees (repeat for multiple)
-f milestone=1 # Milestone number
Issue types are organization-level metadata. To discover available types, use:
gh api graphql -f query='{ organization(login: "ORG") { issueTypes(first: 10) { nodes { name } } } }' --jq '.data.organization.issueTypes.nodes[].name'
Prefer issue types over labels for categorization. When issue types are available (e.g., Bug, Feature, Task), use the type parameter instead of applying equivalent labels like bug or enhancement. Issue types are the canonical way to categorize issues on GitHub. Only fall back to labels when the org has no issue types configured.
Title Guidelines
- Be specific and actionable
- Keep under 72 characters
- When issue types are set, don't add redundant prefixes like
[Bug]
- Examples:
Login fails with SSO enabled (with type=Bug)
Add dark mode support (with type=Feature)
Add unit tests for auth module (with type=Task)
Body Structure
Always use the templates in references/templates.md. Choose based on issue type:
| User Request |
Template |
| Bug, error, broken, not working |
Bug Report |
| Feature, enhancement, add, new |
Feature Request |
| Task, chore, refactor, update |
Task |
Updating Issues
Use gh api with PATCH:
gh api repos/{owner}/{repo}/issues/{number} \
-X PATCH \
-f state=closed \
-f title="Updated title" \
--jq '{number, html_url}'
Only include fields you want to change. Available fields: title, body, state (open/closed), labels, assignees, milestone.
Examples
Example 1: Bug Report
User: "Create a bug issue - the login page crashes when using SSO"
Action:
gh api repos/github/awesome-copilot/issues \
-X POST \
-f title="Login page crashes when using SSO" \
-f type="Bug" \
-f body="## Description
The login page crashes when users attempt to authenticate using SSO.
## Steps to Reproduce
1. Navigate to login page
2. Click 'Sign in with SSO'
3. Page crashes
## Expected Behavior
SSO authentication should complete and redirect to dashboard.
## Actual Behavior
Page becomes unresponsive and displays error." \
--jq '{number, html_url}'
Example 2: Feature Request
User: "Create a feature request for dark mode with high priority"
Action:
gh api repos/github/awesome-copilot/issues \
-X POST \
-f title="Add dark mode support" \
-f type="Feature" \
-f labels[]="high-priority" \
-f body="## Summary
Add dark mode theme option for improved user experience and accessibility.
## Motivation
- Reduces eye strain in low-light environments
- Increasingly expected by users
## Proposed Solution
Implement theme toggle with system preference detection.
## Acceptance Criteria
- [ ] Toggle switch in settings
- [ ] Persists user preference
- [ ] Respects system preference by default" \
--jq '{number, html_url}'
Common Labels
Use these standard labels when applicable:
| Label |
Use For |
bug |
Something isn't working |
enhancement |
New feature or improvement |
documentation |
Documentation updates |
good first issue |
Good for newcomers |
help wanted |
Extra attention needed |
question |
Further information requested |
wontfix |
Will not be addressed |
duplicate |
Already exists |
high-priority |
Urgent issues |
Tips
- Always confirm the repository context before creating issues
- Ask for missing critical information rather than guessing
- Link related issues when known:
Related to #123
- For updates, fetch current issue first to preserve unchanged fields
Extended Capabilities
The following features require REST or GraphQL APIs beyond the basic MCP tools. Each is documented in its own reference file so the agent only loads the knowledge it needs.
| Capability |
When to use |
Reference |
| Advanced search |
Complex queries with boolean logic, date ranges, cross-repo search, issue field filters (field.name:value) |
references/search.md |
| Sub-issues & parent issues |
Breaking work into hierarchical tasks |
references/sub-issues.md |
| Milestones |
Create, read, update, close, reopen, delete milestones and manage milestone issues |
references/milestones.md |
| Issue dependencies |
Tracking blocked-by / blocking relationships |
references/dependencies.md |
| Issue types (advanced) |
GraphQL operations beyond MCP list_issue_types / type param |
references/issue-types.md |
| Projects V2 |
Project boards, progress reports, field management |
references/projects.md |
| Issue fields |
Custom metadata: dates, priority, text, numbers (private preview) |
references/issue-fields.md |
| Images in issues |
Embedding images in issue bodies and comments via CLI |
references/images.md |
Progressive disclosure and bundled resources
references/templates.md: issue body templates for Bug Report, Feature Request, and Task.
references/search.md: advanced search syntax and issue field filters.
references/sub-issues.md: parent and sub-issue workflows.
references/milestones.md: milestone CRUD and issue assignment.
references/dependencies.md: blocked-by and blocking relationships.
references/issue-types.md: advanced issue type operations.
references/projects.md: Projects V2 field and board workflows.
references/issue-fields.md: custom metadata fields.
references/images.md: embedding images in issue bodies and comments.
Output template
## GitHub issue result
**Status:** created | updated | queried | blocked
**Repository:** `{{owner}}/{{repo}}`
**Issue:** `#{{number}}` {{html_url}}
### Changes
| Field | Value |
| --- | --- |
| Title | {{title}} |
| Type | {{type_or_none}} |
| Labels | {{labels_or_none}} |
| Assignees | {{assignees_or_none}} |
| Milestone | {{milestone_or_none}} |
### Commands or tools
- `{{mcp_read_tool_or_gh_api_command}}`
Quality gate
1---2name: github-issues3description: Create, update, and manage GitHub issues using MCP tools. Use this skill when users want to create bug reports, feature requests, or task issues, update existing issues, add labels/assignees/milestones, set issue fields (dates, priority, custom fields), set issue types, manage issue workflows, link issues, add dependencies, or track blocked-by/blocking relationships. Triggers on requests like "create an issue", "file a bug", "request a feature", "update issue X", "set the priority", "set the start date", "link issues", "add dependency", "blocked by", "blocking", or any GitHub issue management task.4---56<!-- Generated from harness/github-copilot/skills/github-issues/SKILL.md by harness/claude-code/scripts/convert_from_copilot.py. Edit the source, not this file. -->78# GitHub issues910Create, update, query, and organize GitHub issues with MCP read tools and `gh api` write operations, including issue types, labels, milestones, sub-issues, dependencies, project fields, and image embeds.1112## When to invoke1314- "Create an issue for this bug."15- "File a feature request in GitHub."16- "Update issue 123 and set the priority."17- "Add a blocked-by relationship between these issues."18- "Link this task to a milestone and project field."1920Manage GitHub issues using the `@modelcontextprotocol/server-github` MCP server.2122## Available Tools2324### MCP Tools (read operations)2526| Tool | Purpose |27|------|---------|28| `mcp__github__issue_read` | Read issue details, sub-issues, comments, labels (methods: get, get_comments, get_sub_issues, get_labels) |29| `mcp__github__list_issues` | List and filter repository issues by state, labels, date |30| `mcp__github__search_issues` | Search issues across repos using GitHub search syntax |31| `mcp__github__projects_list` | List projects, project fields, project items, status updates |32| `mcp__github__projects_get` | Get details of a project, field, item, or status update |33| `mcp__github__projects_write` | Add/update/delete project items, create status updates |3435### CLI / REST API (write operations)3637The MCP server does not currently support creating, updating, or commenting on issues. Use `gh api` for these operations.3839| Operation | Command |40|-----------|---------|41| Create issue | `gh api repos/{owner}/{repo}/issues -X POST -f title=... -f body=...` |42| Update issue | `gh api repos/{owner}/{repo}/issues/{number} -X PATCH -f title=... -f state=...` |43| Add comment | `gh api repos/{owner}/{repo}/issues/{number}/comments -X POST -f body=...` |44| Close issue | `gh api repos/{owner}/{repo}/issues/{number} -X PATCH -f state=closed` |45| Set issue type | Include `-f type=Bug` in the create call (REST API only, not supported by `gh issue create` CLI) |4647**Note:** `gh issue create` works for basic issue creation but does **not** support the `--type` flag. Use `gh api` when you need to set issue types.4849## Workflow50511. **Determine action**: Create, update, or query?522. **Gather context**: Get repo info, existing labels, milestones if needed533. **Structure content**: Use appropriate template from [references/templates.md](references/templates.md)544. **Execute**: Use MCP tools for reads, `gh api` for writes555. **Confirm**: Report the issue URL to user5657## Creating Issues5859Use `gh api` to create issues. This supports all parameters including issue types.6061```bash62gh api repos/{owner}/{repo}/issues \63 -X POST \64 -f title="Issue title" \65 -f body="Issue body in markdown" \66 -f type="Bug" \67 --jq '{number, html_url}'68```6970### Optional Parameters7172Add any of these flags to the `gh api` call:7374```75-f type="Bug" # Issue type (Bug, Feature, Task, Epic, etc.)76-f labels[]="bug" # Labels (repeat for multiple)77-f assignees[]="username" # Assignees (repeat for multiple)78-f milestone=1 # Milestone number79```8081**Issue types** are organization-level metadata. To discover available types, use:82```bash83gh api graphql -f query='{ organization(login: "ORG") { issueTypes(first: 10) { nodes { name } } } }' --jq '.data.organization.issueTypes.nodes[].name'84```8586**Prefer issue types over labels for categorization.** When issue types are available (e.g., Bug, Feature, Task), use the `type` parameter instead of applying equivalent labels like `bug` or `enhancement`. Issue types are the canonical way to categorize issues on GitHub. Only fall back to labels when the org has no issue types configured.8788### Title Guidelines8990- Be specific and actionable91- Keep under 72 characters92- When issue types are set, don't add redundant prefixes like `[Bug]`93- Examples:94 - `Login fails with SSO enabled` (with type=Bug)95 - `Add dark mode support` (with type=Feature)96 - `Add unit tests for auth module` (with type=Task)9798### Body Structure99100Always use the templates in [references/templates.md](references/templates.md). Choose based on issue type:101102| User Request | Template |103|--------------|----------|104| Bug, error, broken, not working | Bug Report |105| Feature, enhancement, add, new | Feature Request |106| Task, chore, refactor, update | Task |107108## Updating Issues109110Use `gh api` with PATCH:111112```bash113gh api repos/{owner}/{repo}/issues/{number} \114 -X PATCH \115 -f state=closed \116 -f title="Updated title" \117 --jq '{number, html_url}'118```119120Only include fields you want to change. Available fields: `title`, `body`, `state` (open/closed), `labels`, `assignees`, `milestone`.121122## Examples123124### Example 1: Bug Report125126**User**: "Create a bug issue - the login page crashes when using SSO"127128**Action**: 129```bash130gh api repos/github/awesome-copilot/issues \131 -X POST \132 -f title="Login page crashes when using SSO" \133 -f type="Bug" \134 -f body="## Description135The login page crashes when users attempt to authenticate using SSO.136137## Steps to Reproduce1381. Navigate to login page1392. Click 'Sign in with SSO'1403. Page crashes141142## Expected Behavior143SSO authentication should complete and redirect to dashboard.144145## Actual Behavior146Page becomes unresponsive and displays error." \147 --jq '{number, html_url}'148```149150### Example 2: Feature Request151152**User**: "Create a feature request for dark mode with high priority"153154**Action**:155```bash156gh api repos/github/awesome-copilot/issues \157 -X POST \158 -f title="Add dark mode support" \159 -f type="Feature" \160 -f labels[]="high-priority" \161 -f body="## Summary162Add dark mode theme option for improved user experience and accessibility.163164## Motivation165- Reduces eye strain in low-light environments166- Increasingly expected by users167168## Proposed Solution169Implement theme toggle with system preference detection.170171## Acceptance Criteria172- [ ] Toggle switch in settings173- [ ] Persists user preference174- [ ] Respects system preference by default" \175 --jq '{number, html_url}'176```177178## Common Labels179180Use these standard labels when applicable:181182| Label | Use For |183|-------|---------|184| `bug` | Something isn't working |185| `enhancement` | New feature or improvement |186| `documentation` | Documentation updates |187| `good first issue` | Good for newcomers |188| `help wanted` | Extra attention needed |189| `question` | Further information requested |190| `wontfix` | Will not be addressed |191| `duplicate` | Already exists |192| `high-priority` | Urgent issues |193194## Tips195196- Always confirm the repository context before creating issues197- Ask for missing critical information rather than guessing198- Link related issues when known: `Related to #123`199- For updates, fetch current issue first to preserve unchanged fields200201## Extended Capabilities202203The following features require REST or GraphQL APIs beyond the basic MCP tools. Each is documented in its own reference file so the agent only loads the knowledge it needs.204205| Capability | When to use | Reference |206|------------|-------------|-----------|207| Advanced search | Complex queries with boolean logic, date ranges, cross-repo search, issue field filters (`field.name:value`) | [references/search.md](references/search.md) |208| Sub-issues & parent issues | Breaking work into hierarchical tasks | [references/sub-issues.md](references/sub-issues.md) |209| Milestones | Create, read, update, close, reopen, delete milestones and manage milestone issues | [references/milestones.md](references/milestones.md) |210| Issue dependencies | Tracking blocked-by / blocking relationships | [references/dependencies.md](references/dependencies.md) |211| Issue types (advanced) | GraphQL operations beyond MCP `list_issue_types` / `type` param | [references/issue-types.md](references/issue-types.md) |212| Projects V2 | Project boards, progress reports, field management | [references/projects.md](references/projects.md) |213| Issue fields | Custom metadata: dates, priority, text, numbers (private preview) | [references/issue-fields.md](references/issue-fields.md) |214| Images in issues | Embedding images in issue bodies and comments via CLI | [references/images.md](references/images.md) |215216## Progressive disclosure and bundled resources217218- `references/templates.md`: issue body templates for Bug Report, Feature Request, and Task.219- `references/search.md`: advanced search syntax and issue field filters.220- `references/sub-issues.md`: parent and sub-issue workflows.221- `references/milestones.md`: milestone CRUD and issue assignment.222- `references/dependencies.md`: blocked-by and blocking relationships.223- `references/issue-types.md`: advanced issue type operations.224- `references/projects.md`: Projects V2 field and board workflows.225- `references/issue-fields.md`: custom metadata fields.226- `references/images.md`: embedding images in issue bodies and comments.227228## Output template229230```markdown231## GitHub issue result232233**Status:** created | updated | queried | blocked234**Repository:** `{{owner}}/{{repo}}`235**Issue:** `#{{number}}` {{html_url}}236237### Changes238| Field | Value |239| --- | --- |240| Title | {{title}} |241| Type | {{type_or_none}} |242| Labels | {{labels_or_none}} |243| Assignees | {{assignees_or_none}} |244| Milestone | {{milestone_or_none}} |245246### Commands or tools247- `{{mcp_read_tool_or_gh_api_command}}`248```249250## Quality gate251252- [ ] Repository context is confirmed before creating or updating an issue.253- [ ] Issue content uses the matching template from `references/templates.md`.254- [ ] Issue types are preferred over redundant categorization labels when available.255- [ ] `gh api` is used for writes that require unsupported `gh issue create` fields such as `type`.256- [ ] The final response includes the issue number and URL or a clear blocker.