轩辕镜像
轩辕镜像专业版
个人中心搜索镜像
交易
充值流量我的订单
工具
工单支持镜像收录Run 助手IP 归属地密码生成Npm 源Pip 源
帮助
常见问题我要吐槽
其他
关于我们网站地图

官方QQ群: 13763429

轩辕镜像
镜像详情
mcp/next-devtools-mcp
官方博客使用教程热门镜像工单支持
本站面向开发者与科研用户,提供开源镜像的搜索和下载加速服务。
所有镜像均来源于原始开源仓库,本站不存储、不修改、不传播任何镜像内容。
轩辕镜像 - 国内开发者首选的专业 Docker 镜像下载加速服务平台 - 官方QQ群:13763429 👈点击免费获得技术支持。
本站面向开发者与科研用户,提供开源镜像的搜索和下载加速服务。所有镜像均来源于原始开源仓库,本站不存储、不修改、不传播任何镜像内容。

本站支持搜索的镜像仓库:Docker Hub、gcr.io、ghcr.io、quay.io、k8s.gcr.io、registry.gcr.io、elastic.co、mcr.microsoft.com

next-devtools-mcp Docker 镜像下载 - 轩辕镜像

next-devtools-mcp 镜像详细信息和使用指南

next-devtools-mcp 镜像标签列表和版本信息

next-devtools-mcp 镜像拉取命令和加速下载

next-devtools-mcp 镜像使用说明和配置指南

Docker 镜像加速服务 - 轩辕镜像平台

国内开发者首选的 Docker 镜像加速平台

极速拉取 Docker 镜像服务

相关 Docker 镜像推荐

热门 Docker 镜像下载

next-devtools-mcp
mcp/next-devtools-mcp

next-devtools-mcp 镜像详细信息

next-devtools-mcp 镜像标签列表

next-devtools-mcp 镜像使用说明

next-devtools-mcp 镜像拉取命令

Docker 镜像加速服务

轩辕镜像平台优势

镜像下载指南

相关 Docker 镜像推荐

next-devtools-mcp is a Model Context Protocol (MCP) server that provides Next.js development tool...
0 次下载activemcp
🚀轩辕镜像专业版更稳定💎一键安装 Docker 配置镜像源
镜像简介版本下载
🚀轩辕镜像专业版更稳定💎一键安装 Docker 配置镜像源

next-devtools-mcp 镜像详细说明

next-devtools-mcp 使用指南

next-devtools-mcp 配置说明

next-devtools-mcp 官方文档

Next.js DevTools MCP MCP Server

next-devtools-mcp is a Model Context Protocol (MCP) server that provides Next.js development tools and utilities for AI coding assistants.

What is an MCP Server?

MCP Info

AttributeDetails
Docker Imagemcp/next-devtools-mcp
Authorkgprs
Repository[***]

Image Building Info

AttributeDetails
Dockerfile[***]
Docker Image built byDocker Inc.
Docker Scout Health Score!Docker Scout Health Score
Verify SignatureCOSIGN_REPOSITORY=mcp/signatures cosign verify mcp/next-devtools-mcp --key [***]
Licence

Available Tools (5)

Tools provided by this ServerShort Description
browser_evalAutomate and test web applications using Playwright browser automation.
enable_cache_componentsComplete Cache Components setup for Next.js 16.
nextjs_docsSearch and retrieve Next.js official documentation.
nextjs_runtimeInteract with a running Next.js development server's MCP endpoint to query runtime information, diagnostics, and internals.
upgrade_nextjs_16Guide through upgrading Next.js to version 16.

Tools Details

Tool: browser_eval

Automate and test web applications using Playwright browser automation. This tool connects to playwright-mcp server and provides access to all Playwright capabilities.

CRITICAL FOR PAGE VERIFICATION: When verifying pages in Next.js projects (especially during upgrades or testing), you MUST use browser automation to load pages in a real browser instead of curl or simple HTTP requests. This is because:

  • Browser automation actually renders the page and executes JavaScript (curl only fetches HTML)
  • Detects runtime errors, hydration issues, and client-side problems that curl cannot catch
  • Verifies the full user experience, not just HTTP status codes
  • Captures browser console errors and warnings via console_messages action

IMPORTANT FOR NEXT.JS PROJECTS: If working with a Next.js application, PRIORITIZE using the 'nextjs_runtime' tool instead of browser console log forwarding. Next.js has built-in MCP integration that provides superior error reporting, build diagnostics, and runtime information directly from the Next.js dev server. Only use browser_eval's console_messages action as a fallback when nextjs_runtime tools are not available or when you specifically need to test client-side browser behavior that Next.js runtime cannot capture.

Available actions:

  • start: Start browser automation (automatically installs if needed). Verbose logging is always enabled.
  • navigate: Navigate to a URL
  • click: Click on an element
  • type: Type text into an element
  • fill_form: Fill multiple form fields at once
  • evaluate: Execute JavaScript in browser context
  • screenshot: Take a screenshot of the page
  • console_messages: Get browser console messages (for Next.js, prefer nextjs_runtime tool instead)
  • close: Close the browser
  • drag: Perform drag and drop
  • upload_file: Upload files
  • list_tools: List all available browser automation tools from the server

