Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.51 KB

File metadata and controls

63 lines (45 loc) · 1.51 KB

Plugin Quickstart

Get the protoLabs Claude Code plugin running in 5 minutes.

Prerequisites

  • Node.js 22+
  • Claude Code CLI installed and authenticated
  • Git

Steps

1. Clone and build

git clone https://github.com/protoLabsAI/protomaker.git
cd protomaker
npm install
npm run build:packages

2. Install the plugin

claude plugin marketplace add $(pwd)/packages/mcp-server/plugins
claude plugin install protolabs

3. Configure environment

PLUGIN_DIR=~/.claude/plugins/protolabs
cp "$PLUGIN_DIR/.env.example" "$PLUGIN_DIR/.env"
echo "AUTOMAKER_ROOT=$(pwd)" > "$PLUGIN_DIR/.env"
echo "AUTOMAKER_API_KEY=your-dev-key-2026" >> "$PLUGIN_DIR/.env"

4. Start the server

In a separate terminal:

cd protomaker
AUTOMAKER_API_KEY=your-dev-key-2026 npm run dev:web

5. Verify

claude
> /board

You should see your Kanban board. If you see a connection error, check that the server is running on port 3008.

Next Steps

Want to... Read
See all commands and examples Plugin Commands
Understand the plugin architecture Plugin Deep Dive
Configure Docker, GitHub, Discord Claude Plugin Setup
Browse the full tool catalog MCP Tools Reference