MCP server for Next.js build stats, chunk attribution, and bundle optimization advice.
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.
Analyze Next.js build artifacts to find heavy routes, shared chunks, and bundle growth.
perfonext-build-mcp is a Model Context Protocol (MCP) server that gives GitHub Copilot, Claude Desktop,
Claude Code, and other MCP clients structured bundle analysis for Next.js performance work. It loads .next
build artifacts and turns them into route-size rankings, shared-chunk and duplication findings, and
severity-ranked fix suggestions β evidence agents can reason over instead of inspecting raw .next manifests.
perfonext-build-mcp is a standard MCP stdio server, so it works with any MCP-compatible client
(GitHub Copilot in VS Code, Claude Desktop, Claude Code, Cursor, and others). Run it directly with
npx:
Or install globally:
The executable command remains perfonext-build-mcp after installation.
Add the server to .vscode/mcp.json (the workspace MCP configuration file):
Reload the VS Code window and run MCP: List Servers to start it, or accept the trust prompt when it appears.
Add the server to claude_desktop_config.json:
Restart Claude Desktop to pick up the new server.
Add the server with the CLI:
Or add it directly to .mcp.json:
Any client that supports stdio MCP servers can launch the same command/args pair:
command: npx, args: ["-y", "@perfonext/build-mcp"]. Consult your client's docs for where its MCP
server configuration file lives.
For a locally-built checkout, point command/args at node and the repo's dist/index.js instead,
in any of the configurations above.
Then ask your assistant: "Load the Next.js build in ./.next and show me the largest routes."
spawn npx ENOENT / spawn node ENOENT on macOS with nvmIf the server fails to start with spawn npx ENOENT (or spawn node ENOENT), your editor/app was
likely launched from the Dock/Finder and cannot see nvm. GUI apps on macOS do not load shell config
(.zshrc/.bashrc), so npx/node installed via nvm are not on PATH. This applies to VS Code,
Claude Desktop, and any other GUI MCP client on macOS.
Fix it by giving the MCP config an absolute npx path and a PATH that includes the same Node bin
directory (dirname $(which npx)):
Merge the command/args/env fields above into your client's server entry (e.g. under servers
for VS Code or mcpServers for Claude Desktop/Code).
.next directory| Tool | Description |
|---|---|
load_build_stats | Parse a Next.js .next directory and load the build snapshot into memory |
get_largest_routes | Rank the heaviest user-facing routes by total emitted chunk bytes |
get_shared_chunks | Rank shared chunks by size and show which routes depend on them |
compare_builds | Compare a baseline and current build snapshot to show which routes and chunks grew or shrank |
explain_growth | Severity-rank which routes and chunks drove bundle growth between two builds, with evidence-backed fix suggestions |
how_to_collect_stats | Return the recipe (manual) or an action plan (automatic) to generate .next/stats.json |
load_webpack_stats | Parse .next/stats.json and link it to a loaded build; required before trace_import |
trace_import | Explain why a module or npm package is bundled by walking its import chain to the entry |
find_duplicates | Rank npm packages whose code is emitted into more than one chunk, by wasted bytes |
explain_shared_chunks | Show which packages and app code dominate the shared chunks loaded by many routes |
suggest_optimizations | Aggregate route, chunk, and webpack-stats evidence into severity-ranked, evidence-backed fix suggestions |
The output stays machine-readable and includes raw byte counts so your MCP client can explain regressions, prioritise fixes, and suggest concrete dependency or import-level follow-up.
Every suggest_optimizations finding is sized in emittedBytes β actual on-disk chunk bytes β so suggestions of different kinds rank on one scale. Unminified webpack module sizes appear only where they are named as such (moduleSizeBytes, shareOfChunkModuleBytes).
Because Next.js content-hashes emitted filenames (framework-<hash>.js, and CSS files named purely by hash), compare_builds and explain_growth match chunks across builds by a hash-normalized identity. This prevents a rehashed-but-unchanged chunk from being misreported as removed-and-recreated, while still flagging genuinely new chunks.
The core tools read build artifacts developers already have after running next build:
.next/build-manifest.json.next/prerender-manifest.json when present.next/app-build-manifest.json when present.next/app-path-routes-manifest.json when present β maps App Router manifest keys (/gallery/page) to the real paths (/gallery) the prerender manifest is keyed by, so route type, isPrerendered, and prerenderBlockedReason are read from the build rather than guessed from the pathnext build output text to derive build durationImport-level attribution (trace_import, find_duplicates, explain_shared_chunks) and the
stats-enriched suggestions from suggest_optimizations additionally need a webpack module-stats file
at .next/stats.json. A stock next build does not emit one; how_to_collect_stats returns the
recipe to generate it. The manifest tools above never read it, so they work with or without it.
The manifest tools work with zero setup. To answer "why is this package bundled?", collect a webpack stats file first:
how_to_collect_stats({ method: 'manual' | 'automatic' }) and apply the returned steps β it
adds webpack-stats-plugin and cross-env, gates a next.config hook behind ANALYZE=true && !isServer,
and rebuilds with cross-env ANALYZE=true next build --webpack. Turbopack builds will not produce .next/stats.json.load_build_stats({ buildDir }) to get a buildId.load_webpack_stats({ buildId }) to parse the generated .next/stats.json.trace_import({ buildId, moduleName }) to see the import chain that pulls a module in.find_duplicates({ buildId }) to find packages bundled into more than one chunk, and
explain_shared_chunks({ buildId }) to see what dominates the chunks loaded by many routes.suggest_optimizations({ buildId }) for severity-ranked, evidence-backed recommendations.
It works on manifests alone and is enriched with dedupe, shared-chunk, and package-import
findings once stats are loaded. Code-split advice is tailored for Next.js framework routes
(/404, /500, /_error, /_app, /_document) β these are flagged to be slimmed down by
trimming imports rather than split with next/dynamic, which does not apply to them.If the app builds with Turbopack there is no webpack module graph, so how_to_collect_stats says so
and points back to the manifest-only tools. The attribution tools degrade gracefully with a
breadcrumb when no stats file is loaded β it is never an error.
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/perfonext-build-mcp)<a href="https://allmcps.com/mcp/perfonext-build-mcp"><img src="https://allmcps.com/api/badge/perfonext-build-mcp?style=directory" alt="Perfonext Build MCP on AllMCPs" /></a>