by ceorkm
Access 135+ animated React UI components from ReactBits.dev with intelligent caching, dependency detection, and quality
β 38
GitHub stars
Provides access to 135+ animated React components from ReactBits.dev with intelligent caching and search capabilities. Get component source code, demos, and usage examples for building modern UI applications.
ReactBits is a community-built MCP server published by ceorkm that provides AI assistants with tools and capabilities via the Model Context Protocol. Access 135+ animated React UI components from ReactBits.dev with intelligent caching, dependency detection, and quality It is categorized under developer tools, design. This server exposes 5 tools that AI clients can invoke during conversations and coding sessions.
You can install ReactBits in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport. This server supports remote connections over HTTP, so no local installation is required.
MIT
ReactBits is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research β Summarize β Create document β Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We wired ReactBits into a staging workspace; the listingβs GitHub and npm pointers saved time versus hunting across READMEs.
ReactBits is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
ReactBits reduced integration guesswork β categories and install configs on the listing matched the upstream repo.
We evaluated ReactBits against two servers with overlapping tools; this profile had the clearer scope statement.
ReactBits has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
ReactBits reduced integration guesswork β categories and install configs on the listing matched the upstream repo.
According to our notes, ReactBits benefits from clear Model Context Protocol framing β fewer ambiguous βAI pluginβ claims.
We wired ReactBits into a staging workspace; the listingβs GitHub and npm pointers saved time versus hunting across READMEs.
ReactBits is a well-scoped MCP server in the explainx.ai directory β install snippets and categories matched our Claude Code setup.
According to our notes, ReactBits benefits from clear Model Context Protocol framing β fewer ambiguous βAI pluginβ claims.
showing 1-10 of 70
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?"
Once configured, you can ask your AI assistant questions like:
ReactBits components are organized into the following categories:
reactbits-mcp-server/
βββ src/
β βββ index.ts # Main server entry point
β βββ services/
β β βββ ReactBitsService.ts # Component fetching logic
β βββ types/
β β βββ index.ts # TypeScript type definitions
β βββ utils/
β βββ CacheManager.ts # Caching utility
βββ dist/ # Compiled output
βββ package.json
βββ tsconfig.json
βββ README.md
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode
npm run dev
# Run the MCP inspector for debugging
npx @modelcontextprotocol/inspector
The server can work without a GitHub token but will be limited to 60 requests per hour. With a token, you get up to 5,000 requests per hour.
Create a GitHub personal access token at https://github.com/settings/tokens
Set it as an environment variable:
# Option 1: Export in your shell
export GITHUB_TOKEN=your_token_here
# Option 2: Create a .env file (copy from .env.example)
cp .env.example .env
# Edit .env and add your token
# Option 3: Pass when running the server
GITHUB_TOKEN=your_token_here npx reactbits-dev-mcp-server
β οΈ Security Note: Never commit your GitHub token to version control. Always use environment variables.
Based on comprehensive testing, here's the current quality status of ReactBits components:
The MCP server now includes dependency information for each component:
framer-motion: Text animations and interactive componentsgsap: Cursor animations and advanced interactionsthree.js / @react-three/fiber: 3D backgrounds and effectsogl: WebGL rendering (Aurora component)Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
β Do
β Don't
π‘ Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
β Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
β Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.