get_repository_info
Retrieve detailed GitHub repository information using owner and repository name. Integrated into Multi-MCPs, it streamlines access to repository data alongside other popular APIs in a unified interface.
Instructions
Get GitHub repository details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"type": "string"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}