get-repo-info
Retrieve detailed information about a GitHub repository, including owner and repository name, using the GitHub MCP Server for efficient API interactions.
Instructions
Get information about a specific GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}