{
"mcpServers": {
"vue-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 31 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Vue Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Vite plugin that exposes a Model Context Protocol (MCP) server for Vue applications. It lets AI agents (Cursor, Claude Desktop, etc.) inspect your running Vue app in real time — component tree, component state, and more.
Warning — This project is experimental and not production ready.
This project is heavily inspired by:
npm install vue-mcp-server
Add the plugin to your vite.config.ts:
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import VueMcpPlugin from "vue-mcp-server";
export default defineConfig({
plugins: [vue(), VueMcpPlugin()],
});
Start your dev server as usual (vite / npm run dev). The MCP endpoint is available at http://localhost:5173/__mcp.
Add the MCP server to your agent's configuration. For example, in Cursor (.cursor/mcp.json):
{
"mcpServers": {
"vue-mcp": {
"url": "http://localhost:5173/__mcp"
}
}
}
Adjust the port if your Vite dev server runs on a different one.
| Tool | Description | Parameters |
|------|-------------|------------|
| getInspectorTree | Returns the full Vue component tree | — |
| getComponentState | Returns the reactive state (refs, computed) of a component | nodeId — the node ID from the inspector tree (e.g. app-1:3) |
getInspectorTree to get the component tree and find the nodeId of the component you're interested in.getComponentState with that nodeId to inspect its reactive state.The plugin runs only in dev mode (apply: 'serve'). It:
/__mcp via Vite's dev server middleware.