Compare commits

...

3 Commits

Author SHA1 Message Date
6bc8e7fe9c docs: add Penpot MCP to AGENTS.md
Add penpot-mcp to Additional Tools section.
Add environment variable reference for PENPOT_URL and PENPOT_TOKEN.

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
2026-01-21 17:30:41 -05:00
96a2aa2dbd docs: add Penpot MCP to STATUS.md
Add penpot-mcp to validation tracking list.
Marked as pending to be configured later.

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
2026-01-21 17:30:29 -05:00
f75bcc8438 feat: add Penpot MCP to docker-compose.yml
Add penpot-mcp service for design collaboration platform.
Configure PENPOT_URL and PENPOT_TOKEN environment variables.

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
2026-01-21 17:30:10 -05:00
3 changed files with 20 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ This document tracks the AI agents and MCP servers configured in this project.
|---------|---------------|--------|-------------|
| drawio-mcp | KNELDevStack-AIMW-drawio-mcp | Pending | Draw.io diagram management |
| docker-language-server | KNELDevStack-AIMW-docker-language-server | Pending | Language server for Dockerfiles, Compose files, Bake files |
| penpot-mcp | KNELDevStack-AIMW-penpot-mcp | Pending | Design collaboration platform integration |
## Agent Capabilities
@@ -127,6 +128,7 @@ Common environment variables required for MCP servers:
| elasticsearch-mcp | `ELASTICSEARCH_URL`, `ELASTICSEARCH_USERNAME`, `ELASTICSEARCH_PASSWORD` |
| kicad-mcp | `KICAD_HOST` (default: host.docker.internal), `KICAD_PORT` (default: 5555) |
| context7-mcp | `UPSTASH_REDIS_REST_URL`, `UPSTASH_REDIS_REST_TOKEN` |
| penpot-mcp | `PENPOT_URL` (default: https://design.penpot.app), `PENPOT_TOKEN` |
## Quick Start

View File

@@ -31,6 +31,7 @@ Tracking the setup and validation of MCP/LSP servers via Docker Compose.
| mcp-adapter (WordPress) | Pending | |
| audiobook-mcp-server | Pending | |
| mcp-server-elasticsearch | Pending | |
| penpot-mcp | Pending | Design collaboration platform (to be configured) |
## Usage

View File

@@ -424,3 +424,20 @@ services:
- "8085:8080"
profiles:
- dev
# ==========================================
# Design Tools (Added Later)
# ==========================================
# Penpot MCP - Design collaboration platform
penpot-mcp:
build:
context: ./vendor/penpot-mcp
dockerfile: Dockerfile
container_name: KNELDevStack-AIMW-penpot-mcp
restart: unless-stopped
environment:
- PENPOT_URL=${PENPOT_URL:-https://design.penpot.app}
- PENPOT_TOKEN=${PENPOT_TOKEN}
profiles:
- dev