MCP server
by its-just-ui
Easily build React apps with its-just-ui, a top React UI library for custom components, Material UI styling, and Tailwin
Enables AI-powered generation and customization of React components from the its-just-ui library through natural language interactions in your editor.
its-just-ui is a community-built MCP server published by its-just-ui that provides AI assistants with tools and capabilities via the Model Context Protocol. Easily build React apps with its-just-ui, a top React UI library for custom components, Material UI styling, and Tailwin It is categorized under developer tools. This server exposes 9 tools that AI clients can invoke during conversations and coding sessions.
You can install its-just-ui 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
its-just-ui 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
Strong directory entry: its-just-ui surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We wired its-just-ui into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated its-just-ui against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: its-just-ui surfaces stars and publisher context so we could sanity-check maintenance before adopting.
its-just-ui has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
its-just-ui is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Strong directory entry: its-just-ui surfaces stars and publisher context so we could sanity-check maintenance before adopting.
According to our notes, its-just-ui benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: its-just-ui is the kind of server we cite when onboarding engineers to host + tool permissions.
its-just-ui reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 42
A Model Context Protocol (MCP) server optimized for Cursor IDE, enabling AI-powered generation, customization, and documentation of its-just-ui React components directly in your editor.
# Simply add to your Cursor config - no installation needed!
# Cursor will handle everything via npx
# Clone and build
git clone https://github.com/its-just-ui/its-just-mcp.git
cd its-just-mcp
npm install && npm run build
Create .cursor/mcp.json in your React project root:
{
"mcpServers": {
"its-just-ui": {
"command": "npx",
"args": ["-y", "its-just-mcp"],
"env": {}
}
}
}
Create ~/.cursor/mcp.json:
{
"mcpServers": {
"its-just-ui": {
"command": "npx",
"args": ["-y", "its-just-mcp"],
"env": {}
}
}
}
If you're developing the MCP server locally:
{
"mcpServers": {
"its-just-ui": {
"command": "node",
"args": ["/absolute/path/to/its-just-mcp/dist/index.js"],
"env": {}
}
}
}
After adding the configuration, restart Cursor to load the MCP server.
In Cursor, you can ask the AI:
Ask Cursor AI to generate components directly in your code:
"Add a primary button with loading state here"
"Create a card grid layout with 3 columns"
"Generate a login form with validation"
The MCP server understands your project context:
⌘+K → "Generate [component] with [props]"⌘+K → "Document this its-just-ui component"⌘+K → "Configure dark theme for its-just-ui"⌘+K → "Create a contact form with validation"| Tool | Cursor Command Example | Description |
|---|---|---|
generate_component | "Generate a primary button" | Create any its-just-ui component |
list_components | "Show me all form components" | Browse available components |
compose_components | "Create a card grid layout" | Compose multiple components |
| Tool | Cursor Command Example | Description |
|---|---|---|
configure_theme | "Set up dark mode theme" | Configure ThemeProvider |
generate_tailwind_classes | "Generate spacing utilities" | Create Tailwind utility classes |
create_responsive_layout | "Make a responsive grid" | Build responsive layouts |
| Tool | Cursor Command Example | Description |
|---|---|---|
create_form | "Build a contact form" | Generate complete forms |
get_component_docs | "Show Button documentation" | Get component docs |
check_accessibility | "Check Dialog accessibility" | Review ARIA attributes |
In Cursor, simply type ⌘+K and ask:
"Generate a primary button with loading state"
The AI will use the MCP server to generate:
<Button variant="primary" loading={true}>
Processing...
</Button>
"Create a login form with email and password validation"
Result:
<form onSubmit={handleSubmit}>
<Input
type="email"
name="email"
label="Email"
required
placeholder="Enter your email"
/>
<Input
type="password"
name="password"
label="Password"
required
minLength={8}
/>
<Button type="submit" variant="primary">
Login
</Button>
</form>
"Set up a dark theme with blue primary color"
Result:
<ThemeProvider
theme={{
mode: "dark",
colors: {
primary: "#3b82f6",
secondary: "#64748b"
}
}}
>
{children}
</ThemeProvider>
While this server is optimized for Cursor, it also works with Claude Desktop:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"its-just-ui": {
"command": "npx",
"args": ["-y", "its-just-mcp"],
"env": {}
}
}
}
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run tests
npm test
# ESLint
npm run lint
# Prettier
npm run format
# Jest
npm test
# Watch mode
npm run test:watch
# Coverage
npm run test:coverage
its-just-mcp/
├── src/
│ ├── index.ts # Main server entry point
│ ├── components/
│ │ └── registry.ts # Component definitions and metadata
│ └── tools/
│ ├── componentGenerator.ts # Component generation logic
│ ├── themeManager.ts # Theme configuration tools
│ ├── utilityTools.ts # Utility and layout tools
│ └── documentationTools.ts # Documentation and accessibility
├── dist/ # Compiled output
├── package.json
├── tsconfig.json
└── README.md
Contributions are welcome! Please feel free to submit a Pull Request.
Recommended steps:
MIT
For issues or questions, please open an issue on GitHub or contact the maintainers.
| Issue | Solution |
|---|---|
| MCP tools not available | 1. Restart Cursor<br>2. Check .cursor/mcp.json is valid JSON<br>3. Verify the server path is correct |
| "Command not found: npx" | Install Node.js 18+ and npm |
| Server not responding | 1. Check Cursor Console (View → Output → MCP)<br>2. Try local installation instead of npx |
| Tools not showing in AI | Ask "What MCP tools are available?" to refresh |
# Verify Node version (needs 18+)
node --version
# For local development, rebuild
cd /path/to/its-just-mcp
npm run build
# Check MCP config is valid JSON
cat .cursor/mcp.json | jq .
# Clear npm cache if npx fails
npm cache clean --force
View → Output → MCPPrerequisites
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.