mcp-git-ingest

github_read_important_files

Clone a GitHub repository and read the contents of specified files. Args: repo_url: The URL of the GitHub repository file_paths: List of file paths to read (relative to repository root) Returns: A dictionary mapping file paths to their contents

Input Schema

NameRequiredDescriptionDefault
file_pathsYes
repo_urlYes

Input Schema (JSON Schema)

{ "properties": { "file_paths": { "items": { "type": "string" }, "title": "File Paths", "type": "array" }, "repo_url": { "title": "Repo Url", "type": "string" } }, "required": [ "repo_url", "file_paths" ], "title": "github_read_important_filesArguments", "type": "object" }