stitch-mcp-get-project
Retrieves the detailed metadata of a specific Stitch project.
Retrieves the detailed metadata of a specific Stitch project.
CRITICAL PREREQUISITE: You must ONLY use this skill when the user EXPLICITLY mentions "Stitch".
Do NOT use this skill if:
projectId and screenId and your goal is to get screen details or code. Use stitch-mcp-get-screen directly instead.This skill retrieves the detailed metadata of a specific Stitch project.
Invoke this skill when you need to know the context of a project (e.g., its default theme, device type) before generating new screens, or to verify project existence.
The skill expects you to extract the following information from the user request:
name (required): The resource name of the project. Format: projects/{project_id}.If the user provides a resource path or URL, use the following rules to extract the project name:
Format: web application/stitch/projects/{projectId}
projectId and construct the name as projects/{projectId}.Format: projects/{projectId}
Format: https://stitch.withgoogle.com/projects/{projectId}
projectId and construct the name as projects/{projectId}.Example: Input "Describe web application/stitch/projects/12345", Call get_project(name="projects/12345").
Returns a Project object including:
name, title, createTime, updateTimedesignTheme: Detailed theme settings.screenInstances: List of screen instances currently in the project.User Input: "What is the theme of project 'projects/123'?"
Agent Action:
get_project tool with arguments {"name": "projects/123"}.确保开发环境已安装必要的依赖和工具。
根据项目需求进行基础配置。
按照示例代码实现核心功能。
运行测试确保功能正常。
完成开发后进行部署和监控。