Skip to main content
You are viewing Pre-Alpha documentation.
Vuetify0 Logo
Theme
Mode
Accessibility
Vuetify
Vuetify One

Sign in to Vuetify One

Access premium tools across the Vuetify ecosystem — Bin, Play, Studio, and more.

Not a subscriber? See what's included

Vuetify MCP

Vuetify MCP is a Model Context Protocol↗ server that gives AI assistants structured access to Vuetify and v0 APIs. Unlike llms.txt, MCP provides real-time, queryable documentation.


BeginnerFeb 12, 2026

Quick Start

Auto-detects your IDE and configures the hosted MCP server automatically:

bash
pnpm dlx @vuetify/mcp config --remote

Claude Code

Claude Code↗ is Anthropic’s agentic coding tool. Add the hosted MCP server directly via CLI:

bash
claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcp

Vuetify CLI

Add Vuetify AI rules and context to your project with the Vuetify CLI:

bash
pnpm dlx @vuetify/cli add mcp

[!NOTE] The CLI add mcp command sets up Ruler↗ project rules for AI context — it does not configure the MCP server connection. Use the interactive setup above to connect your IDE to the Vuetify MCP server.

Local Server

Run locally for offline access or custom configuration:

bash
pnpm dlx @vuetify/mcp

IDE Configuration

Manual configuration for each IDE. Use the interactive setup above for automatic configuration.

IDEConfig File (Linux)Config File (macOS)
Claude Code~/.claude.json or .mcp.json~/.claude.json or .mcp.json
Claude DesktopN/A~/Library/Application Support/Claude/claude_desktop_config.json
VS Code~/.config/Code/User/mcp.json~/Library/Application Support/Code/User/mcp.json
Cursor~/.config/Cursor/User/mcp.json~/Library/Application Support/Cursor/User/mcp.json
Windsurf~/.config/Windsurf/User/mcp.json~/Library/Application Support/Windsurf/User/mcp.json
Trae~/.config/Trae/User/mcp.json~/Library/Application Support/Trae/User/mcp.json
json
{
  "mcpServers": {
    "vuetify-mcp": {
      "url": "https://mcp.vuetifyjs.com/mcp"
    }
  }
}

Available Tools

ToolPurpose
get_vuetify0_composable_listList all composables by category
get_vuetify0_composable_guideDetailed composable documentation
get_vuetify0_component_listList all headless components
get_vuetify0_component_guideComponent documentation and examples
get_vuetify0_exports_listPackage subpath exports
get_vuetify0_installation_guideSetup instructions
get_vuetify0_package_guidePackage-specific documentation
Tip

The MCP server also includes tools for Vuetify 3/4 APIs, installation guides, and Vuetify Bins↗. Run tools/list to see all available tools.

Workflow

When using AI to build headless components:

  1. Exploreget_vuetify0_composable_list to see available primitives

  2. Learnget_vuetify0_composable_guide for detailed documentation

  3. Referenceget_vuetify0_component_guide for implementation patterns

Authentication

Vuetify Bins↗ require an API key from your Vuetify account.

Vuetify CLI

bash
pnpm dlx @vuetify/cli add mcp --api-key your-api-key

Claude Code

bash
claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcp \
  -e VUETIFY_API_KEY=your-api-key

Manual Configuration

json
{
  "mcpServers": {
    "vuetify-mcp": {
      "url": "https://mcp.vuetifyjs.com/mcp",
      "headers": {
        "Authorization": "Bearer your-api-key"
      }
    }
  }
}

Self-Hosting

Run an HTTP server for team or organization access:

bash
pnpm dlx @vuetify/mcp --transport=http --port=3000 --host=0.0.0.0 --stateless

Configure clients to use your server URL instead of mcp.vuetifyjs.com.

Was this page helpful?

© 2016-1970 Vuetify, LLC
Ctrl+/