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

VoidLLM: Zero-Knowledge Proxy for Ollama and vLLM with Team Access Control
VoidLLM is a proxy that sits between applications and local LLM servers like Ollama and vLLM, adding organization/team access control, API key management, usage tracking, and rate limiting without viewing prompts. It has <2ms proxy overhead and works with OpenAI-compatible SDKs.

Five Free Claude Desktop Extensions Released: Inspector Lite, Graph Lite, Bible Code, Word Graph, and Fun Pack
A developer has open-sourced five local Claude Desktop extensions: Inspector Lite for semantic code search, Graph Lite for a personal knowledge graph, Fun Pack for entertainment features, Word Graph for Bible study, and Bible Code for pattern detection. All run locally with no external dependencies or additional API keys.

Werld: Open-Ended Artificial Life Simulation with Evolving Neural Networks
Werld is a real-time artificial life simulation where agents with NEAT neural networks evolve their own neural architecture, sensory processing, and behaviors without hardcoded rules or reward functions. The simulation starts with 30 agents on a Watts-Strogatz small-world graph with 64 sensory channels, 7 continuous motor functions, and 29 heritable genome traits.

Freddy MCP Server: Give Your OpenClaw Agent Read Access to Personal Health Data
Freddy is a personal health data server that exposes sleep, recovery, training load, and more as an MCP server, allowing OpenClaw agents to reason over real body data.