Skip to main content
Glama

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.

Related MCP server: docpilot-mcp

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

Tool

Description

search_composables

Search by name, keyword, or concept. Returns ranked results with descriptions.

get_composable_docs

Get full docs for a composable — signature, types, options, examples, related functions.

suggest_composable

Describe a use case in natural language and get ranked suggestions with trade-offs.

list_categories

List 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.

A
license - permissive license
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    An MCP server that provides tools to fetch live, version-accurate documentation, changelogs, examples, and method signatures for npm and PyPI packages, preventing AI coding agents from hallucinating stale APIs.
    16
    ISC
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server that provides AI coding agents automatic access to AGENTS.md documentation from GitHub repositories, enabling understanding of codebase conventions and patterns.
    Apache 2.0
  • A
    license
    Not graded
    quality
    B
    maintenance
    An MCP server that gives AI coding assistants access to up-to-date API documentation via RAG by crawling documentation sites, indexing them into a vector store, and enabling semantic queries.
    MIT

View all related MCP servers

Related MCP Connectors

  • An MCP server that gives your AI access to the source code and docs of all public github repos

  • Augments MCP Server - A comprehensive framework documentation provider for Claude Code

  • Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kovoor/vueuse-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server