MCP Git Repo Browser

by razorback16
Verified

git_read_important_files

Read the contents of specified files in a given git repository.

Input Schema

NameRequiredDescriptionDefault
file_pathsYesList of file paths to read (relative to repository root)
repo_urlYesThe URL of the Git repository

Input Schema (JSON Schema)

{ "properties": { "file_paths": { "description": "List of file paths to read (relative to repository root)", "items": { "type": "string" }, "type": "array" }, "repo_url": { "description": "The URL of the Git repository", "type": "string" } }, "required": [ "repo_url", "file_paths" ], "type": "object" }