The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Neurarch MCP listing page.
PyTorch MCP server: lint, verify and rank a neural network design before you train it, from Claude Code, Cursor, Claude Desktop, VS Code, Windsurf or Codex.
Your coding agent reads your model as source text, so it guesses at shapes, parameter counts, and what an edit breaks. neurarch-mcp hands it the structured graph instead, plus the verifier: the design rules, the full readiness / cost / deployment verdict, and which of several candidate designs is worth the GPU time. Trace the model to get real shapes, or point it at a saved graph, a PyTorch .py, or a Hugging Face repo. Every tool but two runs on your machine, offline, with no API key and no account.
The two that do not are the point of the other half of this README. A frontier model can read your architecture and reason about it; what it structurally cannot do is tell you what happened the last time this exact structure trained here. That is not in the weights and not in the repository. plan and history read it from your organisation's ledger, and they are the only tools in this package that open a socket.
Every number above is produced by the tools, not guessed by the model. 13s webm.
Per-client config for Claude Desktop, Cursor, VS Code, Windsurf and Codex is below. Node 20+ is the only requirement; there is no install step beyond npx.
A real exchange against examples/tiny-gpt.neurarch.json:
And the one this server is built around. Point it at examples/tiny-vit.py, plain PyTorch source with a bug planted in it, and ask "lint this model":
That is a runtime crash sitting in source that reads fine, found offline in milliseconds, with no key and no account. The same rule set the Neurarch CI action reports, so a clean result here is a clean CI run. The rules are measured (the crash rules: 96 of 96 blocked graphs crashed PyTorch forward, 80 of 80 passes ran); the static parser in front of them is the weaker half, and we measured that too.
| Input | What the agent gets | How |
|---|---|---|
A traced graph (neurarch-trace). Start here. | Everything, with real shapes, because they are read at runtime rather than inferred from text. Handles what static parsing cannot: from_pretrained, timm, models spread across files, anything built dynamically. The trace_model tool runs this for the agent. | pip install neurarch-traceneurarch-trace my_pkg.model:build --input 1,3,224,224 |
| A Hugging Face repo | The architecture from config.json, with the published parameter count next to the graph's so you can see how close it is (Qwen2.5-0.5B: 494.00M against 494,032,768). | npx -y neurarch-mcp hf:Qwen/Qwen2.5-0.5B --hf |
A self-contained PyTorch .py file. The fallback. | Layers, types, hyperparameters and wiring, when the file builds its own layers with literal sizes. Shapes and FLOPs are unknown, because the source never says what goes in, and are reported as unknown rather than as zero. On real repositories this is the weak path, and we measured how weak: a graph a person would recognise for 41% of 116 real model files, and of the block and warn findings raised on them, zero were real defects when hand-judged. Good enough to orient with, not to act on. The study. | npx -y neurarch-mcp model.py |
A .neurarch.json saved from the Neurarch app (File → Save) is the fourth, and carries shapes, groups and design notes. Add --watch so the agent sees app-side saves without a restart.
The flow this server is built around, in one line each: trace_model for a graph with real shapes, plan for the card that says whether to spend the GPU time, lint_model / check_design for the offline detail behind it, suggest_fix for the edit. Everything else answers a question one of those raised.
We measured it rather than describe it: docs/REAL_REPOS_STUDY.md runs the parser and linter over 116 model files from 59 popular repositories (nanoGPT, HF modeling_*.py, timm, torchvision, DiT, MAE, CLIP, Mamba, SAM, diffusers and more). The parser returns a graph for 86% of files and a graph a person would recognise as the model for 41% (Llama, Qwen2, Mistral and Gemma come back as 58-node graphs; nanoGPT as 72), up from 63% and 8% in August. Re-measured 2026-09-09 with per-edge provenance: every edge the importer chained from statement order rather than read out of forward() is marked, the rules that are about adjacency hold back on those, and block+warn findings fell from 92 to 37 with two thirds of the parser artefacts gone. Real defects found on either engine: still zero. The graph is good enough to orient with and not yet good enough to lint from; run trace_model before acting on a finding from a .py.
Three consequences are in this release. A graph from source carries a parseQuality grade (full, partial, thin) on describe_architecture and lint_model, with the fix named. Dimension rules are held back on layers whose dimension is still source text, and the count is reported as suppressed rather than dropped. And find_models marks thin parses partial so an agent does not build a plan on two layers. For real repositories, use neurarch-trace: it reads the numbers at runtime, which is the only place they exist.
Every read tool also takes an optional model_path, so one server covers a whole repository: ask about baseline.py, then variant_b.neurarch.json, then zoo:llama-3-8b, without restarting anything. find_models tells the agent what is there.
These two are the front door, and the only two tools in this package that reach the network. plan is the artifact: the same card the Neurarch CI bot posts on a pull request and the neurarch-trace CLI prints, so the agent and the reviewer read the same words about the same graph.
| Tool | Answers | Sends |
|---|---|---|
plan | Will it run, what will it cost, which GPUs does it fit, which of your repository's own rules does it break, what changed against a base design, and what happened last time this structure trained here. text comes back verbatim. Policy lines are read from the repository's .neurarch.yml (the same file the CI bot reads, merged the same way) unless you pass policy; base_path adds a diff. NEURARCH_API_KEY is optional and adds the history line. share is pinned to false: an agent cannot publish your design. | The graph, to POST /api/v1/plan. This is the one tool that sends the model. |
history | What this exact structure scored the last time it trained inside your organisation: metric, epochs, wall time, cost, newest first, at most 20. Keyed by the graph's 8-character structural fingerprint, so it answers about the shape rather than the file and two people who arrived at the same architecture see the same runs. Pass model_path, or a fingerprint straight from a plan result. | The fingerprint and your key. Never the graph. |
Why these exist: a frontier model reading your code can reason about the architecture, and cannot know that this shape trained here three days ago and reached 98.65% in 34 seconds for under a cent. That fact is not in the weights, not in the repository, and not derivable from the graph.
Without NEURARCH_API_KEY, history makes no request and says so. It does not return an empty list: an unread ledger and an empty one are different answers, and only one of them means nobody has trained this. Keys come from neurarch.com/developer.
Four tools grade the model, and they are a ladder worth climbing in order. Each is free, offline and instant; check_design runs five pipeline stages, so an agent that starts at the top still pays for an answer two thirds of which a cheaper tool had.
| Tool | Answers | |
|---|---|---|
| 1 | validate_model | Is this a well-formed graph at all: cycles, dangling refs, duplicate names, orphans. |
| 2 | lint_model | Does it break a design rule: attention head-dim and GQA divisibility, norm/activation ordering, dropout and feature ranges, missing residuals in deep stacks, the shape rules decidable statically. Returns provenance: for every rule that fired and has a published measurement behind it, the measurement. A rule with no number is absent rather than dressed up. |
| 3 | check_design | Will it train, what will it cost, where can it run: readiness, parameter and cost estimates, the best deployment target and its latency, and the decisions still left to the human. Same code path as the app and POST /api/v1/check. |
| 4 | rank_designs | Which of k candidate designs deserves the training budget. Candidates are paths, zoo:/hf: refs or inline graphs. Blocked ones (a pre-flight finding that means the graph will not forward-pass) rank last and come back as reclaimable budget; that part is measured, 96 of 96 blocked graphs crashed PyTorch forward and 80 of 80 passes ran. Legal candidates are ordered only by rules with a trained outcome behind them, and a tie stays a tie: recommended is null when nothing measured separates the top, which is the common answer. Params, cost and GPU fit are returned per candidate for you to break ties on your own budget; they never order on their own, but tie_break: "cost" or "params" will break a measured tie on them, echoed and labelled as your rule with measuredRank kept. calibration ships inside every result (pairwise accuracy 51.4% at 8.3% coverage, in-sample, not quotable; out of sample the score abstained on 11 of 15 pairs while Claude Opus 5 reading the code got 12 of 15 and always picking the larger design got 11 of 15), so the ordering cannot be read as a quality prediction. |
| 5 | suggest_fix | The finding as a change to the file. A unified diff per finding: exact where the rule pins a number or an order (the head-dim crash above becomes a 7-line diff that changes every 258 to 256), proposal where a layer is missing. Apply, then lint again. |
| Tool | What it does |
|---|---|
describe_architecture | One-call orientation: topo-ordered pipeline, depth, IO shapes, total params and MACs, top-5 param and compute hotspots, validation rollup. Start here. |
get_model_summary | Layer count, total params, dominant types, input/output shape. |
get_layer | One layer by name: params, shapes, notes, upstream/downstream. |
find_layers | Search by type, name regex, scope prefix or augmentation; rank by parameter count. |
compare_layers | Structural diff of two layers. |
layer_impact | Blast radius of changing a layer or matched set: shape-sensitive and weight-carrying downstream layers. Call it before recommending an edit. |
find_path, list_connections | Directed path between two layers; the edge list. |
param_count_by_block, flops_by_block | Params and MACs grouped by block, scope or type. |
list_blocks, get_block | Collapsed groups and what crosses their boundary. |
diff_models | Structural diff against another .neurarch.json. |
mermaid_diagram | The model as Mermaid flowchart TD. |
list_hyperparams, get_design_notes | What the user set and wrote in the app. |
| Tool | What it does |
|---|---|
list_architectures | Search the 81 reference architectures bundled with this server (DeepSeek-V3, Qwen2.5, Llama, Mixtral, Gemma, Whisper, CLIP, BERT, ViT, ResNet and more), each with real dimensions from the model's config and a parameter count checked against the published one. Offline. |
load_architecture | Open one and describe it. Then model_path: "zoo:<id>" on any tool. |
load_hf_model | A Hugging Face repo as a graph. Listed only under --hf, because it is the one tool that opens a socket. |
find_models | Walk a directory for nn.Module definitions and saved graphs, try the parser on each, and say which need neurarch-trace instead. |
trace_model | Run neurarch-trace in your Python with the input dims and get a graph with real shapes back as a model_path. The primary way in for a real repository, not a fallback: the static parser returns a recognisable graph for 41% of real model files and no finding it raised on one has yet been a real defect. |
export_pytorch | The graph as a runnable nn.Module, the app's own generator. save_to needs --write and never targets the file the server was started from. |
--write)add_layer, modify_layer, add_connection, delete_layer, delete_connection, save_model. Mutations always target the file passed on the command line; write tools refuse model_path, so an agent cannot edit, and then save over, a path it invented. Refused on a .py (the graph was derived from it; use export_pytorch to emit new source).
Every tool declares what it does to your files (MCP annotations): read tools are read-only and closed-world, load_hf_model is open-world, the three that can destroy something say so. Results carry structuredContent alongside the JSON text.
In Claude Desktop, Cursor and VS Code these show up as slash commands. Each is the tool ladder written out in order, with one rule on top: every number in the answer comes from a tool result, never from memory of similar models.
| Prompt | Argument | What it does |
|---|---|---|
/review_design | focus? | Structured review: readiness, risks, where the budget lives, the edits worth making with their blast radius. |
/pre_train_checklist | Pass / fail / unknown per line, each backed by the tool that decided it, before you spend GPU time. | |
/shrink_for_target | target | Fit "under 100M params" or "a T4 with batch 32": find where the budget lives, propose variants, rank them. |
/compare_with_reference | architecture? | The model next to a published one from the library, with the differences that would change training. |
/explain_finding | rule | What a finding means for this model, the evidence behind it, the smallest edit that clears it. |
Resources a client can pin as context: neurarch://model (the graph), neurarch://model/mermaid, neurarch://model/pytorch, neurarch://zoo, neurarch://zoo/{id}, neurarch://rules (the provenance table), neurarch://docs and neurarch://docs/{tool} (every tool's full contract).
check_design can also ask the person when the verdict ends in a decision only they can make (which data, whether to spend the money): pass ask_user: true and, in a client that supports MCP elicitation, the question is put to them and their answer comes back with the verdict.
Whether an agent reaches for the right tool is measured, not assumed: npm run eval:tools runs six fixed asks through Claude Code against the built server and grades the tool calls (lint before proposing an edit, rank_designs for a which-of-k question). The latest result is in docs/tool-selection-eval.json.
Use an absolute path in any global config: npx does not run from your project directory. Relative paths work in project-scoped configs (.mcp.json, .cursor/mcp.json, .vscode/mcp.json).
Or commit a project-scoped .mcp.json so every collaborator gets the server:
Download the .mcpb from Releases and open it, or edit the config (Settings → Developer → Edit Config; macOS ~/Library/Application Support/Claude/claude_desktop_config.json, Windows %APPDATA%\Claude\claude_desktop_config.json):
Fully quit and reopen Claude Desktop; the config is read at startup.
Click Add to Cursor above, or create .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
Click Install in VS Code above, or create .vscode/mcp.json (note the servers key):
Same command + args shape; only the file location differs. For HTTP clients, run npx neurarch-mcp model.py --http and point the client at:
Verify: ask the agent "List the Neurarch tools you can see." From a shell, npx -y neurarch-mcp --help prints usage and the full tool list.
--write: expose the six mutation tools. Off by default.--watch: reload the model file on change. Pair with the app.--hf: allow hf:<org/name> refs and list load_hf_model. The one network switch. HF_TOKEN is sent for gated repos; results are cached for a day under ~/.cache/neurarch-mcp.--tools=full: advertise every read tool. The default is the core fifteen, listed in the order they are meant to be reached for (trace_model, plan, history, then the offline ladder); every tool stays callable by name either way, and neurarch://docs/<tool> has the full contract. The default listing costs the agent about 4.6k tokens per turn, the full one 6.5k.--http[=PORT], --host=ADDR: serve over Streamable HTTP. See Remote access.--version, --help.| What | What it sends | When |
|---|---|---|
plan | Your graph (and the base graph, and the policy lines) to POST /api/v1/plan. share is pinned to false. | Only when the agent calls plan. |
history | An 8-character structural fingerprint and your NEURARCH_API_KEY, to GET /api/v1/history. Never the graph. | Only when the agent calls history and a key is set. With no key it makes no request. |
--hf | A request to huggingface.co for a repo's config.json (and HF_TOKEN, if set). Never your model. | Only on load_hf_model or an hf: ref. |
NEURARCH_REPORT=1 | One anonymous structure+verdict row: structural fingerprint, layer-type histogram, edge count, (rule id, severity) pairs. Structurally incapable of carrying the graph. | After each validate_model, lint_model, check_design or plan call, fire and forget, 5s cap. |
Both switches are off by default and NEURARCH_REPORT has not changed: plan joins the three tools that already send a row so that opting in means one thing across every tool that grades, and history grades nothing and sends none. Nothing here is new default-on behaviour; the two tools reach out when they are called, which their descriptions and their openWorldHint annotation say out loud.
With --hf off, NEURARCH_REPORT unset and neither plan nor history called, this server makes no network calls at all, and no other tool is an exception: the parser, the rule engine, the verifier, the ranker and the reference library are vendored into the package, so your model never leaves the machine. NEURARCH_API (the same variable neurarch-trace uses) points the two ledger tools somewhere else. Corpus policy: neurarch.com/rules.html#data.
By default the server talks stdio, so the agent and the model file live on the same machine. --http serves the same tools over Streamable HTTP, so a hosted or phone-based agent can drive a model running on your machine, for example behind a Cloudflare or Tailscale tunnel.
Binds to 127.0.0.1 by default with DNS-rebinding protection; NEURARCH_MCP_TOKEN requires Authorization: Bearer <token> on every request and is required before --write may bind to a non-loopback host.
Hosted, with no model on disk: npx neurarch-mcp --http --hf serves a server that answers about whatever each call names (model_path: "zoo:..." / "hf:...", or model_source with the model text inline). Dockerfile, fly.toml and docs/HOSTED.md carry the deploy. A hosted server sees the model text a client sends it, which the local one never does; say so wherever a URL is published.
neurarch-traceStatic parsing stops at the source. python/neurarch-trace instantiates the model, runs one forward pass with hooks, and writes a .neurarch.json with every shape filled in, functional residual adds and concats included:
Shapes come out batchless ([3,224,224], never [1,3,224,224]), the convention every tool here expects.
CI runs typecheck, build and test on Node 20 and 22. The package vendors from the main Neurarch repo so that it works with no network, no key and no second install: src/vendor/engine.bundle.mjs (registry, PyTorch parser, rule set, code generator, HF config converter) and src/vendor/verifier.bundle.mjs (five pipeline stages, provenance table, ranker). Both are generated, contract-tested, and asserted to contain no import (and, for the verifier, no fetch). @modelcontextprotocol/sdk is the only runtime dependency. zoo/ is synced from awesome-llm-model-zoo with npm run sync:zoo.
A new tool is a small, self-contained PR: see CONTRIBUTING.md. The agent skill that teaches an evidence-gated edit loop over these tools lives in skills/ (npx skills add neurarch-ai/neurarch-mcp).
npx does not run from your project directory. Relative paths only work in project-scoped configs (.mcp.json, .cursor/mcp.json, .vscode/mcp.json).--write. It is off by default so accidental writes can't clobber a file you're editing in the app.npx fails on first run. Node >= 20 is required (node --version).--watch, or restart the server..py, .neurarch.json, zoo:, hf:), not your whole tree. For codebase structure, use GitNexus or similar.check_design says when a decision is yours.--watch follows its saves.This repo is the public home for both:
| 🐛 Report a bug | Something is broken or behaving unexpectedly. |
| 💡 Request a feature | An idea that would make Neurarch or the MCP server better. |
| ❓ Ask a question | Something specific you can't figure out. |
| 💬 Start a discussion | Open-ended ideas, design feedback, "how would you…". |
Please tag issues with mcp, app, linter, or feature-request so we can triage faster.
If neurarch-mcp saved you from pasting an nn.Module into chat, a ⭐ helps other ML engineers find it. It is the lowest-effort way to support the project.
A new tool is a small, self-contained PR. See CONTRIBUTING.md for the 3-step "add a tool" guide.
CI runs typecheck + build + test on Node 20 and 22 for every push and PR.
The package vendors from the main Neurarch repo, and everything is vendored for the same reason: this server has to work with no network, no API key and no second install step.
src/lib/: pure-TypeScript utilities (model types, parameter and FLOP estimators, impact analyzer), maintained as source here.src/vendor/engine.bundle.mjs: the compiled Neurarch engine: the component registry, the PyTorch parser behind .py support, and the rule set behind lint_model. Generated, never hand-edited; the header says how to regenerate it, and src/vendor/engine.contract.test.ts fails if its exports drift or it ever acquires an import.src/vendor/verifier.bundle.mjs: the compiled Neurarch verifier behind check_design: the five pipeline stages, plus the rule-provenance table. Same code path as the app and the hosted endpoint, so an agent here and a person in the app get the same answer. Same rules: generated, contract-tested (verifier.contract.test.ts), and asserted to contain no import and no fetch.Neither adds a runtime dependency: @modelcontextprotocol/sdk is still the only one.
This server runs on your machine and is built not to phone home:
plan, and only when it is called.plan (on request): sends the graph you are planning (plus the base graph if you passed base_path, and the policy lines from your .neurarch.yml) to POST /api/v1/plan on neurarch.com, which renders the card and returns it. share is pinned to false, so nothing is published; the graph is processed to answer that call. Your NEURARCH_API_KEY is sent if you set one. No other tool sends your model anywhere.history (on request, needs a key): sends an 8-character structural fingerprint of the graph and your NEURARCH_API_KEY to GET /api/v1/history. The graph itself is never sent, and with no key set the tool makes no request at all.NEURARCH_API (optional): points those two tools at a different host; nothing else reads it.--hf (optional): fetches a model's public config.json from huggingface.co. What is sent: the repo id you asked for, and your HF_TOKEN if you set one (to huggingface.co only). Responses are cached locally under ~/.cache/neurarch-mcp and can be deleted at any time.NEURARCH_REPORT=1 (optional, off by default): sends one anonymous structure row per graded graph (validate_model, lint_model, check_design, plan) to the Neurarch corpus: a structural fingerprint (8-char hash), a layer-type histogram, an edge count, and (rule id, severity) pairs. The payload format cannot carry your graph, parameter values, layer names, file paths, or any identity. Policy and examples: neurarch.com/rules.html#data.neurarch-mcp.fly.dev) is different by nature: it processes the model text or references a client sends it, in memory, to answer that call. Nothing is stored server-side beyond a one-day hf: config cache; there are no accounts and no request logs of graph content. It runs with NEURARCH_REPORT=1, so each graded call also sends the anonymous structure row described above; use the local server if you do not want that.--hf; neurarch.com is contacted only by plan, history, and opt-in corpus reporting.The app-wide policy at neurarch.com/privacy covers the Neurarch web app; this section covers this server.
MIT. See LICENSE.