stitch-mcp-generate-screen-from-text
Stitch MCP — Generate Screen from Text
Generates a UI design screen from a structured text prompt. This is the central action in any Stitch workflow — everything before it (spec generation, prompt assembly) is preparation, and everything after it (screen retrieval, code conversion) is follow-through.
Critical prerequisite
Only use this skill when the user explicitly mentions "Stitch" or when called from an upstream skill (e.g. stitch-ideate, stitch-orchestrator).
You must have a projectId before calling this. If you don't have one:
- Create a new project via
stitch-mcp-create-project - Or find an existing project via
stitch-mcp-list-projects
When to use
- User asks to "design", "generate", "create", or "make" a screen using Stitch
- The orchestrator has assembled a prompt via
stitch-ui-prompt-architect - User provides specific visual requirements and wants a Stitch-generated result
Call the MCP tool
{
"name": "generate_screen_from_text",
"arguments": {
"projectId": "3780309359108792857",
"prompt": "[Full structured prompt — see below]",
"deviceType": "MOBILE",
"modelId": "GEMINI_3_1_PRO"
}
}
Parameter reference
projectId — numeric ID only, no projects/ prefix
✅ "3780309359108792857"
❌ "projects/3780309359108792857"
prompt — use the [Context] [Layout] [Components] structure
[Context & Style]
[Device] [Mode] [screen type] for [product]. [aesthetic]. [theme]. [colors]. [font].
[Layout]
[Describe the structural arrangement]
[Components]
[Specific named UI components with details]
For best results, use the stitch-ui-prompt-architect skill to assemble the prompt before calling this tool.
deviceType
| Value | Use when |
|---|---|
MOBILE |
Mobile app, phone-sized UI (default if uncertain) |
DESKTOP |
Web dashboard, landing page, SaaS UI |
TABLET |
Tablet-specific layout |
AGNOSTIC |
Not tied to a specific device — responsive/fluid layout |
modelId
| Value | Use when |
|---|---|
GEMINI_3_1_PRO |
Recommended — complex layouts, high fidelity |
GEMINI_3_FLASH |
Fast iteration, wireframes, simple changes |
GEMINI_3_PRO |
Deprecated. Still works but will be removed. Use GEMINI_3_1_PRO instead. |
After generating
This tool returns session info but not the actual screenshot/HTML. To retrieve the design:
- Call
stitch-mcp-list-screenswithprojects/[projectId]to find the new screen - Call
stitch-mcp-get-screenwith theprojectIdandscreenIdto get the screenshot and HTML
Prompt quality checklist
Before calling this tool, verify the prompt:
- Specifies device type consistently with
deviceTypeparameter - Names specific components (not "some buttons" — "primary 'Sign In' button")
- Includes colors (hex codes or clear color names)
- Uses realistic content (not Lorem Ipsum)
- Specifies light or dark mode explicitly
Batch generation from full PRDs
When the prompt is a complete PRD document (product overview, design system, multiple screen specifications, build guide), Stitch will generate multiple screens in a single call — not just one. Stitch generates up to 10 screens per call. A PRD with 8 screen specs typically produces 5-7 screens automatically.
This is the same mechanism Stitch's web Ideate uses for "generate all screens". The PRD format acts as a comprehensive prompt that Stitch decomposes internally.
How to use batch generation:
-
Send the full PRD text as the
promptparameter -
Stitch generates up to ~10 screens per call from a multi-screen PRD
-
Two possible outcomes depending on whether the MCP response times out:
If response returns with data:
- Check
output_componentsfor continuation suggestions (e.g. "Yes, make them all", "Generate remaining screens") - Automatically call
generate_screen_from_textagain with the suggestion text as theprompt— the user already initiated generation, no need to re-confirm - Repeat until no more
output_componentssuggestions appear (max 3 continuation calls to prevent infinite loops)
If response returns empty (HTTP timeout):
- Generation is still running server-side — do NOT retry
- Wait 90-120 seconds, then call
list_screensto discover what was generated - If empty, wait another 60 seconds and retry the list call
- Generate any missing screens individually with focused prompts referencing the PRD's design system
- Check
Timing
Stitch generation takes 60–180 seconds for single screens and up to 5 minutes for multi-screen PRD generation. This is normal behavior, not a timeout.
- Do NOT retry during this window
- Do NOT assume failure if it takes > 60 seconds
- The MCP tool may return empty for long generations — check
list_screensafterward - If it fails: wait 90 seconds, check
list_screens, retry ONCE max if nothing appeared - Each call creates a new generation — retries mean duplicate screens
References
examples/desktop.md— Desktop dashboard prompts (SaaS analytics, admin panel)examples/mobile.md— Mobile app prompts (login, social feed, e-commerce)
More from gabelul/stitch-kit
stitch-mcp-get-screen
Retrieves full details of a specific Stitch screen — HTML download URL, screenshot URL, dimensions. This is the final step in design retrieval before code conversion.
35stitch-setup
Step-by-step installer for the stitch-kit plugin and Stitch MCP server. Use this when setting up the plugin for the first time, diagnosing connection issues, or helping a new user get Stitch running in Claude Code or Codex CLI.
34stitch-react-components
Converts Stitch designs into modular Vite + React components — TypeScript, theme-mapped Tailwind, dark mode via CSS variables, and clean component architecture. Use this for Vite/React apps without App Router. For Next.js 15 App Router, use stitch-nextjs-components instead.
24stitch-ui-prompt-architect
Builds Stitch-ready prompts via two paths — Path A enhances vague ideas into polished prompts, Path B merges a Design Spec JSON + user request into a structured [Context] [Layout] [Components] prompt.
23stitch-ideate
Conversational design ideation agent that researches trends, explores visual directions, and refines ideas through adaptive questioning — then produces a rich PRD document and auto-generates Stitch screens. Your design buddy that thinks deeply before designing.
23stitch-mcp-create-design-system
Creates a reusable Stitch Design System from theme tokens — colors, fonts, roundness, saturation. Can be applied to future screens for visual consistency.
23