lemgen-ai-design-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@lemgen-ai-design-mcpFind inspiration for a futuristic cityscape"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Why This Exists
Most AI coding agents are good at writing text and code, but weak at visual creative work. LemGen MCP gives them a visual toolkit:
Search a real prompt gallery before inventing prompts from scratch.
Pull full prompts, images, model metadata, and source links into the agent context.
Expand rough ideas into production-grade prompts.
Generate images or videos through LemGen when the user approves the final prompt.
Keep all exploratory tools free and local-friendly; only generation needs a token.
The result is a cleaner workflow: browse inspiration, craft the direction, then generate without leaving your agent.
Related MCP server: Vision MCP Server
See The Library
Quick Start
Free inspiration tools work without any API key:
{
"mcpServers": {
"lemgen": {
"command": "npx",
"args": ["-y", "lemgen@latest"]
}
}
}To enable generate_image and generate_video, create an API key at
https://lemgen.org and add it to your MCP config:
{
"mcpServers": {
"lemgen": {
"command": "npx",
"args": ["-y", "lemgen@latest"],
"env": {
"LEMGEN_API_TOKEN": "sk_your_key_here"
}
}
}
}During local development, run from this repository:
pnpm install
pnpm build
node bin/lemgen-mcp.jsWhat You Can Do
Tool | Free | What it does | When to use it |
| Yes | Searches 4,533 curated prompts with preview media and source links. | The user wants ideas, examples, style references, or prompt recipes. |
| Yes | Returns the full prompt, images/video, model, tags, stats, and LemGen URL. | The user picked an item from search results. |
| Yes | Turns a rough idea into a detailed image/video prompt. | The user says something short like "luxury perfume ad". |
| Yes | Lists supported image/video models, ratios, resolutions, and reference limits. | The user asks which model to use. |
| Yes | Translates, polishes, or improves prompts. | The user already has a prompt but wants it cleaner. |
| Yes | Stores local style, model, ratio, and favorite prompt preferences. | The user says "remember this style". |
| Token | Submits an image generation job to LemGen. | The user approved a final image prompt. |
| Token | Submits a video generation job to LemGen. | The user explicitly confirmed video generation. |
Example Workflows
1. Find A Visual Direction
User:
Find product photography inspiration for a matte black perfume bottle.
Agent:
Calls
search_gallery(query="matte black perfume product photography").Shows preview URLs and prompt IDs.
Calls
get_inspiration(id=...)when the user picks one.Adapts the prompt for the user's product.
2. Improve A Weak Prompt
User:
Make a poster for a new AI design tool.
Agent:
Calls
enhance_prompt(idea="poster for a new AI design tool", style="poster").Explains the visual direction.
Asks for approval before generation.
3. Generate An Image
User:
Looks good, generate it in 16:9.
Agent:
Calls
generate_image(prompt=..., aspectRatio="16:9").Returns the generation ID, status, and image URLs.
Does not invent a visual description it cannot verify.
4. Generate A Video
Video is slower and more expensive, so the agent should confirm first:
This will create a LemGen video job. Continue?
After confirmation it calls generate_video.
Prompt Library
This repository ships with data/trending-prompts.json.
Current snapshot:
Type | Count |
Image prompts | 2,593 |
Video prompts | 1,940 |
Total | 4,533 |
Model coverage:
Model | Count |
GPT Image | 1,935 |
Seedance 2.0 | 1,940 |
Nano Banana Pro | 489 |
Midjourney | 104 |
Other image models | 65 |
Each item includes:
type GalleryPrompt = {
id: string;
rank: number;
title: string;
prompt: string;
author: string;
model: string;
categories: string[];
image: string;
images: string[];
video_url?: string;
media_type: "image" | "video";
likes: number;
views: number;
source_url: string;
};The companion data-only repository is:
https://github.com/aithink001/lemgen-trending-prompts
Client Setup
Claude Code Plugin
/plugin marketplace add aithink001/lemgen-ai-design-mcp
/plugin install lemgen@lemgen-marketplaceRestart Claude Code after installation.
Cursor
Add this to your Cursor MCP config:
{
"mcpServers": {
"lemgen": {
"command": "npx",
"args": ["-y", "lemgen@latest"],
"env": {
"LEMGEN_API_TOKEN": "sk_your_key_here"
}
}
}
}Codex
codex mcp add lemgen -- npx -y lemgen@latestFor generation, add LEMGEN_API_TOKEN to the MCP server environment in your
Codex config.
Windsurf / Roo Code / Cline
Use the same MCP server block:
{
"command": "npx",
"args": ["-y", "lemgen@latest"],
"env": {
"LEMGEN_API_TOKEN": "sk_your_key_here"
}
}OpenClaw
Use the included skill:
openclaw/SKILL.mdIt defines the recommended workflow for inspiration search, prompt enhancement, generation confirmation, and video safety.
Environment Variables
Variable | Default | Description |
|
| LemGen API host. |
| none | Required for image/video generation. |
|
| Reserved for future CLI image saving. |
|
| Reserved for future CLI video saving. |
|
| Local preferences file. |
Development
pnpm install
pnpm validate
pnpm inspectValidation runs:
TypeScript typecheck
Build
Brand scan
MCP client smoke test
Design Principles
Free discovery first; generation second.
Never generate expensive video without explicit confirmation.
Return actual URLs and IDs; do not hallucinate what an image looks like.
Keep prompt data source-linked to LemGen.
Keep public docs and data clean of legacy or duplicate-brand signals.
Roadmap
Publish the
lemgennpm package.Add a remote MCP endpoint at
https://mcp.lemgen.org/mcp.Add richer semantic search over the prompt library.
Add generated prompt packs for product photography, logos, portraits, posters, and video ads.
Add one-shot CLI generation commands for shell and CI workflows.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aithink001/lemgen-ai-design-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server