creative-toolkitlisted
Install: claude install-skill HUANGcvs/MeiGen-AI-Design-MCP
# Creative Toolkit
Generate professional AI images through a unified interface that routes across multiple providers. Search curated prompts, enhance ideas into production-ready descriptions, and manage local ComfyUI workflows — all from a single MCP server.
## Quick Start
Add the MCP server to your mcporter config (`~/.config/mcporter/config.json`):
```json
{
"mcpServers": {
"creative-toolkit": {
"command": "npx",
"args": ["-y", "meigen@latest"],
"env": {
"MEIGEN_API_TOKEN": "${MEIGEN_API_TOKEN}"
}
}
}
}
```
Set your API token in `~/.clawdbot/.env` or shell environment:
```bash
export MEIGEN_API_TOKEN="meigen_sk_..."
```
Generate your first image:
```bash
mcporter call creative-toolkit.generate_image prompt="a minimalist perfume bottle on white marble, soft directional lighting, product photography"
```
Or try it without any config (ad-hoc stdio mode):
```bash
mcporter call --stdio "npx -y meigen@latest" generate_image prompt="a ceramic vase with morning light"
```
No API key? Free tools still work:
```bash
mcporter call creative-toolkit.search_gallery query="cyberpunk"
mcporter call creative-toolkit.enhance_prompt brief="a cat in space" style="realistic"
```
## Setup
### Get an API Token
1. Visit [meigen.ai](https://www.meigen.ai) → sign in → click avatar → **Settings** → **API Keys**
2. Create a new key (starts with `meigen_sk_`)
3. Set as environment variable or save to config:
```bash
# Shell environment or ~/.c