pen-editor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pen-editorTake a screenshot of the current design"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pen-editor-plugin
Pen Editor packaged as an Agent Plugins 1.0.0 plugin, installable in any client that supports the specification (VS Code, Cursor, and others).
Installing it gives the agent:
the
pen-editorMCP server — read and edit a live Pen Editor document: structure, computed layout, design variables, screenshots, and thebatch_designDSL for creating and modifying designs;three skills the client picks up on its own, no prompt wiring needed:
pen-editor-design(build or edit a design),pen-editor-dev-mode(implement an existing design as code), andpen-editor-setup(diagnose a broken connection).
This plugin's proxy talks to either of two MCP servers, both named
pen-editor, both discovered the same way (see "How the proxy finds the
backend" in the setup skill) — but with different tool behavior. See
"Desktop app vs. backend: what differs" below.
Setup
Desktop app (zero-config)
Install
pen-editor-desktop.Install this plugin.
Done — the app publishes a loopback MCP endpoint and writes
~/.pen-editor/mcp.jsonon launch; the plugin discovers it with no backend, no env vars, and no manual token. Open a document in the app and call any tool — it routes into whichever tab is focused.
Local development (zero-config)
Install the plugin.
Run the backend:
cd pen-editor-backend npm run devWith no
MCP_AUTH_TOKENset, the backend generates one itself, serves MCP loopback-only, and writes it to~/.pen-editor/mcp.json.Run the editor:
cd pen-editor npm run devIt picks up the same token automatically.
Done — the plugin discovers the backend on its own. Most tools need the editor tab open in a browser;
get_guidelines,get_style_guide_tagsandget_style_guidework without one (see the caveat below — this is backend-specific).
Remote backend
For a backend that isn't running on localhost, or one with an explicit
MCP_AUTH_TOKEN, point the plugin at it:
cd pen-editor-backend
MCP_AUTH_TOKEN=<secret-at-least-16-chars> npm run devcd pen-editor
VITE_MCP_WS_TOKEN=<same-secret> npm run devNote: VITE_MCP_WS_TOKEN is inlined into the public JS bundle at build
time. Use it only in a local/dev build — never on a publicly deployed
frontend, or any visitor gets the secret.
Then tell the plugin the URL and token, either by asking the agent to run
its configure_pen_editor_connection tool (paste the URL and token into
chat), or by writing config.json into the plugin's data directory (the
client decides the exact path):
{
"url": "https://my-backend.example.com/api/mcp",
"token": "<secret-at-least-16-chars>"
}Environment variables PEN_EDITOR_MCP_URL / PEN_EDITOR_MCP_TOKEN are also
supported as a power-user channel — but it's non-portable (not every client
preserves ambient env vars) and lower precedence than
<PLUGIN_DATA>/config.json, so once configure_pen_editor_connection has
written that file, these env vars no longer have any effect.
Related MCP server: SIN-Code-Frontend-Design-Skill
Desktop app vs. backend: what differs
Both endpoints answer to the name pen-editor and share most of the same
tool set, but they are different servers with different tool behavior:
get_guidelines,get_style_guide_tags,get_style_guiderun server-side againstpen-editor-backend— no editor tab needed. Against the desktop app, every tool, including these three, is executed in an editor tab; with no tab open (or none registered), they fail the same way any other tool does.list_editor_tabsexists only against the desktop app. It lists open tabs, their titles, and whether each is active and ready for MCP calls (mcpReady).pen-editor-backendhas no such tool — it has no concept of multiple tabs.tabIdis an optional argument on every other desktop-app tool (get it fromlist_editor_tabs), routing the call to a specific tab instead of whichever one is focused.pen-editor-backenddoes not accept this argument at all — it always routes to its single connected tab.
An agent author who assumes "the three static tools always work without a
tab" or "there's only one pen-editor MCP server" will be surprised by one
of these two endpoints. Which one is running is not something the plugin
exposes directly — infer it from whether list_editor_tabs is in
tools/list.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables access to Hanzo APIs and Platform capabilities via MCP, along with development tools for managing and improving projects.71MIT
- FlicenseAqualityCmaintenanceProvides 8 MCP tools for frontend design: load design system, generate components, scaffold pages, review consistency, extract tokens, check WCAG 2.2 AA, test responsiveness, and export to Figma.8
- Alicense-qualityDmaintenanceProvides resources, tools, and prompts for a Design System via MCP protocol, enabling component search, reading, and related component discovery.270MIT
- AlicenseAqualityBmaintenanceProvides MCP tools to read, write, append, and edit prose sections of nodes, backed by an in-memory or substrate-direct (Urania) backend.411Apache 2.0
Related MCP Connectors
Create App Store screenshots, icons, ASO copy, localization, and revisions via hosted MCP.
MCP-native collaborative markdown editor with real-time AI document editing
Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dan-rozhkov/pen-editor-plugin'
If you have feedback or need assistance with the MCP directory API, please join our Discord server