GitHub MCP Server

search_code

Search for code across GitHub repositories

Input Schema

NameRequiredDescriptionDefault
orderNoSort order (asc or desc)
pageNoPage number
per_pageNoResults per page (max 100)
qYesSearch query. See GitHub code search syntax: https://docs.github.com/en/search-github/searching-on-github/searching-code

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "order": { "description": "Sort order (asc or desc)", "enum": [ "asc", "desc" ], "type": "string" }, "page": { "description": "Page number", "minimum": 1, "type": "number" }, "per_page": { "description": "Results per page (max 100)", "maximum": 100, "minimum": 1, "type": "number" }, "q": { "description": "Search query. See GitHub code search syntax: https://docs.github.com/en/search-github/searching-on-github/searching-code", "type": "string" } }, "required": [ "q" ], "type": "object" }