Browse org repos · alias: mcp.list-org-repos
list_org_repos
List repositories for a GitHub org (mbarbine, process-co, ph3ar).
githubpublic readread
1. Fill the arguments
The schema is authoritative. Do not infer parameters from the alias.
{
"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"
]
}2. Call the canonical name
POST this JSON-RPC envelope to https://mcp.platphormnews.com/mcp.
{
"jsonrpc": "2.0",
"id": "call-1",
"method": "tools/call",
"params": {
"name": "list_org_repos",
"arguments": {}
}
}