GitHub
search_users
Find GitHub users by username, real name, or other profile information. Useful for locating developers, contributors, or team members.
Remote github
Other tools also called search_users?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"page": {
"type": "number",
"minimum": 1,
"description": "Page number for pagination (min 1)"
},
"sort": {
"enum": [
"followers",
"repositories",
"joined"
],
"type": "string",
"description": "Sort users by number of followers or repositories, or when the person joined GitHub."
},
"order": {
"enum": [
"asc",
"desc"
],
"type": "string",
"description": "Sort order"
},
"query": {
"type": "string",
"description": "User search query. Examples: 'john smith', 'location:seattle', 'followers:>100'. Search is automatically scoped to type:user."
},
"perPage": {
"type": "number",
"maximum": 100,
"minimum": 1,
"description": "Results per page for pagination (min 1, max 100)"
}
}
}