getRepoAllDirectories
Browse and retrieve a complete list of directories within a GitHub repository by providing its URL. Simplify repository exploration for AI assistants with this tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repoUrl | Yes | The URL of the Github repo |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"repoUrl": {
"description": "The URL of the Github repo",
"format": "uri",
"type": "string"
}
},
"required": [
"repoUrl"
],
"type": "object"
}