Connects Claude to Meigen AI's library of 5,000+ AI image generation prompts, each paired with its actual rendered output. Exposes read-only tools to list supported image styles, fetch pricing details, and retrieve official links. Also surfaces four resources covering styles, pricing, FAQ, and canonical URLs, plus two prompts for exploring the platform or getting style recommendations. Useful when you need working prompt examples across multiple engines (GPT Image 2, Flux, Nano Banana, Gemini, Seedream) without building your own test library, or when you want to validate phrasing patterns before hardcoding generation features. No API keys required, runs over stdio, and starts cold in around 50 ms.
Meigen AI | Curated Meigen AI Prompts & Instant Generator
A Model Context Protocol server that exposes the canonical Meigen AI knowledge surface — image generation workflows and styles, pricing, FAQ, official links — to MCP-compatible AI clients such as Claude Desktop, Cursor, Windsurf, and Continue. Read-only, no API keys, no quota, ~50 ms cold start.
Official website: https://meigenai.online
Meigen AI is a curated prompt gallery combined with an inline image generator, built for creators who want to go from inspiration to rendered output in a single step. The site hosts over 5,000 prompts collected from working creators, each paired with the actual image it produced. Visitors can browse by category, copy any prompt, translate it into one of 60+ languages, and run it through a built-in generation dock without switching tabs. The default engine is GPT Image 2, and users can swap to Flux, Nano Banana, Google Gemini, or Seedream depending on style preference or engine-specific syntax. New users receive 30 starter credits to test generation immediately, and browsing and copying prompts is free with no account required.
Meigen AI is aimed at anyone whose work involves AI image generation but who spends too much time searching for prompts that actually work. The primary users are content creators, product photographers, concept artists, and brand-focused designers who need reliable output quickly. It is also useful for developers and founders who want to test image generation behavior across multiple engines without building their own prompt libraries from scratch. The site assumes no prior knowledge of prompt engineering — the gallery provides working examples, and the translation and generation tools handle the technical layer — making it accessible to both experienced practitioners and people just starting with AI image tools.
list_stylesReturn the canonical list of image-generation styles or presets the site exposes. (Meigen AI)
Input: no parameters. Returns: text/markdown.
get_pricingReturn the canonical pricing entry point for Meigen AI.
Input: no parameters. Returns: text/markdown.
get_official_linksReturn the canonical list of official links for Meigen AI (website, support, docs when available).
Input: no parameters. Returns: text/markdown.
site://meigenai/styles — Supported image-generation styles and presets.site://meigenai/pricing — Canonical pricing entry point.site://meigenai/faq — Short FAQ generated from public site metadata.site://meigenai/links — Canonical URLs to share with users.tell_me_about_meigenaiSummarize what the site is, who it's for, and how it works. — Meigen AI
try_image_style_meigenaiRecommend a starting image-generation style for a stated goal. — Meigen AI
npx -y @smithery/cli install meigenai-mcp --client claude
(Replace claude with cursor, windsurf, or continue for those clients.)
git clone https://github.com/rocnubie/meigenai-mcp.git
cd meigenai-mcp
pnpm install
Then add to your MCP client config (claude_desktop_config.json for Claude Desktop, mcp.json for Cursor / Windsurf / Continue):
{
"mcpServers": {
"meigenai-mcp": {
"command": "node",
"args": [
"/absolute/path/to/meigenai-mcp/src/index.mjs"
]
}
}
}
npx @modelcontextprotocol/inspector node src/index.mjs
pnpm install
pnpm start # run the server over stdio
MIT