{"id":28829651,"url":"https://github.com/chipsxp/design-copier","last_synced_at":"2026-05-05T13:39:19.197Z","repository":{"id":292955878,"uuid":"981450215","full_name":"chipsxp/design-copier","owner":"chipsxp","description":"This is a TypeScript-based MCP server that implements a web design copying system. It allows you to:  - Capture webpage styles and HTML structure - Extract and convert CSS to Tailwind classes - Apply extracted styles to different frontend frameworks","archived":false,"fork":false,"pushed_at":"2025-05-13T00:53:39.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-13T01:36:48.457Z","etag":null,"topics":["css","html","mcp","mcp-server","tailwindcss"],"latest_commit_sha":null,"homepage":"https://chipsxp.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chipsxp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-11T06:08:22.000Z","updated_at":"2025-05-13T00:55:14.000Z","dependencies_parsed_at":"2025-05-13T01:36:50.051Z","dependency_job_id":"e571a4ec-2d24-433b-9f7b-e9b082151c0a","html_url":"https://github.com/chipsxp/design-copier","commit_stats":null,"previous_names":["chipsxp/design-copier"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chipsxp/design-copier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chipsxp%2Fdesign-copier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chipsxp%2Fdesign-copier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chipsxp%2Fdesign-copier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chipsxp%2Fdesign-copier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chipsxp","download_url":"https://codeload.github.com/chipsxp/design-copier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chipsxp%2Fdesign-copier/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260691057,"owners_count":23047109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","html","mcp","mcp-server","tailwindcss"],"created_at":"2025-06-19T05:14:24.848Z","updated_at":"2026-05-05T13:39:19.191Z","avatar_url":"https://github.com/chipsxp.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# design-copier MCP Server\n\nA webpage design extraction tool that captures and converts web designs for development\n\nThis is a TypeScript-based MCP server that implements a web design copying system. It allows you to:\n\n- Capture webpage styles and HTML structure\n- Extract and convert CSS to Tailwind classes\n- Apply extracted styles to different frontend frameworks\n\n## Features\n\n### Tools\n- `designcopier_snapshot` - Capture webpage or element styles\n  - Takes a URL and optional CSS selector\n  - Returns HTML and CSS styles from the target\n\n- `designcopier_extract` - Extract styles and convert to different formats\n  - Processes HTML and CSS content\n  - Supports conversion to Tailwind classes\n  - Can output in CSS, Tailwind, or React formats\n\n- `designcopier_apply` - Apply extracted styles to target framework\n  - Takes extracted styles and applies them to a component\n  - Supports React (with styled-components)\n  - Creates ready-to-use component templates\n\n## Clone Repo and Development\n\nInstall dependencies:\n```bash\nnpm install\n```\n\n```bash\nnpm run prepare , first time only or any custom changes \n```\n\nBuild the server:\n```bash\nnpm run build , to make the build index.js file\n```\n\nFor development with auto-rebuild:\n```bash\nnpm run watch\n```\n\n## Installation\n\nTo use with Claude Desktop, add the server config:\n\nOn MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\nOn Windows: `%APPDATA%/Claude/claude_desktop_config.json`\nVS-Code with Cline or Roo: `Click top MCP Server icon, go to 'Installed' and at bottom of server list running, click 'Configure MCP Server'` Add this to the config:\n\n```json\n\"design-copier\": {\n      \"timeout\": 60,\n      \"command\": \"node\",\n      \"args\": [ \"C:\\\\Users\\\\$ProfileUser$\\\\your-folder\\\\whatever folder\\\\design-copier\\\\build\\\\index.js\" \n    ],\n      \"transportType\": \"stdio\"\n    } \n```\nAnother example:\n\n```json\n{\n  \"mcpServers\": {\n    \"design-copier\": {\n      \"command\": \"node\",\n      \"args\": [\n        \"/path/to/design-copier/build/index.js\"\n      ],\n      \"transportType\": \"stdio\"\n    }\n  }\n}\n```\n\n### Debugging\n\nSince MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:\n\n```bash\nnpm run inspector\n```\n\nThe Inspector will provide a URL to access debugging tools in your browser.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchipsxp%2Fdesign-copier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchipsxp%2Fdesign-copier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchipsxp%2Fdesign-copier/lists"}