From stitch-kit
Lists all screens in a Stitch project to retrieve screenIds after generate_screen_from_text or for browsing existing screens before calling stitch-mcp-get-screen.
How this skill is triggered — by the user, by Claude, or both
Slash command
/stitch-kit:stitch-mcp-list-screensThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Lists all screens contained within a specific Stitch project. You typically call this right after `generate_screen_from_text` to find the `screenId` of the screen that was just created.
Lists all screens contained within a specific Stitch project. You typically call this right after generate_screen_from_text to find the screenId of the screen that was just created.
Only use this skill when the user explicitly mentions "Stitch".
generate_screen_from_text — to find the new screen's IDscreenId to call get_screenImportant: Use the projects/ID format — not the numeric ID alone.
{
"name": "list_screens",
"arguments": {
"projectId": "projects/3780309359108792857"
}
}
✅ "projects/3780309359108792857"
❌ "3780309359108792857"
{
"screens": [
{
"name": "projects/3780309359108792857/screens/88805abc123def456",
"title": "Login Screen",
"screenshot": {
"downloadUrl": "https://storage.googleapis.com/..."
},
"deviceType": "MOBILE"
}
]
}
screenId from the name field:
"projects/3780309359108792857/screens/88805abc123def456" → screenId = "88805abc123def456"stitch-mcp-get-screen with the numeric projectId and screenIdFor the next call (get_screen), you need the numeric IDs for both project and screen:
projectId → 3780309359108792857 (strip projects/ prefix)screenId → 88805abc123def456 (strip projects/.../screens/ prefix)npx claudepluginhub gabelul/stitch-kit --plugin stitch-kitLists accessible Stitch projects via list_projects MCP tool to retrieve numeric project IDs for resuming work or generating screens in existing projects.
Generates UI screens in Google Stitch from markdown prompt files using MCP tools. Parses sections by markers, sends prompts for generation, fetches images and code, saves to exports and code folders.
Creates Stitch UI screens, design systems, variants, and prototypes from briefs, mockups, or product context. Exports Tailwind HTML, screenshots, and local code artifacts. Use for screen exploration, editing Stitch projects, or multi-screen prototypes.