list_repositories
Retrieve all GitHub repositories accessible to the authenticated user, including owned, collaborative, and organizational repositories for activity analysis.
Instructions
Return all repositories accessible by the authenticated GitHub user.
Includes repositories where the user is an owner, collaborator, or organisation member.
Returns:
A dict with key "repositories" containing a list of objects, each
with full_name, name, owner, private, and
default_branch fields.
Example return value::
{
"repositories": [
{
"full_name": "octocat/Hello-World",
"name": "Hello-World",
"owner": "octocat",
"private": false,
"default_branch": "main"
}
]
}Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||