search-repos
Find GitHub repositories using specific queries, sort results by stars, forks, or activity, and limit output for precise results.
Instructions
Search for GitHub repositories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return | |
query | Yes | Search query | |
sort | No | Sort order |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
},
"sort": {
"description": "Sort order",
"enum": [
"stars",
"forks",
"help-wanted-issues",
"updated"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}