The Stitch extension for Gemini CLI enables you to interact with the Stitch MCP server using natural language commands.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"stitch": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Stitch extension for Gemini CLI enables you to interact with the Stitch MCP (Model Context Protocol) server using natural language commands. This makes it easier to manage your design projects and assets within Stitch, the AI-powered UI/UX design and code generation tool.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
Coinbase Design System - MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Stitch and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Stitch extension for Gemini CLI enables you to interact with the Stitch MCP (Model Context Protocol) server using natural language commands. This makes it easier to manage your design projects and assets within Stitch, the AI-powered UI/UX design and code generation tool.
Before using this extension, ensure you have the following installed:
Gemini CLI:
gcloud CLI: (Optional, recommended for ADC authentication)
Run the following command in your terminal to install the Stitch extension:
gemini extensions install https://github.com/gemini-cli-extensions/stitch --auto-update
To use the Stitch extension, you need to configure authentication. The Stitch MCP server supports two authentication methods:
Choose one method below based on your needs.
Get API Key:
Configure Extension:
Run the following commands to configure your API key (replace your-api-key-here with your actual API key):
export API_KEY="your-api-key-here"
sed "s/YOUR_API_KEY/$API_KEY/g" ~/.gemini/extensions/Stitch/gemini-extension-apikey.json > ~/.gemini/extensions/Stitch/gemini-extension.json
Login to gcloud:
gcloud auth login
Configure Project and Quota:
Set your project ID variable and configure the project. Replace your-project-id with your actual Google Cloud Project ID.
export PROJECT_ID="your-project-id"
gcloud config set project $PROJECT_ID
gcloud auth application-default set-quota-project $PROJECT_ID
Enable Stitch MCP API: Enable the Stitch MCP service on your project.
gcloud beta services mcp enable stitch.googleapis.com --project=$PROJECT_ID
Grant Permissions:
Your account needs the roles/serviceusage.serviceUsageConsumer role.
gcloud projects add-iam-policy-binding $PROJECT_ID \
--member="user:your-email@gmail.com" \
--role="roles/serviceusage.serviceUsageConsumer"
Login to ADC:
gcloud auth application-default login
Configure Extension: Run the following command to update the configuration file with your project ID:
sed "s/YOUR_PROJECT_ID/$PROJECT_ID/g" ~/.gemini/extensions/Stitch/gemini-exten