get_repository_info
Retrieve status and metadata for indexed repositories on GitHub or GitLab to monitor indexing progress and access repository details.
Instructions
Get information about an indexed repository including status and metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | Yes | Branch that was indexed | |
remote | Yes | Repository host | |
repository | Yes | Repository in owner/repo format |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"description": "Branch that was indexed",
"type": "string"
},
"remote": {
"description": "Repository host",
"enum": [
"github",
"gitlab"
],
"type": "string"
},
"repository": {
"description": "Repository in owner/repo format",
"type": "string"
}
},
"required": [
"remote",
"repository",
"branch"
],
"type": "object"
}