
ShadowGit MCP Server
Provides AI assistants with secure, read-only access to ShadowGit repositories for debugging and code analysis. Enables powerful analysis of fine-grained git history captured automatically by ShadowGit's continuous commit tracking.
README
ShadowGit MCP Server
A Model Context Protocol (MCP) server that provides AI assistants with secure, read-only access to your ShadowGit repositories. This enables powerful debugging and code analysis capabilities by giving AI access to your project's fine-grained git history.
What is ShadowGit?
ShadowGit automatically captures every save as a git commit, creating a detailed history of your development process. The MCP server makes this history available to AI assistants for analysis.
Installation
npm install -g shadowgit-mcp-server
Setup with Claude Code
# Add to Claude Code
claude mcp add shadowgit -- shadowgit-mcp-server
# Restart Claude Code to load the server
Setup with Claude Desktop
Add to your Claude Desktop MCP configuration:
macOS/Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\\Claude\\claude_desktop_config.json
{
"mcpServers": {
"shadowgit": {
"command": "shadowgit-mcp-server"
}
}
}
Requirements
- Node.js 18+
- ShadowGit app installed and running with tracked repositories
- Git available in PATH
Available Commands
list_repos()
Lists all ShadowGit-tracked repositories.
await shadowgit.list_repos()
git({repo, command})
Executes read-only git commands on a specific repository.
// View recent commits
await shadowgit.git({
repo: "my-project",
command: "log --oneline -10"
})
// Check what changed recently
await shadowgit.git({
repo: "my-project",
command: "diff HEAD~5 HEAD --stat"
})
// Find who changed a specific line
await shadowgit.git({
repo: "my-project",
command: "blame src/auth.ts"
})
Security
- Read-only access: Only safe git commands are allowed
- No write operations: Commands like
commit
,push
,merge
are blocked - Repository validation: Only ShadowGit repositories can be accessed
- Command filtering: Dangerous arguments are blocked
Example Use Cases
Debug Recent Changes
// Find what broke in the last hour
await shadowgit.git({
repo: "my-app",
command: "log --since='1 hour ago' --oneline"
})
Trace Code Evolution
// See how a function evolved
await shadowgit.git({
repo: "my-app",
command: "log -L :functionName:src/file.ts"
})
Cross-Repository Analysis
// Compare activity across projects
const repos = await shadowgit.list_repos()
for (const repo of repos) {
await shadowgit.git({
repo: repo.name,
command: "log --since='1 day ago' --oneline"
})
}
Troubleshooting
No repositories found
- Ensure ShadowGit app is installed and has tracked repositories
- Check that
~/.shadowgit/repos.json
exists
Repository not found
- Use
list_repos()
to see exact repository names - Ensure the repository has a
.shadowgit.git
directory
Git commands fail
- Verify git is installed:
git --version
- Only read-only commands are allowed
- Use absolute paths or repository names from
list_repos()
Development
For contributors who want to modify or extend the MCP server:
# Clone the repository (private GitHub repo)
git clone https://github.com/shadowgit/shadowgit-mcp-server.git
cd shadowgit-mcp-server
npm install
# Build
npm run build
# Test
npm test
# Run locally for development
npm run dev
# Test the built version locally
node dist/shadowgit-mcp-server.js
Publishing Updates
# Update version
npm version patch # or minor/major
# Build and test
npm run build
npm test
# Publish to npm (public registry)
npm publish
License
MIT License - see LICENSE file for details.
Related Projects
Transform your development history into a powerful AI debugging assistant! 🚀
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.