Get Repo
get_repoLook up ONE named repository by its owner/repo slug — "facebook/react", "torvalds/linux", "vercel/next.js". Use this whenever the repository is named in the question. Answers how many stars / forks / watchers a repo has, what license and language it uses, its topics, description, open issue count, and when it was last pushed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | Repository name, e.g. "react". Also accepts the full slug "facebook/react". | |
| owner | No | Repository owner (user or org), e.g. "facebook". May be omitted if `repo` carries the full "owner/repo" slug. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Repository URL | |
| name | Yes | Repository name | |
| forks | Yes | Number of forks | |
| owner | Yes | Repository owner login | |
| stars | Yes | Number of stargazers | |
| topics | Yes | Repository topics/tags | |
| is_fork | Yes | Whether the repository is a fork | |
| license | Yes | License SPDX ID or name | |
| network | Yes | Network count | |
| size_kb | Yes | Repository size in kilobytes | |
| archived | Yes | Whether the repository is archived | |
| homepage | Yes | Homepage URL | |
| language | Yes | Primary programming language | |
| watchers | Yes | Number of watchers | |
| full_name | Yes | Full repository name (owner/repo) | |
| pushed_at | Yes | Last push timestamp | |
| created_at | Yes | Repository creation timestamp | |
| owner_type | Yes | Owner type (User/Organization) | |
| updated_at | Yes | Last update timestamp | |
| visibility | Yes | Repository visibility (public/private) | |
| description | Yes | Repository description | |
| open_issues | Yes | Number of open issues | |
| subscribers | Yes | Number of subscribers | |
| default_branch | Yes | Default branch name |