GitHub Support Assistant

find-similar-issues

Find GitHub issues similar to a new issue description

Input Schema

NameRequiredDescriptionDefault
issueDescriptionYesDescription of the issue to find similar ones for
maxResultsNoMaximum number of similar issues to return
ownerYesGitHub repository owner/organization
repoYesGitHub repository name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "issueDescription": { "description": "Description of the issue to find similar ones for", "type": "string" }, "maxResults": { "default": 5, "description": "Maximum number of similar issues to return", "maximum": 20, "minimum": 1, "type": "integer" }, "owner": { "description": "GitHub repository owner/organization", "type": "string" }, "repo": { "description": "GitHub repository name", "type": "string" } }, "required": [ "owner", "repo", "issueDescription" ], "type": "object" }

You must be authenticated.

Other Tools