MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

AI-agent skill for creating & maintaining production-grade Penpot design systems via the official Penpot MCP Server

Created 5/24/2026
Updated about 18 hours ago
Repository documentation and setup instructions

penpot-mcp skill

GitHub Stars License: MIT Agent Skills skills.sh

AI-agent skill for creating, auditing, and maintaining production-grade design projects and design systems — including flows, interactions, animations, and overlays — in Penpot via the official Penpot MCP Server.

Compatible AI agents

Works with any MCP-compatible client: Claude Code, Cursor, VS Code / Copilot, Codex / OpenCode, Amp, Cline, Windsurf, Claude Desktop (via mcp-remote), and any agent supporting HTTP or SSE MCP transport.

What this skill covers

  • Remote & local MCP setup — up-to-date configs for all major MCP clients; Remote MCP recommended for most users
  • All 5 MCP toolsexecute_code, high_level_overview, penpot_api_info, export_shape, import_image
  • Penpot JS API patternspenpotUtils reference, read-only property gotchas, flex ordering quirks, board positioning, CSS export, plugin data API
  • Font & typography constraints — installed variant detection, library vs. layer fontSize types, stale fontId limitation
  • Write safety rules — batch size limits (~10 ops/call), page-switch two-call pattern, structural verification over export
  • Interactions & animations — full addInteraction API, all triggers (click, mouse-enter, mouse-leave, after-delay), all actions (navigate-to, open-overlay, toggle-overlay, close-overlay, previous-screen, open-url), all animations (Dissolve, Slide, Push) with easing options
  • Prototyping workflows — linear flows, overlays/modals, drawers, multi-flow prototypes, interaction audit, lo-fi→hi-fi progression, animation selection guide
  • Token-aware prompting — RULESET block, 3-tier token hierarchy, compact schema style
  • Design system workflows — build from scratch, full audit, token migration, component library management, palette updates
  • Design-to-code workflows — page→HTML/CSS, design→React, token extraction, Style Dictionary config, component mapping, layout extraction, asset export, drift detection
  • Design file best practices — layer naming, component organization, spacing, accessibility, handoff conventions
  • Component checklists — buttons, forms, navigation, cards, prototype coverage, pre-handoff review

Install

Via npx (Claude Code / Codex CLI):

npx skills add ar27111994/penpot-mcp

Via gh CLI:

gh skills install ar27111994/penpot-mcp

Manually: Copy the penpot-mcp/ folder into your .github/skills/ directory (or wherever your agent discovers skills).

File structure

penpot-mcp/
├── SKILL.md                                ← Always-loaded core (~340 lines)
└── references/
    ├── penpot-api-patterns.md              ← JS API, gotchas, fonts, interactions, animations
    ├── prototyping-workflows.md            ← Flows, overlays, audit, lo-fi→hi-fi
    ├── design-system-workflows.md          ← Build, audit, migrate, manage
    └── design-to-code-workflows.md         ← HTML/CSS, React, tokens, assets

SKILL.md is light enough to always stay in context. Reference files are loaded on demand for the relevant task.

Status vs. other Penpot skills

Built directly from the official Penpot MCP documentation and plugin API docs at doc.plugins.penpot.app, cross-referenced against the github/awesome-copilot penpot-uiux-design skill and battle-tested in production.

Key differences:

  • ✅ Covers Remote MCP and all major MCP client configs (Cursor, Claude Code, VS Code, Codex, Claude Desktop)
  • npx @penpot/mcp@stable — not the outdated git clone approach
  • ✅ Correct VS Code config key (mcp.servers, not mcpServers)
  • ✅ Full interactions & animations API (addInteraction, all triggers/actions/animations)
  • Font/typography constraints from real-world production use
  • Write safety: batch limits, page-switch two-call pattern, export reliability gotcha
  • Prototyping workflows: flows, overlays, multi-flow, animation guide
  • ✅ Compatible with all MCP-compatible agents, not just Claude Code or Cursor

Contributing

PRs welcome — especially for new workflow recipes, additional platform templates, or corrections as the Penpot MCP API evolves. See Penpot community thread.

License

MIT

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/ar27111994/penpot-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "ar27111994-penpot-mcp": { "command": "git", "args": [ "clone", "https://github.com/ar27111994/penpot-mcp" ] } } }