mcp-server-penpot 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/dist/data/api_types.yml +18307 -0
- package/dist/data/prompts.yml +267 -0
- package/dist/index.js +15172 -0
- package/dist/plugin/assets/index--XoUZAqo.css +1 -0
- package/dist/plugin/index.html +16 -0
- package/dist/plugin/index.js +1 -0
- package/dist/plugin/manifest.json +7 -0
- package/dist/plugin/plugin.js +2 -0
- package/dist/static/repl.html +554 -0
- package/package.json +63 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Penpot MCP Server
|
|
2
|
+
|
|
3
|
+
A Model Context Protocol (MCP) server that provides Penpot integration
|
|
4
|
+
capabilities for AI clients supporting the model context protocol (MCP).
|
|
5
|
+
|
|
6
|
+
## Setup
|
|
7
|
+
|
|
8
|
+
1. Install Dependencies
|
|
9
|
+
|
|
10
|
+
pnpm install
|
|
11
|
+
|
|
12
|
+
2. Build the Project
|
|
13
|
+
|
|
14
|
+
pnpm run build
|
|
15
|
+
|
|
16
|
+
3. Run the Server
|
|
17
|
+
|
|
18
|
+
pnpm run start
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## Penpot Plugin API REPL
|
|
22
|
+
|
|
23
|
+
The MCP server includes a REPL interface for testing Penpot Plugin API calls.
|
|
24
|
+
To use it, connect to the URL reported at startup.
|