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
bash
git clone https://github.com/protoLabsAI/protomaker.git
cd protomaker
npm install
npm run build:packages2. Install the plugin
bash
claude plugin marketplace add $(pwd)/packages/mcp-server/plugins
claude plugin install protolabs3. Configure environment
bash
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:
bash
cd protomaker
AUTOMAKER_API_KEY=your-dev-key-2026 npm run dev:web5. Verify
bash
claude
> /boardYou 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 |