Model Context Protocol (MCP) server for PrimeNG component library. Provides AI assistants with comprehensive access to PrimeNG component documentation.
Model Context Protocol (MCP) is an open standard that enables AI models to connect with external tools and data sources. The PrimeNG MCP server provides AI assistants with comprehensive access to:
Add the PrimeNG 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 primeng -s user -- npx -y @primeng/mcp
# Or add to current project only
claude mcp add primeng -- npx -y @primeng/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": {
"primeng": {
"command": "npx",
"args": ["-y", "@primeng/mcp"]
}
}
}
See VS Code MCP Documentation for more details.
Add the PrimeNG MCP server using the CLI or edit ~/.codex/config.toml directly.
# Using the CLI
codex mcp add primeng -- npx -y @primeng/mcp
# Or edit ~/.codex/config.toml
[mcp_servers.primeng]
command = "npx"
args = ["-y", "@primeng/mcp"]
See OpenAI Codex MCP Documentation for more details.
Create .cursor/mcp.json in your project or ~/.cursor/mcp.json for global configuration.
{
"mcpServers": {
"primeng": {
"command": "npx",
"args": ["-y", "@primeng/mcp"]
}
}
}
See Cursor MCP Documentation for more details.
Edit ~/.codeium/windsurf/mcp_config.json to add the PrimeNG MCP server.
{
"mcpServers": {
"primeng": {
"command": "npx",
"args": ["-y", "@primeng/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": {
"primeng": {
"command": {
"path": "npx",
"args": ["-y", "@primeng/mcp"]
}
}
}
}
See Zed MCP Documentation for more details.
Tools for exploring and understanding PrimeNG components.
Tools for retrieving code samples and generating templates.
Tools for customizing component appearance and styling.
Tools for accessing PrimeNG documentation and guides.
Tools for upgrading between PrimeNG versions.
Tools for finding components based on various criteria.
Once installed, try asking your AI assistant:
"Show me how to use the Table component with sorting and filtering"
"What props does the Button component have?"
"How do I customize the Dialog component styling with Pass Through?"
"Compare the Select and Listbox components"
"What's the best component for a date picker?"
"How do I migrate from PrimeNG v20 to v21?"