# designforyou [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/swapp1990/designforyou-mcp  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/designforyou-2

## Description
Generate logos, social posts, app screenshots, comic panels & visual-novel assets from prompts.

## Tools
Capabilities this server exposes over MCP:

- **browse_templates** — Browse the 119-template catalog (filter by category)
- **recommend_template** — Recommend the best templates for a described use case
- **get_text_fields** — List a template's editable text fields
- **get_credits** — Check your credit balance
- **generate** — Generate a finished design from a template + description
- **generate_variations** — Generate style variations of a template
- **edit_text** — Edit text on an existing design
- **vn_generate_sprite_sheet** — Generate a visual-novel character sprite sheet

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "designforyou": {
    "command": "npx",
    "args": ["-y","designforyou-mcp"]
  }
}
```

## Documentation & README

# DesignForYou — MCP server

[![npm](https://img.shields.io/npm/v/designforyou-mcp?logo=npm)](https://www.npmjs.com/package/designforyou-mcp)
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-designforyou-2ea44f)](https://registry.modelcontextprotocol.io/v0/servers?search=designforyou)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)

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

![DesignForYou demo — prompt to generated design](https://raw.githubusercontent.com/swapp1990/designforyou-mcp/HEAD/demo.gif)

*Describe what you want → the agent picks a template and generates a finished
design. Logos, Instagram posts, app-store screenshots, and more.*

| | |
|---|---|
| **Website** | https://designforyou.swapp1990.org |
| **Connect (human)** | https://designforyou.swapp1990.org/connect |
| **Agent guide (plain text)** | https://designforyou.swapp1990.org/.well-known/mcp/connect.md |
| **MCP URL** | `https://designforyou.swapp1990.org/mcp/v2/` (trailing slash required) |
| **Privacy** | https://designforyou.swapp1990.org/privacy |

## 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 `/connect` → `DESIGNFORYOU_MCP_TOKEN` | **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](https://github.com/swapp1990/designforyou-mcp/blob/HEAD/CONNECT.md) or the live well-known guide above.

## Install

### Claude Code (recommended)

```bash
claude mcp add --transport http designforyou https://designforyou.swapp1990.org/mcp/v2/
claude mcp login designforyou
```

Approve the browser sign-in when prompted.

### Grok

```bash
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:

```bash
opencode mcp auth designforyou
opencode mcp list
```

### Codex (bearer fallback)

1. Generate a token at https://designforyou.swapp1990.org/connect  
2. Store as `DESIGNFORYOU_MCP_TOKEN`  
3. Configure:

```powershell
codex mcp add designforyou --url https://designforyou.swapp1990.org/mcp/v2/ --bearer-token-env-var DESIGNFORYOU_MCP_TOKEN
```

### Cursor

[![Add to Cursor](https://img.shields.io/badge/Add%20to-Cursor-000?logo=cursor)](cursor://anysphere.cursor-deeplink/mcp/install?name=designforyou&config=eyJ1cmwiOiJodHRwczovL2Rlc2lnbmZvcnlvdS5zd2FwcDE5OTAub3JnL21jcC92Mi8ifQ==)

Or `.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "designforyou": {
      "url": "https://designforyou.swapp1990.org/mcp/v2/",
      "transport": "http"
    }
  }
}
```

### VS Code

[![Install in VS Code](https://img.shields.io/badge/Install-VS%20Code-0098FF?logo=visualstudiocode)](https://insiders.vscode.dev/redirect/mcp/install?name=designforyou&config=%7B%22url%22%3A%22https%3A%2F%2Fdesignforyou.swapp1990.org%2Fmcp%2Fv2%2F%22%7D)

### Claude Desktop / stdio shim

```bash
npx -y designforyou-mcp
```

Or 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:

```powershell
$env:DESIGNFORYOU_PROVIDER = "grok-subscription"
npx -y designforyou-mcp
```

This 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:

```powershell
codex mcp add designforyou-grok-local `
  --env DESIGNFORYOU_PROVIDER=grok-subscription `
  -- node D:\MyProjects\Claude\designforyou-mcp\bin.js

codex mcp list
```

Restart 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:

```json
{
  "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 |
|------|------|--------------|
| `browse_templates` | free | Browse the 119-template catalog (filter by category) |
| `recommend_template` | free | Recommend the best templates for a described use case |
| `get_text_fields` | free | List a template's editable text fields |
| `get_credits` | free | Check your credit balance |
| `generate` | paid | Generate a finished design from a template + description |
| `generate_variations` | paid | Generate style variations of a template |
| `edit_text` | paid | Edit text on an existing design |
| `vn_generate_sprite_sheet` | 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

- App: https://designforyou.swapp1990.org  
- Connect: https://designforyou.swapp1990.org/connect  
- Agent guide: https://designforyou.swapp1990.org/.well-known/mcp/connect.md  
- [Official MCP Registry](https://registry.modelcontextprotocol.io/v0/servers?search=designforyou) as `org.swapp1990.designforyou/designforyou`

