Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Expert UI design skill for Stitch MCP: enhances prompts, generates high-fidelity screens, and maintains design system consistency.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/tool-schemas.md
1# Stitch MCP Tool Schemas23Use these examples to format your tool calls to the Stitch MCP server correctly.45---67## ๐๏ธ Project Management89### `list_projects`10Lists all Stitch projects accessible to you.11```json12// No parameters needed13{}14```1516### `get_project`17Retrieves details of a specific project.18```json19{20"name": "projects/4044680601076201931"21}22```2324### `create_project`25Creates a new Stitch project.26```json27{28"title": "My New App"29}30```3132---3334## ๐จ Design Generation3536### `generate_screen_from_text`37Generates a new screen from a text description.38```json39{40"projectId": "4044680601076201931",41"prompt": "A modern landing page for a coffee shop with a hero section, menu, and contact form. Use warm brown tones (#4b2c20) and a clean sans-serif font.",42"deviceType": "DESKTOP" // Options: MOBILE, DESKTOP, TABLET43}44```4546### `edit_screens`47Edits existing screens with a text prompt.48```json49{50"projectId": "4044680601076201931",51"selectedScreenIds": ["98b50e2ddc9943efb387052637738f61"],52"prompt": "Change the background color to white (#ffffff) and make the call-to-action button larger."53}54```5556---5758## ๐ผ๏ธ Screen Management5960### `list_screens`61Lists all screens within a project.62```json63{64"projectId": "4044680601076201931"65}66```6768### `get_screen`69Retrieves details of a specific screen.70```json71{72"projectId": "4044680601076201931",73"screenId": "98b50e2ddc9943efb387052637738f61",74"name": "projects/4044680601076201931/screens/98b50e2ddc9943efb387052637738f61"75}76```