A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A Model Context Protocol (MCP) server that provides comprehensive information about React design systems, along with cod
React Design Systems is a Model Context Protocol (MCP) server that provides comprehensive information about design systems created for React. The current version focuses exclusively on the AWS Cloudscape Design System components, along with code generation capabilities. It's built using the FastMCP framework and TypeScript.
Future versions will expand to support additional popular React design systems including Material UI, Chakra UI, Ant Design, Blueprint, and Mantine.
See CHANGELOG.md
cloudscape://usage/{componentId} resource URIs# Install from npm
npm install @agentience/react-design-systems-mcp
# Install globally to use as a CLI tool
npm install -g @agentience/react-design-systems-mcp
# Then you can run it directly
react-design-systems-mcp
To use React Design Systems with Claude Desktop, you can configure it as an MCP server using the npm package. This allows Claude Desktop to automatically launch the server when needed.
Add the following configuration to your Claude Desktop MCP settings file:
Location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonConfiguration:
{
"mcpServers": {
"react-design-systems": {
"command": "npx",
"args": [
"@agentience/react-design-systems-mcp"
]
}
}
}
The server supports the following command line parameters:
--transport <type> or -t <type>: Transport type (stdio or sse). Default: stdio--port <number> or -p <number>: Port for SSE transport. Default: 3001--bind <address> or -b <address>: Bind address for SSE transport. Default: 0.0.0.0For optimal results when using this MCP server with Claude, consider using a specialized system prompt. We provide an example system prompt that configures Claude as an expert Cloudscape developer with AWS Amplify Gen 2 knowledge. See Claude Cloudscape & Amplify Expert for details.
{
"mcpServers": {
"react-design-systems": {
"command": "npx",
"args": [
"@agentience/react-design-systems-mcp",
"--transport",
"stdio"
]
}
}
}
If you have the package installed globally or locally:
{
"mcpServers": {
"react-design-systems": {
"command": "react-design-systems-mcp"
}
}
}
For development with a local build:
{
"mcpServers": {
"react-design-systems": {
"command": "node",
"args": [
"/path/to/react-design-systems-mcp/dist/server.js"
],
"cwd": "/path/to/react-design-systems-mcp"
}
}
}
After adding the configuration:
search_components to verify the connectionFor troubleshooting connection issues, see the MCP Protocol Guide.
This project can be deployed using Docker. For detailed instructions, see Docker Deployment Guide.
# Pull the image from GitHub Container Registry
docker pull ghcr.io/agentience/react-design-systems-mcp:latest
# Run the container
docker run -d -p 3005:3005 --name react-design-systems-mcp ghcr.io/agentience/react-design-systems-mcp:latest
# Clone the repository
git clone https://github.com/agentience/react-design-systems-mcp.git
cd react-design-systems-mcp
# Start with Docker Compose
docker-compose up -d
For information on building and publishing the Docker image to GitHub Container Registry, see Docker Publishing Guide.
This project uses the FastMCP framework for a more structured and type-safe approach to building MCP servers. For detailed information about the FastMCP implementation and development setup, see DEVELOPMENT.md.
search_components - Search for components with advanced filteringget_component_details - Get detailed component informationget_component_properties - Get component properties and their specificationsget_component_events - Get component events and event handling informationget_component_functions - Get component functions and method APIsget_component_examples - Get component examples with optional filtering by example IDget_component_usage - Get usage guidelines for a specific component with optional section filteringsearch_usage_guidelines - Search across component usage guidelines with query, section, and component filtersgenerate_component_code - Generate code for components with customizationgenerate_pattern_code - Generate code for common UI patternsvalidate_component_props - Validate component properties and configurationssearch_patterns - Search through design patterns and architectural guidancesearch_properties - Search for component properties across all componentssearch_events - Search for component events with filtering optionssearch_functions - Search for component functions and methodscompare_components - Compare multiple components and their capabilitiesgenerate_layout_code - Generate multi-component layoutsget_frontend_setup - Get setup instructions for frontend-code modeget_link_resource - Resolve internal links from usage.md files to appropriate backend resourcescloudscape://usage/{componentId} - Direct access to component usage guidelines in markdown format# Search for button-related components
search_components({"query": "button", "category": "actions"})
# Get detailed information about a specific component
get_component_details({"componentId": "button"})
# Access usage guidelines directly
Resource: cloudscape://usage/button
# Search across usage guidelines
search_usage_guidelines({"query": "primary button", "section": "Features"})
# Generate component code
generate_component_code({"componentId": "button", "variant": "primary"})
React Design Systems currently supports the AWS Cloudscape Design System, but we plan to expand support to other popular React design systems in the future:
If you're interested in contributing support for additional design systems, please check out our Contributing guidelines.
When using this package as a dependency in your project, you can import and use it as follows:
// CommonJS
const { createReactDesignSystemsServer } = require('@agentience/react-design-systems-mcp');
// ES Modules
import { createReactDesignSystemsServer } from '@agentience/react-design-systems-mcp';
// Create and configure the server
const server = createReactDesignSystemsServer({
// Configuration options
});
// Start the server
server.start();
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)MIT - See LICENSE for more information.## Available Documentation
MCP server integration for DaVinci Resolve Studio
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba
0
via CLI