npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vite-vue-mcp-inspect

v1.5.0

Published

Vite plugin that turns a running Vue app into an MCP server

Readme

vite-vue-mcp-inspect

Vite plugin that turns a running Vue app into an MCP server.

Use it to inspect and mutate runtime Vue state from AI clients while developing.

Install

pnpm add -D vite-vue-mcp-inspect

Minimal Setup

// vite.config.ts
import { defineConfig } from 'vite'
import VueMcp from 'vite-vue-mcp-inspect'

export default defineConfig({
  plugins: [VueMcp()],
})

When Vite starts, the MCP endpoint is available at /__mcp/mcp by default. The plugin automatically uses https:// in the MCP URL when Vite is running with server.https.

Example with certificates:

// vite.config.ts
import fs from 'node:fs'
import { defineConfig } from 'vite'
import VueMcp from 'vite-vue-mcp-inspect'

export default defineConfig({
  server: {
    https: {
      key: fs.readFileSync('./certs/localhost-key.pem'),
      cert: fs.readFileSync('./certs/localhost.pem'),
    },
  },
  plugins: [VueMcp()],
})

Built-in Tools

| Tool | Description | | ---- | ----------- | | get-component-tree | Compact component hierarchy | | get-component-tree-detailed | Full tree with component names, files, and state | | get-component-state | Props, data, computed, and setup state | | edit-component-state | Mutate component state in browser runtime | | highlight-component | Highlight a component in the viewport | | scroll-to-component | Scroll to a specific component | | get-component-by-file | Find component instance by source file path | | get-reactivity-relationships | Build dependency graph for component setup state | | get-router-info | Registered routes and current route | | navigate-to-route | Navigate with Vue Router | | get-pinia-tree | List registered Pinia stores | | get-pinia-state | Read full state for one store | | edit-pinia-state | Mutate Pinia state | | get-app-info | Vue version, plugins, router status | | reload-app | Trigger full page reload |

Configuration

VueMcp({
  host: 'localhost',
  mcpPath: '/__mcp',
  browserTimeout: 10_000,
  printUrl: true,

  updateCursorMcpJson: true,
  updateWindsurfMcpJson: true,
  updateVscodeMcpJson: true,
  updateClaudeDesktopConfig: false,

  mcpServer: async (vite, ctx) => {
    // return your own McpServer to replace default tools
  },

  mcpServerSetup: async (server, vite) => {
    // add custom tools on top of built-in ones
  },
})

Options Reference

| Option | Type | Default | Description | | ------ | ---- | ------- | ----------- | | host | string | 'localhost' | Hostname used when printing the MCP URL | | mcpPath | string | '/__mcp' | Route prefix for MCP HTTP endpoints | | browserTimeout | number | 10000 | Timeout in ms for browser-side tool calls | | printUrl | boolean | true | Print MCP URL on dev server start | | appendTo | string \| RegExp | - | Inject runtime client into specific module | | updateCursorMcpJson | boolean \| IdeMcpConfig | true | Auto-update .cursor/mcp.json | | updateWindsurfMcpJson | boolean \| IdeMcpConfig | true | Auto-update .windsurf/mcp.json | | updateVscodeMcpJson | boolean \| IdeMcpConfig | true | Auto-update .vscode/mcp.json | | updateClaudeDesktopConfig | boolean \| ClaudeDesktopConfig | false | Auto-update Claude Desktop config | | mcpServer | (vite, ctx) => McpServer | - | Replace built-in MCP server | | mcpServerSetup | (server, vite) => void \| McpServer | - | Extend built-in MCP server |

IDE Integration

The plugin can auto-write MCP server entries when corresponding config directories exist.

| IDE | Config file | Default | | --- | ----------- | ------- | | Cursor | .cursor/mcp.json | enabled | | Windsurf | .windsurf/mcp.json | enabled | | VS Code | .vscode/mcp.json | enabled | | Claude Desktop | platform config | disabled |

Server name override example:

VueMcp({
  updateVscodeMcpJson: { serverName: 'my-app-mcp' },
})

License

MIT