Skip to main content
Glama
razorback16

MCP Git Repo Browser

by razorback16

MCP Git Repo 浏览器 (Node.js)

使用模型上下文协议 (MCP) 的 Git 存储库浏览器的 Node.js 实现。

配置

将其添加到您的 MCP 设置配置文件中:

{
    "mcpServers": {
        "mcp-git-repo-browser": {
            "command": "node",
            "args": ["/path/to/mcp-git-repo-browser/src/index.js"]
        }
    }
}

Related MCP server: Git Repo Browser MCP

特征

该服务器提供两个主要工具:

  1. git_directory_structure :返回存储库目录结构的树状表示

    • 输入:存储库 URL

    • 输出:存储库结构的 ASCII 树表示

  2. git_read_important_files :读取并返回存储库中指定文件的内容

    • 输入:存储库 URL 和文件路径列表

    • 输出:将文件路径映射到其内容的字典

实现细节

  • 使用 Node.js 原生模块(crypto、path、os)实现核心功能

  • 利用 fs-extra 增强文件操作

  • 使用 simple-git 进行 Git 存储库操作

  • 实现干净的错误处理和资源清理

  • 根据存储库 URL 哈希创建确定性临时目录

  • 尽可能重复使用克隆的存储库以提高效率

要求

  • Node.js 14.x 或更高版本

  • 系统上安装的 Git

安装

git clone <repository-url>
cd mcp-git-repo-browser
npm install

用法

启动服务器:

node src/index.js

服务器在 stdio 上运行,使其与 MCP 客户端兼容。

执照

MIT 许可证 - 有关详细信息,请参阅LICENSE文件。

Available Tools

2 tools
git_directory_structureC

Clone a Git repository and return its directory structure in a tree format.

ParametersJSON Schema
NameRequiredDescriptionDefault
repo_urlYesThe URL of the Git repository

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions cloning and returning a tree structure but fails to detail critical aspects like whether it performs a full clone (which could be resource-intensive), how it handles errors (e.g., invalid URLs), authentication needs, rate limits, or the format of the returned tree. This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that efficiently conveys the core functionality without unnecessary words. It is front-loaded with the main action and outcome, making it easy to grasp quickly, and there is no wasted information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the returned tree format looks like, potential side effects of cloning, error handling, or performance considerations. Given the complexity of Git operations and the lack of structured data, more detail is needed to adequately inform an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with 'repo_url' clearly documented. The description adds minimal value beyond the schema by implying the URL is used for cloning, but it doesn't provide additional context such as supported URL formats (e.g., HTTPS vs. SSH) or examples. Given the high schema coverage, a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Clone a Git repository') and the outcome ('return its directory structure in a tree format'), making the purpose specific and understandable. However, it doesn't explicitly differentiate from the sibling tool 'git_read_important_files', which might have overlapping functionality, so it doesn't reach the highest score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'git_read_important_files' or other Git-related operations. It lacks context on prerequisites, such as needing network access or Git installed, and doesn't specify any exclusions or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

git_read_important_filesC

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

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

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions reading file contents but doesn't specify important behaviors like error handling (e.g., what happens if files don't exist), authentication requirements, rate limits, or output format. This leaves significant gaps for a tool that interacts with external repositories.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that efficiently conveys the core functionality without unnecessary words. It's front-loaded with the essential action and resource, making it easy for an agent to parse quickly. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of interacting with git repositories (external systems, potential errors, authentication), the description is incomplete. With no annotations and no output schema, it fails to address critical aspects like return values, error conditions, or security requirements, leaving the agent under-informed for safe and effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents both parameters thoroughly. The description adds no additional semantic context beyond what's in the schema (e.g., it doesn't clarify path conventions or URL formats), resulting in the baseline score of 3 for adequate but non-enhancing parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Read the contents') and resource ('specified files in a given git repository'), making the purpose immediately understandable. It doesn't differentiate from the sibling tool 'git_directory_structure', which appears to serve a different purpose (listing structure vs reading file contents), so it earns a 4 rather than a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives or any contextual prerequisites. It simply states what the tool does without indicating scenarios where it's appropriate or inappropriate, leaving the agent to infer usage from the tool name and parameters alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updatesv1.0.0
    • Addedgit_directory_structure
    • Addedgit_read_important_files

TDQS

B3.1/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one clones a repository and returns its directory structure, while the other reads the contents of specified files. There is no overlap or ambiguity between these operations, making it easy for an agent to select the correct tool.

Naming Consistency5/5

Both tools follow a consistent 'git_verb_adjective_noun' pattern (git_directory_structure and git_read_important_files). This naming convention is predictable and readable throughout the set, with no deviations or mixed styles.

Tool Count2/5

With only 2 tools, the server feels thin for a 'Git Repo Browser' purpose. While the tools cover cloning and reading files, there are obvious gaps in typical repository operations (e.g., listing branches, checking commit history, or searching code), making the scope underdeveloped.

Completeness2/5

The tool surface is severely incomplete for browsing Git repositories. It lacks basic operations like listing repositories, viewing commits, checking branches, or searching within files. Agents will encounter dead ends when trying to perform common repository exploration tasks beyond the two provided tools.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    MCP server for managing Git operations on local repositories, allowing users to list repositories, get and create tags, list commits, push tags, and refresh repositories through a standardized interface.
    6
    3
    -
  • A
    license
    B
    quality
    D
    maintenance
    A Node.js implementation that enables browsing Git repositories through the Model Context Protocol, providing features like displaying directory structures, reading files, searching code, comparing branches, and viewing commit history.
    27
    29 npm
    2
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A secure, git-aware MCP server for working with local repositories, enabling file management, shell commands, and full git operations within allowed directories.
    142 npm
    1
    GPL 3.0