AI-powered Model Context Protocol server for Dew Design System. Expose component documentation to AI agents with integrated Figma and Playwright automation.
Expose your component library to AI agents for intelligent code generation and assistance.
Connect design files to component implementation for seamless design-to-code workflows.
Browser automation for testing, validation, and comprehensive component workflows.
Powerful tools for AI agents to interact with your component library
Get started with Dew MCP in minutes
Add to your project
# Install the MCP server
pnpm add @freshworks/dew-mcp-server
# Or with npm
npm install @freshworks/dew-mcp-server
# Or with yarn
yarn add @freshworks/dew-mcp-server
Configure MCP in Cursor settings
{
"mcpServers": {
"dew-mcp-server": {
"command": "npx",
"args": ["-y", "@freshworks/dew-mcp-server"]
}
}
}
Advanced setup with custom tools
import { createMCPServer } from '@freshworks/dew-mcp-server';
const config = {
name: 'My Component Library MCP',
version: '1.0.0',
packageName: '@myorg/ui-components',
enableFigma: true,
enablePlaywright: true,
analytics: {
enabled: false,
},
};
await createMCPServer(config);
Complete configuration options and tool definitions
Real-world scenarios and integration patterns