Vue MCP MCP Server

Provides a server enabling models to better understand Vue applications by exposing the component tree, state, routes, and Pinia data.

Local serverstdio 573

What is the Vue MCP MCP server?

If you already use Vue MCP, the vue mcp mcp server is the piece that lets your assistant work with it directly. Provides a server enabling models to better understand Vue applications by exposing the component tree, state, routes, and Pinia data.

What the server does

[![npm version][npm-version-src]][npm-version-href] [![npm downloads][npm-downloads-src]][npm-downloads-href] [![bundle][bundle-src]][bundle-href] [![License][license-src]][license-href]

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Options — /** * Print the MCP server URL in the console * * @default true */ printUrl?: boolean

Installation

Installation goes through your MCP client rather than a global install: point it at vite-plugin-vue-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Vue MCP's toolset — Options — is a fair guide to whether it matches your workflow. It is maintained by webfansplz; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Options/** * Print the MCP server URL in the console * * @default true */ printUrl?: boolean

How to install the Vue MCP MCP server

{
  "mcpServers": {
    "vue": {
      "command": "npx",
      "args": ["-y", "vite-plugin-vue-mcp"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Vue MCP to Options.

Frequently asked questions

Vue Mcp is a Vite plugin that provides a server to expose key information about your Vue application, including the component tree, component state, Vue Router configuration, and Pinia store data. This allows for easier debugging, analysis, and understanding of complex Vue apps.