60aef5d2e3
Move from `mark3labs/mcp-go` to `modelcontextprotocol/go-sdk`. This is mostly focused on updating tool schema and tool handler signatures, along with any associated internal changes related to those changes. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: omgitsads <4619+omgitsads@users.noreply.github.com> Co-authored-by: LuluBeatson <lulubeatson@github.com> Co-authored-by: Lulu <59149422+LuluBeatson@users.noreply.github.com> Co-authored-by: SamMorrowDrums <4811358+SamMorrowDrums@users.noreply.github.com> Co-authored-by: Sam Morrow <info@sam-morrow.com>
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
{
|
|
"annotations": {
|
|
"readOnlyHint": true,
|
|
"title": "Search issues"
|
|
},
|
|
"description": "Search for issues in GitHub repositories using issues search syntax already scoped to is:issue",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"required": [
|
|
"query"
|
|
],
|
|
"properties": {
|
|
"order": {
|
|
"type": "string",
|
|
"description": "Sort order",
|
|
"enum": [
|
|
"asc",
|
|
"desc"
|
|
]
|
|
},
|
|
"owner": {
|
|
"type": "string",
|
|
"description": "Optional repository owner. If provided with repo, only issues for this repository are listed."
|
|
},
|
|
"page": {
|
|
"type": "number",
|
|
"description": "Page number for pagination (min 1)",
|
|
"minimum": 1
|
|
},
|
|
"perPage": {
|
|
"type": "number",
|
|
"description": "Results per page for pagination (min 1, max 100)",
|
|
"minimum": 1,
|
|
"maximum": 100
|
|
},
|
|
"query": {
|
|
"type": "string",
|
|
"description": "Search query using GitHub issues search syntax"
|
|
},
|
|
"repo": {
|
|
"type": "string",
|
|
"description": "Optional repository name. If provided with owner, only issues for this repository are listed."
|
|
},
|
|
"sort": {
|
|
"type": "string",
|
|
"description": "Sort field by number of matches of categories, defaults to best match",
|
|
"enum": [
|
|
"comments",
|
|
"reactions",
|
|
"reactions-+1",
|
|
"reactions--1",
|
|
"reactions-smile",
|
|
"reactions-thinking_face",
|
|
"reactions-heart",
|
|
"reactions-tada",
|
|
"interactions",
|
|
"created",
|
|
"updated"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"name": "search_issues"
|
|
} |