list_org_repos
List repositories for a GitHub org (mbarbine, process-co, ph3ar).
Schema and Policy
{
"name": "list_org_repos",
"description": "List repositories for a GitHub org (mbarbine, process-co, ph3ar).",
"inputSchema": {
"type": "object",
"properties": {
"org": {
"type": "string",
"enum": [
"mbarbine",
"process-co",
"ph3ar"
],
"description": "GitHub org"
},
"sort": {
"type": "string",
"enum": [
"updated",
"created",
"pushed",
"full_name"
]
},
"per_page": {
"type": "number"
},
"page": {
"type": "number"
},
"include_archived": {
"type": "boolean"
}
},
"required": [
"org"
]
},
"category": "GitHub",
"authRequired": false,
"mutability": "read",
"status": "active"
}