A Model Context Protocol (MCP) server implementation that integrates with gitingest for turning any Git repository into a simple text digest of its codebase. - Easy integration with AI assistants through the Model Context Protocol - Git repository analysis and ingestion capabilities - Support for filtering files by size, patterns, and branches - Returns comprehensive repository information includi
Add this skill
npx mdskills install narumiruna/gitingest-mcpWell-documented MCP server for Git repository ingestion with clear tool descriptions and multiple installation options.
A Model Context Protocol (MCP) server implementation that integrates with gitingest for turning any Git repository into a simple text digest of its codebase.
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//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 specifying files to excludebranch (optional): The branch to clone and analyze (default: "main")A string containing:
See the LICENSE file for details.
Install via CLI
npx mdskills install narumiruna/gitingest-mcpGitingest MCP Server is a free, open-source AI agent skill. A Model Context Protocol (MCP) server implementation that integrates with gitingest for turning any Git repository into a simple text digest of its codebase. - Easy integration with AI assistants through the Model Context Protocol - Git repository analysis and ingestion capabilities - Support for filtering files by size, patterns, and branches - Returns comprehensive repository information includi
Install Gitingest MCP Server with a single command:
npx mdskills install narumiruna/gitingest-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Gitingest MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.