MCP server providing access to 135+ animated React components from ReactBits.dev (9.2/10 test score)
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"reactbits": {
"env": {
"GITHUB_TOKEN": "your_github_token_here"
},
"args": [
"reactbits-dev-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides AI assistants with access to ReactBits.dev components - a collection of 135+ animated React components for creative developers.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'reactbits-dev-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked reactbits-dev-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Reactbits Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides AI assistants with access to ReactBits.dev components - a collection of 135+ animated React components for creative developers.
⚠️ Important Note: Some ReactBits components (buttons, forms, loaders) currently have incomplete implementations. See Component Quality Status below.
# Install globally
npm install -g reactbits-dev-mcp-server
# Or run directly with npx (no installation required)
npx reactbits-dev-mcp-server
# Or install as a dependency
npm install reactbits-dev-mcp-server
# Clone the repository
git clone https://github.com/yourusername/reactbits-mcp-server
cd reactbits-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
# Run the server
npm start
Add to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"reactbits": {
"command": "npx",
"args": ["reactbits-dev-mcp-server"],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}
Add to your VS Code settings:
{
"continue.server": {
"mcpServers": {
"reactbits": {
"command": "npx",
"args": ["reactbits-dev-mcp-server"]
}
}
}
}
Add to your Cursor settings or .cursorrules:
{
"mcpServers": {
"reactbits": {
"command": "npx",
"args": ["reactbits-dev-mcp-server"],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}
# Clone and install
git clone https://github.com/yourusername/reactbits-mcp-server
cd reactbits-mcp-server
npm install
# Build
npm run build
# Test locally
node test-list-components.js
list_componentsList all available ReactBits components with optional filtering.
Parameters:
category (optional): Filter by category (e.g., "animations", "backgrounds", "buttons")style (optional): Filter by styling method ("css", "tailwind", "default")limit (optional): Maximum number of components to returnExample:
"List all animation components with Tailwind support"
get_componentGet the source code for a specific ReactBits component.
Parameters:
name (required): Name of the component (e.g., "splash-cursor", "pixel-card")style (optional): Preferred styling method ("css", "tailwind", "default")Example:
"Show me the source code for the splash cursor component"
search_componentsSearch for ReactBits components by name or description.
Parameters:
query (required): Search querycategory (optional): Filter by categorylimit (optional): Maximum number of resultsExample:
"Find all components related to cards"
get_component_demoGet usage example and demo code for a ReactBits component.
Parameters:
name (required): Name of the componentExample:
"Show me how to use the glow button component"
list_categoriesList all available component categories.
Example:
"What categories of components are available?"