Get repo details · alias: mcp.get-repo-details
get_repo_details
Get detailed info about a specific repo including README, languages, contributors.
githubpublic readread
1. Fill the arguments
The schema is authoritative. Do not infer parameters from the alias.
{
"type": "object",
"properties": {
"owner": {
"type": "string",
"description": "Repo owner"
},
"repo": {
"type": "string",
"description": "Repo name"
},
"include_readme": {
"type": "boolean"
},
"include_contributors": {
"type": "boolean"
}
},
"required": [
"owner",
"repo"
]
}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": "get_repo_details",
"arguments": {}
}
}