- Home
- MCP servers
- VueUse
VueUse
- typescript
0
GitHub Stars
typescript
Language
3 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kovoor-vueuse-mcp": {
"command": "npx",
"args": [
"vueuse-mcp"
],
"env": {
"GITHUB_TOKEN": "YOUR_GITHUB_TOKEN"
}
}
}
}VueUse MCP is a server that lets AI coding agents access VueUse documentation in real time. You can search for composables, read their full docs, and get usage suggestions as you code, without leaving your editor or browser.
How to use
You connect this MCP server to an AI coding agent, such as Claude Code, and the agent automatically looks up VueUse documentation while you write code. When you ask about a specific composable, the agent can search for relevant results, fetch full documentation, and generate code that uses the correct API, options, and types.
How to install
Prerequisites: Node.js and npm. Install the MCP server using the provided runtime command and run it in your development environment.
# Install and run the MCP server using npx
npx vueuse-mcp
Additional notes
The server exposes tools to search composables, read full composable documentation, and get categorized results. It can be integrated into your preferred MCP client configuration using the standard npx-based command, and can read VueUse documentation live as you code.
Available tools
search_composables
Search by name, keyword, or concept and return ranked results with descriptions.
get_composable_docs
Retrieve full documentation for a composable, including signature, types, options, examples, and related functions.
suggest_composable
Provide a natural language use case and receive ranked composable suggestions with trade-offs.
list_categories
List all categories with composable counts and optional package filters.