npm dendro-react-mcpstdioupdated 13d ago
Your agent is editing code it's never read.
What can you do with Dendro React?
Dendro
Your agent is editing code it's never read.
It just scanned forty files to answer "what breaks if I change this?" It could have asked one fucking question.
Dendro is one model of your React or React Native codebase, rendered twice: semantics your agent can query, and a map you can both point at.
For your agent — the semantics
MCP tools that answer React questions in React terms: the component's contract
before an edit (props, state, contexts, blast radius), rerender risk with the
why, effect hygiene (leaked subscriptions, derived-state effects, fetch races
that exhaustive-deps can't see), navigation graphs (Next.js, React Navigation,
Remix, Expo Router), live runtime state from a running app — and whole-repo
orientation in one ~300-token call.
Symbol servers tell your agent where the symbol is. Dendro tells it what rerenders, and why.
For you — the visualizer
Your app's constellation: a live dendrogram in VS Code, descended from Reactive. Your agent drives it — highlights what it's talking about, annotates, traces a prop, walks you through the architecture step by step while you click Next/Back. You watch the same map the agent reasons over.
Getting Started
- Install Dendro React — run
ext install RooneyTech.dendro-reactin VS Code, or install from the Marketplace - Open your React or React Native project in Claude Code
- Paste this:
Set up Dendro React for this project. The extension is already installed in VS Code. Do these steps in order:
- Find the MCP server path:
ls ~/.vscode/extensions/rooneytech.dendro-react-*/dist/mcp-server.js- Find the absolute node path:
which node- Create
.mcp.jsonin the project root using the absolute node path as"command"and the MCP server path as the first arg- Add a Dendro section to
CLAUDE.md(create it if needed) with: the entry file path,get_usage_guideas first call, and a note to run viz commands sequentially- Verify by calling
get_usage_guide
That's it. Your agent handles the rest.
Things to Try
Say "Dendro" in your prompts — like "Use Dendro to show me how this app is structured." It'll use the visualizer and deeper analysis instead of just reading files.
- Watch: "Open the Dendro visualizer and walk me through the app"
- Ask: "Use Dendro to check how healthy this codebase is"
- Before an edit: "Get the component contract for CheckoutForm first"
- "Where does state live? Use Dendro to trace the data flow"
- "Show me how navigation works in this app with Dendro"
- "Use Dendro to explain this repo's architecture like I've never seen it"
What It Does
- Component contracts — props, state, contexts, blast radius, complexity in one call, before your agent edits
- Health audits — A-F grade with line-anchored findings and fixes (leaked listeners, fetch races, derived-state effects)
- Complexity scoring — every component graded, refactoring candidates named
- Navigation mapping — React Navigation, Next.js, React Router, Remix, Expo Router
- Context & data flow — providers, consumers, prop drilling detection
- Visual canvas — the agent highlights, annotates, and traces flows in a live dendrogram
- Runtime inspection — connect to a running app for live state, props, and hooks (optional)
Free & local
Every tool is free — exports, snapshots, verified projection, live introspection,
and batch analysis included. No account, no license key, and no code leaves your
machine. The one exception is submit_feedback, which sends a debrief to the
maker only when you explicitly say yes.
Configuration
| Setting | Default | Description |
|---|---|---|
dendro-react.autoStartRuntime |
false |
Auto-connect to React Native apps on activation |
dendro-react.runtimePlatform |
auto |
Target platform: auto, ios, android, or device |
dendro-react.runtimePort |
8097 |
DevTools WebSocket port |
dendro-react.runtimeHost |
localhost |
WebSocket host (0.0.0.0 for physical devices) |
dendro-react.projectorMode |
false |
Larger fonts/strokes for screen sharing |
Learn More
- Setup Guide — manual setup, Cursor/Windsurf config, runtime connection, troubleshooting
- Tools Reference — every MCP tool with descriptions
Feedback
Dendro is in early access. If something doesn't work, feels confusing, or you wish it did something different — I want to hear it.
- Issues & ideas: GitHub Issues
- Email: colin@rooneytech.com
- Or just tell your agent to use
submit_feedback— it knows what to do.
Built by Colin Rooney. Originally derived from Reactive, built at OSLabs with Micah Ziegler and Susana Lam. Named after the Greek word for tree and the branching dendrites of neurons.
Install
Add Dendro React to your client. Pick the one you use.
claude mcp add dendro-react-mcp -- npx -y dendro-react-mcpcodex mcp add dendro-react-mcp -- npx -y dendro-react-mcpamp mcp add dendro-react-mcp -- npx -y dendro-react-mcp{
"mcpServers": {
"dendro-react-mcp": {
"command": "npx",
"args": [
"-y",
"dendro-react-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"dendro-react-mcp": {
"command": "npx",
"args": [
"-y",
"dendro-react-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"dendro-react-mcp","command":"npx","args":["-y","dendro-react-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"dendro-react-mcp": {
"command": "npx",
"args": [
"-y",
"dendro-react-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"dendro-react-mcp": {
"command": "npx",
"args": [
"-y",
"dendro-react-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"dendro-react-mcp": {
"command": "npx",
"args": [
"-y",
"dendro-react-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"dendro-react-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"dendro-react-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"dendro-react-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"dendro-react-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y dendro-react-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation19/25
- Maintenance25/25
- Trust9/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 5 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.9.0Latest | Aug 26, 2026 |
| 0.8.1 | Aug 25, 2026 |
| 0.8.0 | Aug 25, 2026 |
| 0.7.2 | Aug 25, 2026 |
| 0.7.1 | Aug 24, 2026 |
| 0.7.0 | Aug 24, 2026 |
| 0.6.0 | Aug 24, 2026 |