Claude Desktop
Connect Vue Docs MCP to Claude Desktop.
Setup
Option A: Via Settings UI
- Open Claude Desktop
- Go to Settings > Connectors > Add Custom Connector
- Enter name:
Vue Docs - Enter URL:
https://mcp.vue-mcp.org/mcp - Click Save
Option B: Via Config File
Edit the Claude Desktop configuration file for your platform:
json
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"vue-docs": {
"url": "https://mcp.vue-mcp.org/mcp"
}
}
}json
// %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"vue-docs": {
"url": "https://mcp.vue-mcp.org/mcp"
}
}
}json
// ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"vue-docs": {
"url": "https://mcp.vue-mcp.org/mcp"
}
}
}Restart Claude Desktop after saving.
Verify
After restarting, you should see a tools icon in the chat input area. Click it to confirm vue-docs tools are listed.
Usage
Ask Claude anything about Vue in the chat:
- "How does
v-modelwork on custom components?" - "What lifecycle hooks are available in Vue 3?"
- "Compare
watchvswatchEffect"
Claude will automatically call the MCP tools and include documentation references in its response.
Self-Hosted Server
For a self-hosted instance using stdio transport:
json
// ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"vue-docs": {
"command": "uv",
"args": ["run", "--directory", "/path/to/vue-mcp", "vue-docs-server"]
}
}
}json
// %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"vue-docs": {
"command": "uv",
"args": ["run", "--directory", "C:\\path\\to\\vue-mcp", "vue-docs-server"]
}
}
}