Note: The playwright-mcp server will be automatically installed if not present.

Tool: enable_cache_components

Complete Cache Components setup for Next.js 16.

Handles ALL steps for enabling and verifying Cache Components:

  • Configuration: Updates cacheComponents flag (experimental in 16.0.0, stable in canary > 16), removes incompatible flags
  • Dev Server: Starts dev server with MCP enabled (__NEXT_EXPERIMENTAL_MCP_SERVER=true)
  • Error Detection: Loads all routes via browser automation, collects errors using Next.js MCP
  • Automated Fixing: Adds Suspense boundaries, "use cache" directives, generateStaticParams, cacheLife profiles, cache tags
  • Verification: Validates all routes work with zero errors

Key Features:

  • One-time dev server start (no restarts needed)
  • Automated error detection using Next.js MCP tools
  • Browser-based testing with browser automation
  • Fast Refresh applies fixes instantly
  • Comprehensive fix strategies for all error types
  • Support for "use cache", "use cache: private", Suspense boundaries
  • Cache invalidation with cacheTag() and cacheLife() configuration

Requires:

  • Next.js 16.0.0+ (stable or canary only - beta versions are NOT supported)
  • Clean working directory preferred
  • Browser automation installed (auto-installed if needed)

This tool embeds complete knowledge base for:

  • Cache Components mechanics
  • Error patterns and solutions
  • Caching strategies (static vs dynamic)
  • Advanced patterns (cacheLife, cacheTag, draft mode)
  • Build behavior and prefetching
  • Test-driven patterns from 125+ fixtures

Tool: nextjs_docs

Search and retrieve Next.js official documentation. First searches MCP resources (Next.js 16 knowledge base) for latest information, then falls back to official Next.js documentation if nothing is found. Provides access to comprehensive Next.js guides, API references, and best practices.

Tool: nextjs_runtime

Interact with a running Next.js development server's MCP endpoint to query runtime information, diagnostics, and internals.

WHEN TO USE THIS TOOL - Use proactively in these scenarios:

  1. Before implementing ANY changes to the app: When asked to add, modify, or fix anything in the application:

    • "Add a loading state" → Check current component structure and routes first
    • "Fix the navigation" → Inspect existing routes and components
    • "Update the API endpoint" → Query current routes and data flows
    • "Add error handling" → Check runtime errors and component hierarchy
    • "Refactor the auth logic" → Inspect current auth implementation and routes
    • "Optimize performance" → Check runtime diagnostics and component tree Use this to understand where changes should be made and what currently exists.
  2. For diagnostic and investigation questions:

    • "What's happening?" / "What's going on?" / "Why isn't this working?"
    • "Check the errors" / "See what's wrong"
    • "What routes are available?" / "Show me the routes"
    • "Clear the cache" / "Reset everything"
    • Questions about build status, compilation errors, or runtime diagnostics
  3. For agentic codebase search: Use this as FIRST CHOICE for searching the currently running app. If not found, fallback to static codebase search tools.

KEY PRINCIPLE: If the request involves the running Next.js application (whether to investigate OR modify it), query the runtime FIRST to understand current state before proceeding.

Start by calling action='list_tools' to discover what runtime information is available, then use those tools to gather context.

REQUIREMENTS:

  • Next.js 16 or later (MCP support was added in v16)
  • If you're on Next.js 15 or earlier, use the 'upgrade-nextjs-16' MCP prompt to upgrade first

Next.js exposes an MCP (Model Context Protocol) endpoint at /_next/mcp when started with:

  • For Next.js < 16: experimental.mcpServer: true in next.config.js, OR __NEXT_EXPERIMENTAL_MCP_SERVER=true environment variable
  • For Next.js >= 16: MCP is enabled by default (no configuration needed)

This tool allows you to:

  1. Discover running Next.js dev servers and their ports
  2. List available MCP tools/functions exposed by the Next.js runtime
  3. Call those tools to interact with Next.js internals (e.g., get errors,get route info, get logs, runtime diagnostics, etc.)

Typical workflow:

  1. Use action='discover_servers' to find running Next.js servers (optional - auto-discovery will be attempted)
  2. Use action='list_tools' with the discovered port to see available tools and their input schemas
  3. Use action='call_tool' with port, toolName, and args (as an object, only if required) to invoke a specific tool

IMPORTANT: When calling tools:

  • The 'args' parameter MUST be an object (e.g., {key: "value"}), NOT a string
  • If a tool doesn't require arguments, OMIT the 'args' parameter entirely - do NOT pass {} or "{}"
  • Check the tool's inputSchema from 'list_tools' to see what arguments are required

