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

@ginopoitier/vue-mcp

v0.1.1

Published

MCP server for vue-kit — Vue SFC analysis, Pinia store inspection, TypeScript type checking, and Vite project structure tools for Claude Code.

Readme

Vue MCP Server

MCP server for vue-kit — Vue 3 SFC analysis, Pinia store inspection, TypeScript type checking, and Vite project structure tools for Claude Code.

Tools

| Tool | Description | |------|-------------| | analyze_vue_components | Scan all .vue files for: missing <script setup>, Options API usage, untyped props/emits, inline styles, SignalR listener leaks | | find_vue_component | Locate a component by name and return its script, props, and template excerpt | | validate_pinia_stores | Scan stores for Composition vs Options API, missing return statements, async computed | | get_vue_type_errors | Run vue-tsc --noEmit and return TypeScript type errors | | get_vue_composables | List composable files (use*.ts) and their exported functions | | get_vue_project_structure | Overview: Vite config, router routes, proxy paths, file counts | | find_missing_api_types | Find api.ts files with Promise<any> or missing typed interfaces |

Tech Stack

  • Runtime: Node.js 20+
  • MCP SDK: @modelcontextprotocol/sdk
  • Vue parsing: @vue/compiler-sfc
  • Type checking: delegates to vue-tsc / tsc in the target project
  • File scanning: glob

Build

npm install
npm run build

Run

# Against a specific project
node dist/index.js --project /path/to/vue-project

# Auto-detect from cwd
node dist/index.js

MCP Config

In .mcp.json of any Claude Code project:

{
  "mcpServers": {
    "vue-mcp": {
      "command": "node",
      "args": ["G:/Claude/Kits/MCP/Vue/vue-mcp/dist/index.js", "--project", "${workspaceFolder}"]
    }
  }
}

Or when published as an npm global package (npm install -g @ginopoitier/vue-mcp):

{
  "mcpServers": {
    "vue-mcp": {
      "command": "vue-mcp",
      "args": ["--project", "${workspaceFolder}"]
    }
  }
}