home / mcp / material ui mcp server
Provides MCP access to Material UI component documentation for AI assistants and developer workflows.
Configuration
View docs{
"mcpServers": {
"codedthemes-mui-mcp-codedthemes": {
"url": "https://mui-mcp-cloudflare.jgentes.workers.dev/sse"
}
}
}The Material UI MCP Server gives AI assistants quick, structured access to Material UI component documentation via MCP. It enables consistent usage, fast component discovery, and up-to-date guidance for building React apps with Material UI components.
You connect an MCP client to the Material UI MCP Server to query component data, documentation links, and setup guidance. Common tasks include listing all components, viewing detailed information for a specific component, searching by use case, and retrieving theming or setup instructions. Use the available tools to explore, learn, and implement Material UI features with confidence.
Prerequisites: ensure you have Node.js and npm installed on your system. You should also have a MCP client or integration ready to connect to an MCP server.
Option 1 Quick Start (no deployment needed) Connect to the public Material UI MCP server and start using it immediately.
claude mcp add mui npx mcp-remote https://mui-mcp-cloudflare.jgentes.workers.dev/sseOption 2 Deploy Your Own (Cloudflare Workers) Deploy and run your own MCP server instance, then connect Claude Code to it.
1) Deploy to Cloudflare Workers (follow the deployment flow provided by your environment). After deployment, use the following MCP URL.
# Example connection after deployment
claude mcp add mui npx mcp-remote https://mui-mcp-cloudflare.<your-account>.workers.dev/sse2) If you prefer to connect via configuration, add your MCP server to the client settings.
{
"mcpServers": {
"mui": {
"command": "npx",
"args": [
"mcp-remote",
"https://mui-mcp-cloudflare.<your-account>.workers.dev/sse"
]
}
}
}Option 3 Local Server Run locally with the development server. This lets you run an MCP instance on your machine for testing and development.
# Install dependencies
npm install
# Run locally on http://localhost:8787
npm run devConnect to your local instance in Claude Code.
claude mcp add mui npx mcp-remote http://localhost:8787/sseOr use a manual config snippet.
{
"mcpServers": {
"mui": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
}
}Browse all available Material UI components to understand what you can use in your projects.
Retrieve detailed information for a specific component, including imports and documentation links.
Find components by use case or category, such as forms, navigation, or data display.
Access Material UI theming and styling guidance for customization and consistency.
Obtain installation and setup instructions to integrate Material UI into your project.
Get a comprehensive guide to Material UI documentation and best practices.