search_repositories
Search GitHub repositories using specific parameters like query, page, and results per page. Retrieve a structured MCP response with matching repositories for efficient GitHub data management with PyGithub.
Instructions
Search for GitHub repositories.
Args:
params: Dictionary with search parameters
- query: Search query
- page: Page number for pagination (optional)
- per_page: Results per page (optional)
Returns:
MCP response with matching repositories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"title": "Params",
"type": "object"
}
},
"required": [
"params"
],
"title": "search_repositoriesArguments",
"type": "object"
}