Blindspot MCP: An External Brain for AI Coding Agents

Blindspot MCP is an external tool for AI coding agents like Claude Code and Cursor that addresses their limitation of only understanding files they can directly see. It provides structured project intelligence to prevent changes that break code elsewhere in the system.
How it works
The tool indexes the full codebase using tree-sitter and SQLite to understand symbols, dependencies, and relationships. Instead of providing raw files to AI agents, it returns structured project intelligence, enabling the agent to understand the system rather than guessing.
Safety features
Blindspot implements fail-closed safety where every change goes through:
- Impact analysis (what could break?)
- Diff-aware quality checks
- Completion gates
If something looks wrong, the edit is blocked before it happens.
Key tools and features
- Impact analysis tools:
get_context_for_edit,get_ripple_effect,get_impact_analysis - Safe edit pipelines:
safe_implement,safe_refactor, etc. - Quality gates:
run_diff_aware_quality_matrix,run_universal_completion_gate - Governance layer: Risk register, KPI reports, evidence packs
- Policy system: Strict/relaxed modes, confidence thresholds, break-glass workflows
Current scope (v0.1.5)
- 86 MCP tools
- 16 framework adapters (12 languages)
- Laravel plugin is production-tested
- Other adapters are in alpha but structurally complete
- Local-first architecture (your code stays on your machine)
Real-world impact
According to the developer's experience:
- Models write more consistent and safer code
- AI agents understand cross-file dependencies much better
- Fewer "fix one thing, break three things" situations
- With Blindspot providing structured context + safety, better results were achieved with Codex (GPT-5.3 xhigh) compared to more "raw reasoning heavy" models like Claude Opus 4.6
This type of tool is useful for developers working with AI coding assistants in complex codebases where changes in one file can have unintended consequences elsewhere.
📖 Read the full source: r/ClaudeAI
👀 See Also

Running Qwen3.6-35B-A3B-UD-Q5_K_XL Locally with VS Code Copilot on AMD R9700
A user shares their working llama.cpp setup for Qwen3.6-35B-A3B-UD-Q5_K_XL on a single AMD R9700 with Vulkan, achieving full website and Playwright test generation from scratch with minimal nudging.

OpenClaw Integration for Indian Stock Markets: Multi-Agent Analysis and Trading Terminal
An open source trading terminal for Indian markets has been wired up as an OpenClaw skill server, allowing any OpenClaw agent to pull Indian stock market data and run full analysis over HTTP without local installation. The system uses seven specialist agents working in parallel to generate structured analysis with trade plans.

Layerkit: AI Image Editor with Editable Layers Built with Claude Code
A developer built Layerkit, a browser-based AI image editor that generates scenes with editable layers to avoid constant re-prompting. The tool uses a multi-stage AI pipeline where one LLM plans composition, an image model generates the scene, and another LLM analyzes the actual image to place readable text.

Open Brain: Open-source MCP server adds persistent memory with auto-graph and semantic search to Claude
Open Brain is an open-source MCP server that gives Claude persistent memory across sessions with automatic entity extraction, semantic deduplication, and auto-graphing of connections between thoughts. It uses Supabase with pgvector and Deno Edge Functions, is self-hostable, and includes 16 MCP tools for graph traversal, entity browsing, and weekly review synthesis.