narumiruna/gitingest-mcp
Platform-specific configuration:
{
"mcpServers": {
"gitingest-mcp": {
"command": "npx",
"args": [
"-y",
"gitingest-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server implementation that integrates with gitingest for turning any Git repository into a simple text digest of its codebase.
<a href="https://glama.ai/mcp/servers/@narumiruna/gitingest-mcp"> </a>
Add the following configuration to your AI assistant's settings to enable gitingest-mcp as an MCP server:
{
"mcpServers": {
"gitingestmcp": {
"command": "uvx",
"args": ["gitingestmcp@latest"]
}
}
}{
"mcpServers": {
"gitingestmcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/narumiruna/gitingest-mcp",
"gitingestmcp"
]
}
}
}{
"mcpServers": {
"gitingestmcp": {
"command": "uv",
"args": [
"run",
"--directory",
"/home/<user>/workspace/gitingest-mcp",
"gitingestmcp"
]
}
}
}The server provides the following tool:
ingest_gitAnalyzes a Git repository and returns its content in a structured format.
source: The URL of a Git repository or a local directory pathmax_file_size (optional): Maximum allowed file size in bytes (default: 10MB)include_patterns (optional): Pattern or set of patterns specifying files to include (e.g., "\*.md, src/")exclude_patterns (optional): Pattern or set of patterns specifLoading reviews...