Files
Sam Morrow 776ddaefcc Update toolsnaps for cursor-based pagination
Update all tool snapshots to reflect the new cursor parameter
replacing page/perPage parameters.
2025-11-05 11:51:02 +01:00

41 lines
1.2 KiB
Plaintext

{
"annotations": {
"title": "Search users",
"readOnlyHint": true
},
"description": "Find GitHub users by username, real name, or other profile information. Useful for locating developers, contributors, or team members.",
"inputSchema": {
"properties": {
"cursor": {
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
"type": "string"
},
"order": {
"description": "Sort order",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"query": {
"description": "User search query. Examples: 'john smith', 'location:seattle', 'followers:\u003e100'. Search is automatically scoped to type:user.",
"type": "string"
},
"sort": {
"description": "Sort users by number of followers or repositories, or when the person joined GitHub.",
"enum": [
"followers",
"repositories",
"joined"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"name": "search_users"
}