GitHub MCP Server Plus

search_users

Search for users on GitHub

Input Schema

NameRequiredDescriptionDefault
orderNo
pageNo
per_pageNo
qYes
sortNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "order": { "enum": [ "asc", "desc" ], "type": "string" }, "page": { "minimum": 1, "type": "number" }, "per_page": { "maximum": 100, "minimum": 1, "type": "number" }, "q": { "type": "string" }, "sort": { "enum": [ "followers", "repositories", "joined" ], "type": "string" } }, "required": [ "q" ], "type": "object" }