Model Context Protocol (MCP) server for PrimeVue component library. Provides AI assistants with comprehensive access to PrimeVue component documentation.
Model Context Protocol (MCP) is an open standard that enables AI models to connect with external tools and data sources. The PrimeVue MCP server provides AI assistants with comprehensive access to:
Add the PrimeVue 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 primevue -s user -- npx -y @primevue/mcp
# Or add to current project only
claude mcp add primevue -- npx -y @primevue/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", "@primevue/mcp"]
}
}
}
See VS Code MCP Documentation for more details.
Add the PrimeVue MCP server using the CLI or edit ~/.codex/config.toml directly.
# Using the CLI
codex mcp add primevue -- npx -y @primevue/mcp
# Or edit ~/.codex/config.toml
[mcp_servers.primevue]
command = "npx"
args = ["-y", "@primevue/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", "@primevue/mcp"]
}
}
}
See Cursor MCP Documentation for more details.
Edit ~/.codeium/windsurf/mcp_config.json to add the PrimeVue MCP server.
{
"mcpServers": {
"primevue": {
"command": "npx",
"args": ["-y", "@primevue/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", "@primevue/mcp"]
}
}
}
}
See Zed MCP Documentation for more details.
Tools for exploring and understanding PrimeVue components.
Tools for retrieving code samples and generating templates.
Tools for customizing component appearance and styling.
Tools for accessing PrimeVue 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"