mirror of
https://github.com/penpot/penpot.git
synced 2026-02-05 12:12:07 -05:00
Original repository: https://github.com/penpot/penpot-mcp Imported commit: fcfa67e908fc54e23a3a3543dee432472dc90c5d
16 lines
534 B
HTML
16 lines
534 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>
|
|
<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>
|