by nuxt-modules
Create Model Context Protocol servers directly within a Nuxt application using a file‑based, zero‑configuration API.
Nuxt MCP Toolkit provides a Nuxt module that automatically discovers and registers tools, resources, prompts, and apps for Model Context Protocol servers. By simply adding files in predefined directories, developers get fully typed MCP endpoints without manual wiring.
npx nuxt module add mcp-toolkit
npx npm install -D @nuxtjs/mcp-toolkit zod
tools/, resources/, prompts/, or apps/ in your Nuxt project. The module will auto‑import them and expose MCP endpoints.npx nuxt dev). The built‑in inspector in Nuxt DevTools lets you view and debug the MCP definitions.
A Nuxt module to easily create a Model Context Protocol (MCP) server directly in your Nuxt application. Define MCP tools, resources, and prompts with zero configuration - just create files and they're automatically discovered and registered.
Nuxt MCP Toolkit provides Agent Skills to help AI coding assistants build and manage MCP servers in your Nuxt application.
Install the skill from the published documentation site (Docus Agent Skills):
npx skills add https://mcp-toolkit.nuxt.dev
Once installed, your AI assistant will:
Setup an MCP server in my Nuxt app
Create a tool to fetch user data
Review my MCP implementation
Use nuxt to install the module automatically:
npx nuxt module add mcp-toolkit
Or install manually:
# npm
npm install -D @nuxtjs/mcp-toolkit zod
# yarn
yarn add -D @nuxtjs/mcp-toolkit zod
# pnpm
pnpm add -D @nuxtjs/mcp-toolkit zod
# bun
bun add -D @nuxtjs/mcp-toolkit zod
Contributions are welcome! Feel free to open an issue or submit a pull request.
# Install dependencies
pnpm install
# Generate type stubs
pnpm run dev:prepare
# Start the playground
pnpm run dev
# Run tests
pnpm run test
Published under the MIT license.
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
{
"mcpServers": {
"nuxt-mcp": {
"command": "npx",
"args": [
"nuxt",
"module",
"add",
"mcp-toolkit"
],
"env": {}
}
}
}claude mcp add nuxt-mcp npx nuxt module add mcp-toolkit