Are you the author? Sign in to claim
gitingest-mcp
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/<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 specifying files to excludebranch (optional): The branch to clone and analyze (default: "main")A string containing:
See the LICENSE file for details.
40+ tools for querying dashboards, alerts, datasources, and logs in Grafana
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases