mirror of
https://github.com/penpot/penpot-mcp.git
synced 2026-04-25 11:18:37 +00:00
22 lines
884 B
HTML
22 lines
884 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Penpot plugin example</title>
|
|
</head>
|
|
<body>
|
|
<div style="font-weight: bold; font-size: 11px; margin-bottom: 10px">
|
|
IMPORTANT: You are using an outdated version of the Penpot MCP server. The MCP server has been integrated
|
|
into the Penpot repository. Find the latest version here:<br />
|
|
https://github.com/penpot/penpot/tree/develop/mcp
|
|
</div>
|
|
|
|
<button type="button" data-appearance="secondary" data-handler="connect-mcp">Connect to MCP server</button>
|
|
|
|
<div id="connection-status" style="margin-top: 10px; font-size: 12px; color: #666">Not connected</div>
|
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|