Supercharge Your AI Coding
Connect your AI assistant directly to your Component Library. Fetch code, designs, and themes instantly inside your editor.
> fetching component: 'hero-01'...
> component loaded successfully.
> ready for implementation.
What is this?
Direct Integration
No more copy-pasting from web documentation. Your AI (Cursor, VS Code, etc.) can read directly from the library.
Context-Aware Design
The MCP server provides design tokens, guidelines, and component decision logic to the AI, ensuring consistency.
Smart Recommendations
Tools like get_recommended_sections and match_design_style help the AI
plan your pages intelligently.
See It In Action
Watch how your AI interacts with the Component Library.
Configure Your Editor
Add this server to your MCP client configuration file.
"mcpServers": {
"component-library": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.ui-comp-mcp.acodez.ca/mcp",
"--header",
"x-api-key:${MCP_API_KEY}"
],
"env": {
"MCP_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
{
"mcpServers": {
"component-library": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.ui-comp-mcp.acodez.ca/mcp",
"--header",
"x-api-key:${MCP_API_KEY}"
],
"env": {
"MCP_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
{
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.ui-comp-mcp.acodez.ca/mcp",
"--header",
"x-api-key:YOUR_API_KEY"
]
}
Note: Replace YOUR_API_KEY_HERE with the key provided by your
administrator.
The server URL https://mcp.ui-comp-mcp.acodez.ca/mcp is the public endpoint.