This week, two AI coding tools built on a “local-first” philosophy simultaneously hit GitHub’s trending page, reflecting the growing demand for AI tools that respect data privacy. Let’s see what they do.
1. Synapse MCP: A “Local Brain” for Claude Code
GitHub: github.com/nrkoka786/synapse | License: MIT | Stars: Rapidly growing
Synapse is a fully local MCP server that lets Claude Code “understand” your codebase without sending code to the cloud.
How it works
Synapse indexes your entire codebase into vector embeddings using nomic-embed-text-v1.5 and LanceDB. When you ask Claude “how does the payment flow work?”, Synapse performs semantic search to return relevant files — instead of requiring you to paste code into the chat window.
Key features
- 100% local — no cloud, no API key required
- 2 MCP tools:
recall(semantic search) andcontext(full file retrieval) - MIT licensed — fully open source
- pip install synapse-mcp — installs in 5 seconds
Setup and integration
pip install synapse-mcp
# Index your codebase
cd /path/to/your/project
synapse index
# Add to Claude Code MCP config (~/.claude/mcp.json)
{
"mcpServers": {
"synapse": {
"command": "synapse-mcp",
"args": ["--project", "/path/to/your/project"]
}
}
}
Once configured, Claude Code automatically uses Synapse to search your codebase whenever you ask code-related questions.
Real-world experience
u/koka786, Synapse’s creator, shared: “I built it because I got tired of copy-pasting code into Claude. Now I just ask ‘how does the auth mechanism work’ and it finds everything related on its own.”
2. Code Review Graph: Intelligent Code Mapping
GitHub: github.com/tirth8205/code-review-graph | Stars: 21,672 (+663/day)
Code Review Graph builds a persistent “code map” that lets AI coding tools read only the parts of code actually relevant to a question — dramatically reducing wasted context window.
Why it matters
The biggest problem with AI coding today isn’t that models aren’t smart enough — it’s that they lack the right context. When you ask about a bug, the model often has to read entire files (or many files) when it only needs 5% of the content.
Code Review Graph solves this by building a relationship graph between code components, letting the model go “straight to” the relevant code.
Support
- CLI tool — runs from terminal
- MCP server — integrates with Claude Code, Cursor, Continue.dev
- Local-first — no code leaves your machine
- Benchmarked — reduces context window usage by 60-80% during code review
# Install
npm install -g code-review-graph
# Index a project
crg index /path/to/project
# Run MCP server
crg mcp --port 3000
Why local-first is trending
Both tools emphasize “runs locally, no code sent out.” This isn’t coincidental. With Hugging Face’s breach by an autonomous AI agent (reported this week) and Grok Build caught uploading user repos to the cloud, code privacy concerns are at an all-time high.
Developers increasingly want powerful tools — but don’t want to trade away their entire codebase to third-party servers. Synapse and Code Review Graph are two answers to that demand.
Using both together
These two tools complement each other: Synapse handles semantic search (“find code related to payments”), while Code Review Graph handles structural navigation (“from here, which files import it?”). Combined, you get a powerful AI coding toolkit running entirely on your own machine.