Connect ProdigyUI to your AI editor via the Model Context Protocol. Expose the entire component library for effortless AI-assisted development.
- Open Cursor Settings (Cmd/Ctrl + ,)
- Navigate to Features > MCP
- Click "Add new MCP server"
- Add the following configuration:
{
"mcpServers": {
"prodigy-ui": {
"command": "npx",
"args": ["-y", "prodigy-ui", "mcp"]
}
}
}Run the following command:
claude mcp add prodigy-ui -- npx -y prodigy-ui mcpOr add to .claude/settings.json:
{
"mcpServers": {
"prodigy-ui": {
"command": "npx",
"args": ["-y", "prodigy-ui", "mcp"]
}
}
}- Install the Cline extension
- Go to Cline Settings > MCP Servers
- Add a new server with:
{
"mcpServers": {
"prodigy-ui": {
"command": "npx",
"args": ["-y", "prodigy-ui", "mcp"]
}
}
}The ProdigyUI MCP server exposes these tools:
| Tool | Description |
|---|---|
list_components |
List all available components with names, descriptions, and tags |
search_components |
Search components by name, description, or tag |
get_component |
Get detailed information about a specific component |
get_component_source |
Get source code URLs for component files |
get_install_command |
Get installation commands and dependencies for a component |
get_components_by_tag |
Filter components by tag (Interactive, GSAP, Scroll, Motion) |
get_all_tags |
List all available component tags |
create_landing_page |
Generate a complete landing page (saas/portfolio/startup/product/agency) using ProdigyUI components |
Search the ProdigyUI registry for all available components. List them with their names and descriptions.
Search ProdigyUI for components related to cards or image galleries.
Get the full documentation for the stroke-cards component, including its files and dependencies.
Search for components related to animations, then get the install command for the pixel-image component.
Get all GSAP-powered components from the ProdigyUI library.
Generate a SaaS landing page for my AI startup called "FlowAI" with accent color #C8FF00.
Your API key is never stored in plaintext. MCP connections are established locally via stdio, ensuring secure communication between your editor and the component registry.