Git Repository Browser
STDIONode.js implementation of Git repository browser using Model Context Protocol.
Node.js implementation of Git repository browser using Model Context Protocol.
A Node.js implementation of a Git repository browser using the Model Context Protocol (MCP).
Add this to your MCP settings configuration file:
{ "mcpServers": { "mcp-git-repo-browser": { "command": "node", "args": ["/path/to/mcp-git-repo-browser/src/index.js"] } } }
The server provides two main tools:
git_directory_structure
: Returns a tree-like representation of a repository's directory structure
git_read_important_files
: Reads and returns the contents of specified files in a repository
git clone <repository-url> cd mcp-git-repo-browser npm install
Start the server:
node src/index.js
The server runs on stdio, making it compatible with MCP clients.
MIT License - see the LICENSE file for details.