mcp-change-impact-assistant

tanvi0102/mcp-change-impact-assistant
★ 0 stars Python AI/LLM Updated today
MCP server combining a static code-graph analyzer with git co-change history to suggest what else might be affected by a change
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-change-impact-as": {
      "command": "uvx",
      "args": [
        "mcp-change-impact-assistant"
      ]
    }
  }
}

Or install with pip: pip install mcp-change-impact-assistant

README Excerpt

An MCP server that answers one question for a developer or an AI coding agent: **"I just changed this — what else might I need to check?"** It combines two independent signals: - **Static code structure** — reads the codebase with Python's built-in `ast` module to find which files/functions import or call each other *right now*.