JetBrains IDEs
Connect Vue Docs MCP to any JetBrains IDE (WebStorm, IntelliJ IDEA, PyCharm, etc.) with AI Assistant.
Setup
See the JetBrains AI Assistant MCP docs for full details.
Via Settings UI
- Go to Settings > Tools > AI Assistant > Model Context Protocol (MCP)
- Click + Add
- Select the HTTP tab
- Paste the configuration:
json
{
"mcpServers": {
"vue-docs": {
"url": "https://mcp.vue-mcp.org/mcp"
}
}
}- Click Apply
Via Config File
Alternatively, add the JSON above directly to your MCP config file.
Verify
After applying, the Vue Docs tools should appear in the AI Assistant MCP tools list.
Usage
Ask AI Assistant about Vue:
- "How does
v-modelwork with custom components?" - "Show me the
computedAPI reference" - "Compare
refandreactive"
Self-Hosted Server
For a self-hosted instance:
json
{
"mcpServers": {
"vue-docs": {
"command": "uv",
"args": ["run", "--directory", "/path/to/vue-mcp", "vue-docs-server"]
}
}
}