If the MCP endpoint is not available:

  1. Check if you're running Next.js 16+ (if not, use the 'upgrade-nextjs-16' prompt)
  2. For Next.js < 16: Ensure the dev server is started with __NEXT_EXPERIMENTAL_MCP_SERVER=true or experimental.mcpServer: true
  3. For Next.js >= 16: MCP should be enabled by default - check if the dev server is running

Tool: upgrade_nextjs_16

Guide through upgrading Next.js to version 16.

CRITICAL: Runs the official codemod FIRST (requires clean git state) for automatic upgrades and fixes, then handles remaining issues manually. The codemod upgrades Next.js, React, and React DOM automatically.

Covers:

  • Next.js version upgrade to 16
  • Async API changes (params, searchParams, cookies, headers)
  • Config migration (next.config changes)
  • Image defaults and optimization
  • Parallel routes and dynamic segments
  • Deprecated API removals
  • React 19 compatibility

The codemod requires:

  • Clean git working directory (commit or stash changes first)
  • Node.js 18+
  • npm/pnpm/yarn/bun installed

After codemod runs, provides manual guidance for any remaining issues not covered by the codemod.

Use this MCP Server

{
  "mcpServers": {
    "next-devtools-mcp": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "mcp/next-devtools-mcp"
      ]
    }
  }
}

Why is it safer to run MCP Servers with Docker?

查看更多 next-devtools-mcp 相关镜像 →
nextcloud logo
nextcloud
by library
官方
Nextcloud手动构建Docker镜像是一款针对开源文件同步与共享平台Nextcloud的容器化部署包,支持用户通过手动配置方式构建,可灵活适配自建服务器环境,提供安全的文件存储、同步、共享及协作功能,适用于个人或企业搭建私有云存储系统,兼具部署便捷性与自定义扩展性,助力实现数据自主管理与高效协作。
4397500M+ pulls
上次更新:1 天前
nextstrain/nextclade logo
nextstrain/nextclade
by nextstrain
用于病毒基因组比对、突变检测、分支分配、质量检查及系统发育定位的病毒基因组分析工具。
101M+ pulls
上次更新:11 天前
nextstrain/nextclade_builder logo
nextstrain/nextclade_builder
by nextstrain
Nextclade开发专用Docker镜像,用于构建Nextclade CLI、Web界面及项目维护,主要用于自动化流程,普通用户通常无需直接使用。
500K+ pulls
上次更新:9 天前
nextstrain/nextalign logo
nextstrain/nextalign
by nextstrain
已弃用的病毒基因组比对工具,推荐使用nextstrain/nextclade替代。
10K+ pulls
上次更新:11 天前

常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 加速,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像免费版与专业版有分别支持哪些镜像?

免费版仅支持 docker.io;专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

轩辕镜像下载加速使用手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

🔐

登录方式进行 Docker 镜像下载加速教程

通过 Docker 登录方式配置轩辕镜像加速服务,包含7个详细步骤

🐧

Linux Docker 镜像下载加速教程

在 Linux 系统上配置轩辕镜像源,支持主流发行版

🖥️

Windows/Mac Docker 镜像下载加速教程

在 Docker Desktop 中配置轩辕镜像加速,适用于桌面系统

📦

Docker Compose 镜像下载加速教程

在 Docker Compose 中使用轩辕镜像加速,支持容器编排

📋

K8s containerd 镜像下载加速教程

在 k8s 中配置 containerd 使用轩辕镜像加速

🔧

宝塔面板 Docker 镜像下载加速教程

在宝塔面板中配置轩辕镜像加速,提升服务器管理效率

💾

群晖 NAS Docker 镜像下载加速教程

在 Synology 群晖NAS系统中配置轩辕镜像加速

🐂

飞牛fnOS Docker 镜像下载加速教程

在飞牛fnOS系统中配置轩辕镜像加速

📱

极空间 NAS Docker 镜像下载加速教程

在极空间NAS中配置轩辕镜像加速

⚡

爱快路由 ikuai Docker 镜像下载加速教程

在爱快ikuai系统中配置轩辕镜像加速

🔗

绿联 NAS Docker 镜像下载加速教程

在绿联NAS系统中配置轩辕镜像加速

🌐

威联通 NAS Docker 镜像下载加速教程

在威联通NAS系统中配置轩辕镜像加速

📦

Podman Docker 镜像下载加速教程

在 Podman 中配置轩辕镜像加速,支持多系统

📚

ghcr、Quay、nvcr、k8s、gcr 等仓库下载镜像加速教程

配置轩辕镜像加速9大主流镜像仓库,包含详细配置步骤

🚀

专属域名方式进行 Docker 镜像下载加速教程

无需登录即可使用轩辕镜像加速服务,更加便捷高效

需要其他帮助?请查看我们的 常见问题 或 官方QQ群: 13763429

商务:17300950906
|©2024-2025 源码跳动
商务合作电话:17300950906|Copyright © 2024-2025 杭州源码跳动科技有限公司. All rights reserved.