mcp-git-ingest

github_directory_structure

Clone a GitHub repository and return its directory structure in a tree format. Args: repo_url: The URL of the GitHub repository Returns: A string representation of the repository's directory structure

Input Schema

NameRequiredDescriptionDefault
repo_urlYes

Input Schema (JSON Schema)

{ "properties": { "repo_url": { "title": "Repo Url", "type": "string" } }, "required": [ "repo_url" ], "title": "github_directory_structureArguments", "type": "object" }