Back to Browse

Vueuse MCP Server

by Kovoor
Developer ToolsModerate7.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Search, browse, and get suggestions for VueUse composables

About

Search, browse, and get suggestions for VueUse composables

Security Report

7.0
Moderate7.0Low Risk

Valid MCP server (2 strong, 4 medium validity signals). 3 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.

12 files analyzed · 4 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

network_websocket

Check that this permission is expected for this type of plugin.

clipboard

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-kovoor-vueuse-mcp": {
      "args": [
        "-y",
        "vueuse-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

VueUse MCP

MCP server that gives AI coding agents instant access to VueUse documentation — search composables, read docs, and get suggestions.

How It Works When You Code

This is an MCP (Model Context Protocol) server. When you connect it to an AI coding agent like Claude Code, the agent can automatically look up VueUse documentation while helping you write code.

For example, if you ask "help me track the mouse position in Vue," the agent will:

  1. Call search_composables or suggest_composable to find relevant composables
  2. Call get_composable_docs to read the full documentation for useMouse
  3. Write code using the correct API, options, and types — without you needing to look anything up

You don't need to manually call any tools. The agent decides when to use them based on your questions.

Quick Start

Claude Code

claude mcp add vueuse-mcp -- npx vueuse-mcp

Codex CLI

Add to your MCP config:

{
  "servers": {
    "vueuse": {
      "command": "npx",
      "args": ["vueuse-mcp"]
    }
  }
}

OpenCode

Add to your opencode.json:

{
  "mcp": {
    "vueuse": {
      "command": "npx",
      "args": ["vueuse-mcp"]
    }
  }
}

Available Tools

ToolDescription
search_composablesSearch by name, keyword, or concept. Returns ranked results with descriptions.
get_composable_docsGet full docs for a composable — signature, types, options, examples, related functions.
suggest_composableDescribe a use case in natural language and get ranked suggestions with trade-offs.
list_categoriesList all categories with composable counts. Optionally filter by package.

Keeping Data Fresh

The composable data is scraped from the VueUse GitHub repo. To update:

npm run scrape && npm run build

Set a GITHUB_TOKEN environment variable to avoid rate limits during scraping. See .env.example.

Development

git clone https://github.com/kovoor/vueuse-mcp.git
cd vueuse-mcp
npm install
npm run scrape    # fetch composable data from GitHub
npm run build     # compile TypeScript
npm start         # run the server

Contributing

See CONTRIBUTING.md for how to add tools, update the scrape pipeline, and submit PRs.

Reviews

No reviews yet

Be the first to review this server!