Model Context Protocol (MCP) server for OpenVue component library. Provides AI assistants with comprehensive access to OpenVue component documentation.
Model Context Protocol (MCP) is an open standard that enables AI models to connect with external tools and data sources. The OpenVue MCP server provides AI assistants with comprehensive access to:
Add the OpenVue MCP server using the CLI. After adding, start a new session and use /mcp to verify the connection.
# Add to user config (available in all projects)
claude mcp add openvue -s user -- npx -y @openvue/mcp
# Or add to current project only
claude mcp add openvue -- npx -y @openvue/mcp
See Claude Code MCP Documentation for more details.
Create .vscode/mcp.json in your project or ~/Library/Application Support/Code/User/mcp.json for global configuration.
{
"servers": {
"primevue": {
"command": "npx",
"args": ["-y", "@openvue/mcp"]
}
}
}
See VS Code MCP Documentation for more details.
Add the OpenVue MCP server using the CLI or edit ~/.codex/config.toml directly.
# Using the CLI
codex mcp add openvue -- npx -y @openvue/mcp
# Or edit ~/.codex/config.toml
[mcp_servers.openvue]
command = "npx"
args = ["-y", "@openvue/mcp"]
See OpenAI Codex MCP Documentation for more details.
Create .cursor/mcp.json in your project or ~/.cursor/mcp.json for global configuration.
{
"mcpServers": {
"primevue": {
"command": "npx",
"args": ["-y", "@openvue/mcp"]
}
}
}
See Cursor MCP Documentation for more details.
Edit ~/.codeium/windsurf/mcp_config.json to add the OpenVue MCP server.
{
"mcpServers": {
"primevue": {
"command": "npx",
"args": ["-y", "@openvue/mcp"]
}
}
}
See Windsurf MCP Documentation for more details.
Add to your Zed settings at ~/.config/zed/settings.json (Linux) or ~/Library/Application Support/Zed/settings.json (macOS).
{
"context_servers": {
"primevue": {
"command": {
"path": "npx",
"args": ["-y", "@openvue/mcp"]
}
}
}
}
See Zed MCP Documentation for more details.
Tools for exploring and understanding OpenVue components.
Tools for retrieving code samples and generating templates.
Tools for customizing component appearance and styling.
Tools for accessing OpenVue documentation and guides.
Tools for finding components based on various criteria.
Once installed, try asking your AI assistant:
"What are all the props available for the DataTable component?"
"Show me how to implement row selection in DataTable"
"How do I customize Button styles using Pass Through?"
"What design tokens are available for the Card component?"
"Find me a component for selecting multiple items from a list"
"Compare AutoComplete and Select components"