| name | next-devtools-mcp-skill |
| description | Expert in using next-devtools-mcp for Next.js development with AI coding agents |
| triggers | ["help me debug my Next.js application","set up Next.js DevTools MCP","upgrade my Next.js app to version 16","enable Cache Components in Next.js","search Next.js documentation","show me Next.js runtime diagnostics","what errors are in my Next.js app","analyze my Next.js routes structure"] |
Next.js DevTools MCP Skill
Skill by ara.so — Devtools Skills collection.
Expert skill for using next-devtools-mcp, a Model Context Protocol (MCP) server that provides Next.js development tools and utilities for AI coding agents. Provides runtime diagnostics, documentation search, browser automation, and development workflow automation for Next.js projects.
What is next-devtools-mcp?
next-devtools-mcp is an MCP server that gives AI coding agents powerful Next.js development capabilities:
- Runtime Diagnostics (Next.js 16+): Query running Next.js applications for errors, routes, logs, and real-time state
- Documentation Search: Access official Next.js docs and knowledge base directly in conversations
- Browser Automation: Test and verify Next.js pages with Playwright integration
- Development Workflows: Automated upgrade guides and feature enablement prompts
Installation
Quick Install (Recommended)
Install for all detected AI coding agents in your project:
npx add-mcp next-devtools-mcp@latest
Add -y to skip confirmation. Add -g for global installation across all projects.
Manual Installation
Add to your MCP client configuration file:
{
"mcpServers": {
"next-devtools": {
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
}
}
}
Agent-Specific Configuration
Claude Code / Claude Desktop:
claude mcp add next-devtools npx next-devtools-mcp@latest
Cursor:
Click: Install in Cursor
Or manually: Cursor Settings → MCP → New MCP Server
Codex:
codex mcp add next-devtools -- npx next-devtools-mcp@latest
For Windows 11, update .codex/config.toml:
env = { SystemRoot="C:\\Windows", PROGRAMFILES="C:\\Program Files" }
startup_timeout_ms = 20_000
VS Code / Copilot:
code --add-mcp '{"name":"next-devtools","command":"npx","args":["-y","next-devtools-mcp@latest"]}'
Requirements
- Node.js v20.19+ (latest maintenance LTS)
- npm or pnpm
- For runtime diagnostics: Next.js 16+ dev server running
Core Workflow
1. Always Initialize First
CRITICAL: Call the init tool at the start of every Next.js session:
Use the init tool to set up Next.js DevTools context
This establishes proper documentation requirements and context. For automation, add to your agent's configuration:
.claude/CLAUDE.md or .cursorrules:
When starting work on a Next.js project, ALWAYS call the `init` tool from
next-devtools-mcp FIRST to set up proper context and establish documentation
requirements. Do this automatically without being asked.
2. Start Next.js Dev Server (for Runtime Diagnostics)
For Next.js 16+ projects:
npm run dev
pnpm dev
MCP is enabled by default at http://localhost:3000/_next/mcp. The next-devtools-mcp server auto-discovers and connects.
MCP Tools Reference
init
Initialize Next.js DevTools MCP context. Call this first in every session.
{
project_path?: string
}
Example prompts:
- "Use the init tool to set up Next.js DevTools context"
- "Initialize Next.js DevTools for this project"
What it does:
- Sets up AI assistant context for Next.js development
- Establishes documentation-first approach (use
nextjs_docs for all queries)
- Documents all available tools and workflows
- Provides best practices checklist
nextjs_docs
Search and retrieve official Next.js documentation.
{
action: "search",
query: string,
routerType?: "app" | "pages" | "all"
}
{
action: "get",
path: string,
anchor?: string
}
Example workflow:
Search Next.js docs for generateMetadata
Agent uses:
nextjs_docs with action: "search", query: "generateMetadata"
- Reviews search results (titles, paths, snippets)
nextjs_docs with action: "get", path: "/docs/app/api-reference/functions/generate-metadata"
- Provides answer based on official documentation
Common searches:
- "Search Next.js docs for metadata generation"
- "Find Next.js documentation on generateStaticParams"
- "Look up middleware configuration in Next.js docs"
- "Search App Router caching documentation"
nextjs_index
Query available runtime diagnostic resources from Next.js 16+ dev server.
{}
Example prompts:
- "What runtime diagnostics are available?"
- "Show me what I can query from the dev server"
- "List available Next.js MCP resources"
Output: List of available resource URIs (errors, routes, logs, etc.)
nextjs_call
Call a specific runtime diagnostic resource from Next.js 16+ dev server.
{
uri: string
}
Example workflows:
Check for errors:
Next Devtools, what errors are in my Next.js application?
Agent calls: nextjs_call with uri: "nextjs://errors"
View route structure:
Next Devtools, show me the structure of my routes
Agent calls: nextjs_call with uri: "nextjs://routes"
Check dev server logs:
Next Devtools, what's in the development server logs?
Agent calls: nextjs_call with uri: "nextjs://logs"
Common URIs:
nextjs://errors - Runtime errors and warnings
nextjs://routes - App Router route structure
nextjs://logs - Development server logs
nextjs://config - Next.js configuration
nextjs://env - Environment variables
browser_eval
Automate browser testing with Playwright. Use for verifying pages, testing interactions, and detecting runtime issues.
{
action: "start",
browser?: "chrome" | "firefox" | "webkit" | "msedge",
headless?: boolean
}
{
action: "navigate",
url: string
}
{
action: "click",
selector: string
}
{
action: "type",
selector: string,
text: string
}
{
action: "fill_form",
fields: Array<{ selector: string; value: string }>
}
{
action: "evaluate",
script: string
}
{
action: "screenshot",
path?: string
}
{
action: "console_messages"
}
{
:
}
Example workflow - Test Next.js page:
Test the homepage at localhost:3000 and take a screenshot
Agent executes:
{ action: "start", headless: true }
{ action: "navigate", url: "http://localhost:3000" }
{ action: "evaluate", script: "document.querySelector('h1')?.textContent" }
{ action: "screenshot" }
{ action: "console_messages" }
{ action: "close" }
Common patterns:
Verify upgrade (Next.js 15 → 16):
Verify that my app works on localhost:3000 after the upgrade
Test navigation:
Test navigating from home to /about page
Check for hydration errors:
Load the page and check for React hydration errors in the console
Important: For Next.js 16+, prefer nextjs_index and nextjs_call over browser_eval console messages for error detection.
Pre-Configured Prompts
upgrade-nextjs-16
Guide for upgrading from Next.js 15 to Next.js 16.
Help me upgrade my Next.js app to version 16
What it does:
- Analyzes current project setup
- Updates dependencies in
package.json
- Applies codemods for breaking changes
- Updates configuration files
- Tests the upgrade with browser verification
enable-cache-components
Enable Cache Components mode in Next.js 16.
Enable Cache Components in my Next.js app
What it does:
- Adds
cache: "components" to next.config.ts
- Migrates components to use
"use cache" directive
- Updates data fetching patterns
- Provides examples and documentation
Knowledge Base Resources
The MCP server includes focused documentation resources automatically available to agents:
Cache Components (12 sections):
cache-components://overview
cache-components://core-mechanics
cache-components://public-caches
cache-components://private-caches
cache-components://runtime-prefetching
cache-components://request-apis
cache-components://cache-invalidation
cache-components://advanced-patterns
cache-components://build-behavior
cache-components://error-patterns
cache-components://test-patterns
cache-components://reference
Migration Guides:
nextjs16://migration/beta-to-stable
nextjs16://migration/examples
Fundamentals:
nextjs-fundamentals://use-client
Resources are loaded on-demand by the agent as needed.
Real-World Examples
Example 1: Debug Runtime Error
User request:
My Next.js app shows a blank page. Help me figure out what's wrong.
Agent workflow:
init({ project_path: "." })
nextjs_call({ uri: "nextjs://errors" })
nextjs_docs({
action: "search",
query: "window is not defined server component"
})
nextjs_docs({
action: "get",
path: "/docs/app/building-your-application/rendering/server-components"
})
Example 2: Upgrade to Next.js 16 with Cache Components
User request:
Upgrade my app to Next.js 16 and enable Cache Components
Agent workflow:
init({ project_path: "." })
browser_eval({ action: "start" })
browser_eval({ action: "navigate", url: "http://localhost:3000" })
browser_eval({ action: "console_messages" })
browser_eval({ action: "screenshot" })
browser_eval({ action: "close" })
nextjs_call({ uri: "nextjs://errors" })
Example 3: Implement Metadata Generation
User request:
Add proper SEO metadata to my blog post page
Agent workflow:
nextjs_docs({
action: "search",
query: "generateMetadata"
})
nextjs_docs({
action: "get",
path: "/docs/app/api-reference/functions/generate-metadata"
})
Example implementation:
import { Metadata } from 'next'
interface Props {
params: { slug: string }
}
export async function generateMetadata({ params }: Props): Promise<Metadata> {
const post = await fetch(`${process.env.API_URL}/posts/${params.slug}`)
.then(res => res.json())
return {
title: post.title,
description: post.excerpt,
openGraph: {
title: post.title,
description: post.excerpt,
images: [{ url: post.image }],
},
}
}
export default async function BlogPost({ params }: Props) {
const post = await fetch(`${process.env.API_URL}/posts/`)
.( res.())
(
)
}
Example 4: Migrate to Cache Components
User request:
Convert my data fetching component to use Cache Components
Before (traditional approach):
export const revalidate = 3600
export default async function PostsPage() {
const posts = await fetch('https://api.example.com/posts')
.then(res => res.json())
return (
<div>
{posts.map(post => (
<article key={post.id}>
<h2>{post.title}</h2>
</article>
))}
</div>
)
}
Agent searches docs:
nextjs_docs({
action: "search",
query: "use cache directive"
})
After (Cache Components):
import { Posts } from './Posts'
export default function PostsPage() {
return <Posts />
}
"use cache"
export const revalidate = 3600
export async function Posts() {
const posts = await fetch('https://api.example.com/posts')
.then(res => res.json())
return (
<div>
{posts.map(post => (
<article key={post.id}>
<h2>{post.title}</h2>
</article>
))}
</div>
)
}
Configuration Patterns
next.config.ts with Cache Components
import type { NextConfig } from 'next'
const config: NextConfig = {
experimental: {
cache: 'components',
},
}
export default config
Environment Variables
Use environment variables for API keys and sensitive data:
API_URL=https://api.example.com
NEXTAUTH_SECRET=your-secret-here
NEXTAUTH_URL=http://localhost:3000
Access in code:
const apiUrl = process.env.API_URL
const secret = process.env.NEXTAUTH_SECRET
MCP Auto-Discovery
Next.js 16+ automatically enables MCP at:
http://localhost:{PORT}/_next/mcp
No configuration needed. The next-devtools-mcp server discovers it automatically.
Troubleshooting
Issue: Runtime diagnostics not available
Symptoms: nextjs_index returns empty or nextjs_call fails
Solution:
- Verify Next.js 16+ is installed:
npm list next
- Ensure dev server is running:
npm run dev
- Check dev server logs for MCP endpoint
- Verify port (default 3000, check
next.config.ts for custom port)
Issue: Documentation search returns no results
Symptoms: nextjs_docs with action: "search" returns empty
Solution:
- Try broader search terms (e.g., "metadata" instead of "generateMetadata function")
- Check spelling
- Try
routerType: "all" to search both App and Pages Router docs
- Use multiple searches for complex topics
Issue: Browser automation fails on first run
Symptoms: browser_eval with action: "start" times out
Solution:
- Playwright installs browsers on first run (this is automatic but takes time)
- Increase timeout expectations for first use
- On Windows 11 with Codex, ensure environment variables are set in
.codex/config.toml
- Run manually once:
npx playwright install chromium
Issue: Init tool not being called
Symptoms: Agent doesn't use Next.js docs properly, context is missing
Solution:
- Explicitly prompt: "Use the init tool to set up Next.js DevTools context"
- Add auto-init instruction to agent config (see Core Workflow section)
- Verify MCP server is connected (check agent's MCP status)
Issue: Upgrade prompt makes incorrect changes
Symptoms: Breaking changes after running upgrade-nextjs-16 prompt
Solution:
- Always commit code before running upgrades
- Review changes made by codemods
- Use
nextjs_docs to verify migration patterns
- Test with
browser_eval before deploying
- Check
nextjs://errors for runtime issues
Best Practices
1. Documentation-First Approach
Always use nextjs_docs before implementing Next.js features:
nextjs_docs({ action: "search", query: "feature-name" })
nextjs_docs({ action: "get", path: "/docs/..." })
2. Runtime Diagnostics Over Browser Console
For Next.js 16+ projects, prefer built-in diagnostics:
nextjs_call({ uri: "nextjs://errors" })
browser_eval({ action: "console_messages" })
Browser automation is still valuable for visual verification and interaction testing.
3. Initialize Every Session
Make init the first tool call:
init({ project_path: "." })
Or automate with agent configuration (see Core Workflow).
4. Two-Step Documentation Workflow
Don't skip the search step:
nextjs_docs({ action: "search", query: "..." })
nextjs_docs({ action: "get", path: "..." })
This ensures you get the most relevant and up-to-date documentation.
5. Verify Changes with Multiple Tools
After making changes, use a combination:
nextjs_call({ uri: "nextjs://errors" })
browser_eval({ action: "start" })
browser_eval({ action: "navigate", url: "http://localhost:3000" })
browser_eval({ action: "screenshot" })
browser_eval({ action: "close" })
nextjs_call({ uri: "nextjs://routes" })
Common User Prompts
Recognize and handle these user requests:
- "Help me debug my Next.js app" → Use
nextjs_call for errors
- "Upgrade to Next.js 16" → Use upgrade-nextjs-16 prompt
- "Enable Cache Components" → Use enable-cache-components prompt
- "Search Next.js docs for X" → Use
nextjs_docs two-step workflow
- "Test my page at localhost:3000" → Use
browser_eval workflow
- "What errors are showing?" → Use
nextjs_call with nextjs://errors
- "Show my routes" → Use
nextjs_call with nextjs://routes
- "Check the dev server logs" → Use
nextjs_call with nextjs://logs
- "Add metadata to my page" → Search docs, then implement
generateMetadata
- "How do I configure X in Next.js?" → Use
nextjs_docs to find config docs
Summary
The next-devtools-mcp skill enables AI coding agents to:
- Initialize properly with the
init tool (critical first step)
- Access official Next.js documentation on-demand with
nextjs_docs
- Query runtime diagnostics from Next.js 16+ dev servers with
nextjs_index and nextjs_call
- Automate browser testing with
browser_eval using Playwright
- Execute complex workflows like upgrades and migrations with pre-configured prompts
- Access knowledge base resources for Cache Components, migrations, and fundamentals
Always prioritize documentation lookup over assumptions, verify changes with runtime diagnostics, and test thoroughly with browser automation.