fix(penpot-uiux-design): update setup for current Penpot MCP Server#1823
Closed
ar27111994 wants to merge 3 commits into
Closed
fix(penpot-uiux-design): update setup for current Penpot MCP Server#1823ar27111994 wants to merge 3 commits into
ar27111994 wants to merge 3 commits into
Conversation
Contributor
There was a problem hiding this comment.
main, but PRs should target staged.
The main branch is auto-published from staged and should not receive direct PRs.
Please close this PR and re-open it against the staged branch.
You can change the base branch using the Edit button at the top of this PR,
or run: gh pr edit 1823 --base staged
Contributor
|
🔴 Contributor Reputation Check: HIGH risk
Maintainers: please review this contributor before merging. |
Contributor
|
🔴 Contributor Reputation Check: HIGH risk
Maintainers: please review this contributor before merging. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix: Update penpot-uiux-design for current Penpot MCP Server
The
penpot-uiux-designskill's setup instructions are now outdated following the official Penpot MCP Server's 2025 updates. This PR makes three targeted fixes.Changes
1. Quick Start: replace
git clonewithnpx @penpot/mcp@stable+ Remote MCPThe old setup cloned the repo and ran
npm run bootstrap. The official distribution method is nownpx @penpot/mcp@stable. More importantly, Penpot now offers a Remote MCP (hosted) option that most users should prefer — no local server needed, just a key from Penpot → Integrations. This is prominently documented at help.penpot.app/mcp but was missing from the skill entirely.2. VS Code endpoint:
/sse→/mcp; add Claude Code configThe correct local endpoint is
http://localhost:4401/mcp, not/sse. The/sseendpoint has changed. This PR also adds a Claude Code (mcpServers) config block since Claude Code is a major consumer of agent skills and wasn't covered.3. Troubleshooting: add two Remote MCP rows
Adds entries for expired/invalid MCP key (common with the token-based Remote auth) and for the known limitation that
import_imagerequires local MCP even when using the remote server.Verification
All changes verified against the official documentation at https://help.penpot.app/mcp/ (fetched May 2026).
A more comprehensive Penpot MCP skill (with full JS API reference, design system workflow recipes, design-to-code workflows, and token-aware prompting patterns) is maintained at ar27111994/penpot-mcp for users who need the extended version.