designforyou
Generates Instagram posts from natural-language prompts using pre-built design templates.
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., "@designforyouDesign a minimalist logo for a tech startup named 'Nova'"
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.
DesignForYou — MCP server
Generate logos, social posts, app-store screenshots, comic panels, and visual-novel assets from natural-language prompts — directly inside Claude Code, Grok, Codex, Cursor, OpenCode, ChatGPT, or any MCP client.
DesignForYou is an MCP-native design generator backed by 119 templates. Browse and recommend tools are free; generation is metered per user (50 free credits on sign-up).
Demo

Describe what you want → the agent picks a template and generates a finished design. Logos, Instagram posts, app-store screenshots, and more.
Website | |
Connect (human) | |
Agent guide (plain text) | https://designforyou.swapp1990.org/.well-known/mcp/connect.md |
MCP URL |
|
Privacy |
Related MCP server: RendrKit
Auth
Path | What you do | Who stores secrets |
OAuth (primary) | Complete browser sign-in when the client prompts | The MCP client |
Long-lived token (fallback) | Sign in on the website → Generate on | You (env / header) |
OAuth is the normal path. PAT minting is only for Codex, headless agents, or when OAuth stays “disabled / not connected.” Full recipes: CONNECT.md or the live well-known guide above.
Install
Claude Code (recommended)
claude mcp add --transport http designforyou https://designforyou.swapp1990.org/mcp/v2/
claude mcp login designforyouApprove the browser sign-in when prompted.
Grok
grok mcp add --transport http designforyou https://designforyou.swapp1990.org/mcp/v2/Then /mcps → designforyou → i (authorize) → browser → r.
OpenCode
Add a remote MCP entry for the URL above, then:
opencode mcp auth designforyou
opencode mcp listCodex (bearer fallback)
Generate a token at https://designforyou.swapp1990.org/connect
Store as
DESIGNFORYOU_MCP_TOKENConfigure:
codex mcp add designforyou --url https://designforyou.swapp1990.org/mcp/v2/ --bearer-token-env-var DESIGNFORYOU_MCP_TOKENCursor
Or .cursor/mcp.json:
{
"mcpServers": {
"designforyou": {
"url": "https://designforyou.swapp1990.org/mcp/v2/",
"transport": "http"
}
}
}VS Code
Claude Desktop / stdio shim
npx -y designforyou-mcpOr native HTTP in claude_desktop_config.json with the /mcp/v2/ URL. Complete OAuth when prompted.
Optional local Grok CLI sidecar
The default command above always uses the hosted DesignForYou MCP server. To run the focused local image and reference-animation tools instead, explicitly opt in with an installed, signed-in Grok Build CLI:
$env:DESIGNFORYOU_PROVIDER = "grok-subscription"
npx -y designforyou-mcpThis sidecar invokes grok --single through the CLI's existing signed-in
session; it never accepts or forwards an xAI API key, and it denies all MCP
tools inside the spawned CLI so generation cannot route through a hosted
billing server. Billing note: the Grok Build CLI's native media tools
(image_gen, image_to_video) call the xAI API (api.x.ai) with the
signed-in session token, so each generation meters the account's xAI console
usage — media generation is not covered by the grok.com chat subscription.
The sidecar exposes grok_generate_image and animate_reference_grok_video,
and verifies the requested local output file before returning it. The hosted
tools and their providers remain the default when the variable is unset.
(The grok-subscription opt-in value is kept for compatibility with existing
client configs.)
Use the sidecar from local Codex threads
Register the checked-out sidecar as a local stdio MCP server:
codex mcp add designforyou-grok-local `
--env DESIGNFORYOU_PROVIDER=grok-subscription `
-- node D:\MyProjects\Claude\designforyou-mcp\bin.js
codex mcp listRestart Codex or open a new local thread after adding the server. The thread
can then generate a starting frame with grok_generate_image and pass that
file to animate_reference_grok_video for an acting performance:
{
"image_path": "D:\\assets\\actor-scene.jpg",
"prompt": "She notices someone entering, freezes, then forces a nervous smile. Step backward slowly while maintaining eye contact. Use a subtle handheld push-in.",
"line": "I wasn't expecting you.",
"duration": 6,
"aspect_ratio": "16:9",
"output_path": "D:\\assets\\performance.mp4"
}The reference may be supplied as image_path, image_url, or
image_data_url. This is a local-development path: the Codex host must be able
to run the installed, signed-in grok executable. Codex cloud threads cannot
use the machine's Grok login or local files. Use only trusted prompts because
the sidecar runs Grok headlessly with automatic tool approval.
For video results, public_url is returned when Grok supplies a usable URL/key
or when optional S3 correlation is configured. The sidecar brackets generation
with S3 listings and accepts only one newly-created object whose key is absent
from the baseline and whose byte size exactly matches the verified local MP4;
it also checks HTTP accessibility. S3 settings can be supplied with
DESIGNFORYOU_GROK_S3_BUCKET, DESIGNFORYOU_GROK_S3_REGION,
DESIGNFORYOU_GROK_S3_ENDPOINT, and DESIGNFORYOU_GROK_S3_KEY_PREFIX, or
discovered from the narrowly-scoped
[tools.zdr_video_output_s3] and its .read_write credentials section in
the local Grok config.
Missing configuration, listing failures, ambiguous matches, and inaccessible
objects leave the verified local success intact and include a diagnostic.
Automatic correlation requires the AWS CLI on PATH and the local Grok S3
configuration. The configured identity also needs s3:ListBucket restricted
to the configured key prefix; upload-only s3:PutObject credentials cannot
perform safe correlation. Credentials are passed only to the AWS child process
and are never printed or packaged. If listing is unavailable, generation still
returns the verified local file with an explicit diagnostic.
Tools
Tool | Cost | What it does |
| free | Browse the 119-template catalog (filter by category) |
| free | Recommend the best templates for a described use case |
| free | List a template's editable text fields |
| free | Check your credit balance |
| paid | Generate a finished design from a template + description |
| paid | Generate style variations of a template |
| paid | Edit text on an existing design |
| paid | Generate a visual-novel character sprite sheet |
Example prompts
"Browse logo templates on DesignForYou."
"I'm opening a coffee shop called NEXUS — minimalist, warm earth tones. Make me a logo."
"Generate an Instagram post announcing a 20%-off flash sale for a vegan bakery."
"Create an app-store screenshot for a meditation app, calm gradient background."
How it works
DesignForYou exposes a remote MCP server (Streamable HTTP). On the first paid
tool call (or when you run mcp login / mcp auth), your client discovers the
OAuth flow (RFC 9728 protected-resource metadata → Supabase with Dynamic Client
Registration), opens a browser for sign-in + consent, and stores tokens.
Generation is metered against your credit balance; top up on the website.
This repository is the public home for install docs and the MCP server.json.
The product itself is a hosted service — there is no self-host package.
Links
Agent guide: https://designforyou.swapp1990.org/.well-known/mcp/connect.md
Official MCP Registry as
org.swapp1990.designforyou/designforyou
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceGenerate, edit, and restore images using natural language prompts through the Gemini 2.5 Flash image model. Supports creating app icons, seamless patterns, visual stories, and technical diagrams with smart file management.82,38510Apache 2.0
- AlicenseAqualityCmaintenanceGenerate production-ready images from text prompts. AI-powered design API with 50+ templates for social posts, banners, OG images, and more.830MIT
- AlicenseNot gradedqualityBmaintenanceGenerate and refine AI images/audio/video through natural conversation.397Apache 2.0
- AlicenseAqualityBmaintenanceGenerates mock 2D PNG assets for game prototypes, supporting gradients, patterns, text, spritesheets, and embedded metadata.23734MIT
Related MCP Connectors
Generate on-brand images from your AI agent: design, edit, and render templates over MCP.
Generate PWA icon sets and iOS splash screens from a text prompt or an existing image.
Turn any idea, URL, doc, or PDF into on-brand visuals: 100+ formats, native in 150+ languages
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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/swapp1990/designforyou-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server