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.
npx claudepluginhub gabelul/stitch-kit --plugin stitch-kitThis skill is limited to using the following tools:
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 screens in a Stitch project with names, titles, thumbnails, and device types. Useful for browsing generated designs, finding screens to iterate on, or selecting screenId for export via get_screen.
Lists 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.
Share bugs, ideas, or general feedback.
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)