Fused graph of your codebase β static code + runtime OTel β for AI agents, over MCP.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
NEAT solves the AI coding context problem. It constructs a live deterministic model of your codebase β static code and live runtime behavior fused into one graph β and hands your AI agents the grounded, full-stack context they need to query, code, debug, and write rules against it. This achieves the following:
TL;DR The deterministic grounded truth of code for your agents.
NEAT is in active development. Capability ships as patch releases on the npx neat.is surface; see open issues for what's on deck.
Run it from inside your project (or npx neat.is <path>). It discovers your services, extracts the static graph, wires in OpenTelemetry, starts the daemon, and opens the dashboard β no config. Then run your app and watch the live edges populate.
On Windows, use the
neatcommand, notnpx neat.is. npm generates a shim literally namedneat.is, and Windows won't execute a.isfile β it hands it to a file association instead. Install once and run the dotless binary:npm i -g neat.is, thenneat(orneat <path>). Without a global install:npx -p neat.is neat. Everynpx neat.is <verb>below becomesneat <verb>this way.
At the center of NEAT is one live graph of your system, fused from two streams into a single model you can query many ways:
package.json, and yaml / env config. Every source file becomes a node; imports between them become edges; the calls each file makes to databases, queues, and external hosts are extracted from the code.Both streams land on the same nodes, so the graph holds what your code declares and what your system does side by side. From there, the useful questions fall out of one model: what would break if this node dies (blast radius), what broke first (root cause), which architectural rules a change would violate (policies), and where declared intent and observed reality part ways (divergence). Same graph, different traversals.
The file is the primary unit. A relationship in the graph runs from a file β src/services/billing.ts ββCALLSβββΆ api.stripe.com β not from a vague service blob. Anchoring relationships to files and lines is what keeps every one of those answers sharp: a finding names this file, calling this target, rather than a service-shaped shrug.
Every edge carries a provenance tag so a consumer knows exactly how much weight a claim deserves:
EXTRACTED from source. No clock decay.OBSERVED from a span. Carries lastObserved and callCount.INFERRED by the trace stitcher where OTel coverage has gaps. Confidence is capped.STALE because runtime stopped speaking. Preserves the original lastObserved.The graph is exposed to AI agents through sixteen MCP tools. Ten read the graph β get_root_cause, get_blast_radius, get_dependencies, get_observed_dependencies, get_incident_history, get_divergences, get_graph_diff, get_recent_stale_edges, check_policies, semantic_search β and six (neat extend) let an agent close instrumentation gaps for libraries the bundled OTel set doesn't cover, driven by a versioned instrumentation registry.
The same neat binary handles every verb. After a global install (npm i -g neat.is) or via npx neat.is:
Every query verb honors --json and --project <name>. Exit codes branch on success (0), server error (1), misuse (2), and daemon unreachable (3).
A divergence is one of the questions the graph answers, and the one that's hardest to get any other way β it needs both streams at once. Once your app has run, neat divergences reports where declared intent and observed behavior part ways:
Two findings, two different bugs. The first is a call your code makes without saying so β worth knowing before it surprises you. The second is a dependency your code carries but never uses β dead weight, or a path you thought was live and isn't. Both come from comparing the same file against itself: what it says, versus what it did.
Divergence reports what is. Policies let you assert what should be. A policy.json in your project declares architectural rules as assertions over the same graph β for example, "only service:billing and service:orders may connect to postgres:primary," or "no file may call legacy-api.internal." Because the rules run against the live graph, they evaluate against both what your code declares and what production actually does.
NEAT evaluates every policy continuously as the graph changes. When an edge violates a rule, the violation is surfaced β not buried in a one-off lint run. Two surfaces expose it:
neat policies lists what's currently violating, scoped to a node with --node, or dry-run a change with --hypothetical-action.check_policies hands the same answer to an AI agent over MCP, so an agent writing a new feature can see which rules it would cross and the assertions it's working within β the rules previous features, other agents, or your engineers already set.A block action gates promotion of a FrontierNode (an external host the graph has newly seen) so unsanctioned external dependencies don't quietly settle into the model. The throughline: the graph already knows your architecture, so the rules you care about become assertions over it that stay true as the system moves.
The container image at ghcr.io/neat-technologies/neat:latest boots neatd start and exposes REST on :8080, OTLP on :4318, and the web UI on :6328. Generate a token, run the image, point your OTel SDKs at it:
NEAT_AUTH_TOKEN is required on every public interface. The daemon refuses to bind on non-loopback addresses without one. REST and SSE callers send the token in Authorization: Bearer <token>; OTel exporters send the same header. Rotate the OTLP token independently with NEAT_OTEL_TOKEN.
Easier path: neat deploy generates the token, writes a docker-compose.neat.yml, and prints the env block your application's deploy platform needs:
When TLS termination and authentication already live in a proxy upstream, set NEAT_AUTH_PROXY=true so the daemon skips the request-side bearer check. The bind-authority gate still refuses public binds without NEAT_AUTH_TOKEN, so set both:
Then docker run β¦ -e NEAT_AUTH_TOKEN=β¦ -e NEAT_AUTH_PROXY=true β¦ and let Caddy gate the public surface.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/neat)<a href="https://allmcps.com/mcp/neat"><img src="https://allmcps.com/api/badge/neat?style=directory" alt="NEAT on AllMCPs" /></a>