A community-driven registry for the Claude Code ecosystem. Not affiliated with Anthropic.
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.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
Secure MCP server for MySQL database interaction, queries, and schema management