Server data from the Official MCP Registry
Render store-ready App Store and Google Play screenshots: device frames, headlines, exact sizes.
Render store-ready App Store and Google Play screenshots: device frames, headlines, exact sizes.
storeshots-mcp is a well-designed, security-conscious MCP server for rendering store screenshots. It has no authentication (appropriate for a local rendering tool), uses only trusted dependencies (sharp, zod, MCP SDK), and implements proper input validation via Zod schemas. File I/O and image processing are safely isolated to expected directories with no path traversal or command injection risks. Minor code quality observations around error handling breadth do not materially impact security. Supply chain analysis found 5 known vulnerabilities in dependencies (2 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-mtbun-storeshots-mcp": {
"args": [
"-y",
"storeshots-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Store-ready App Store and Google Play screenshots, generated by your AI agent.
An MCP (Model Context Protocol) server that turns raw app screenshots into polished, pixel-perfect store listing visuals: device frames, bold benefit-driven headlines, brand colors, and exact store dimensions for iOS and Android. Your agent writes the copy, storeshots renders the pixels.
Making store screenshots is the least fun part of shipping an app. Design tools are manual, screenshot SaaS products are paid and template-locked, and fastlane frameit only frames iOS devices without any marketing layer.
storeshots-mcp takes a different approach. It splits the job the way it should be split:
| The agent (Claude, Cursor, etc.) | The server (storeshots) |
|---|---|
| Reads your codebase, finds the benefits | Renders text with pixel-perfect typography |
| Writes punchy headlines | Composes device frames and backgrounds |
| Translates copy into any language | Enforces exact store dimensions |
| Picks which screen sells which feature | Outputs deterministic, reviewable PNGs |
No API keys. No accounts. No image-generation costs. Everything renders locally and deterministically, so the same input always produces the same output.
claude mcp add storeshots -- npx -y storeshots-mcp
Add to your MCP config (claude_desktop_config.json, .cursor/mcp.json, or equivalent):
{
"mcpServers": {
"storeshots": {
"command": "npx",
"args": ["-y", "storeshots-mcp"]
}
}
}
Add to ~/.codex/config.toml:
[mcp_servers.storeshots]
command = "npx"
args = ["-y", "storeshots-mcp"]
storeshots-mcp is a plain stdio MCP server with zero client-specific behavior, so it runs in any MCP-capable agent: Claude Code, Claude Desktop, Cursor, Windsurf, Antigravity, Codex, Gemini CLI, VS Code, Zed, and whatever ships next week.
Prefer no server at all? The same engine is available as a CLI:
npx storeshots compose --preset ios-phone --bg "#E31837" \
--verb "TRACK" --desc "YOUR DAILY MOOD" \
--screenshot ./raw/home.png --output ./out/en_01.png
Then just ask:
"Take the screenshots in ./raw-shots and generate a full App Store and Play Store set. Brand color #E31837, 6 screenshots per platform, English and Turkish."
5 presets with exact store-required dimensions:
| Preset | Store | Dimensions |
|---|---|---|
ios-phone | App Store, iPhone 6.9" | 1320 × 2868 |
android-phone | Google Play, phone | 1080 × 1920 |
ipad-13 | App Store, iPad Pro 13" | 2064 × 2752 |
android-tablet | Google Play, 10" tablet | 1600 × 2560 |
play-feature-graphic | Google Play, feature graphic (landscape header) | 1024 × 500 |
Device frames for iPhone (dynamic island), Pixel-style Android (punch hole), iPad, and Android tablet, drawn programmatically at exact scale
Benefit-first headline layout: a bold action verb plus a short descriptor, sized and positioned for store shelf impact
Smart contrast: text color flips between light and dark based on background luminance
Full Unicode typography: bundled OFL-licensed font renders İ, Ğ, Ş, Ü, ß, and accented characters correctly in all caps
Showcase composer: one wide preview image of the whole set, ready for your repo, tweet, or client deck
| Tool | Description |
|---|---|
list_presets | Returns all platform presets with dimensions and layout metrics |
compose_screenshot | Renders one screenshot: background, device frame, headline, source image |
generate_set | Batch-renders a full ordered set for one platform and language |
create_showcase | Composes a preview strip from generated screenshots |
validate_screenshot | Checks an image against store dimension and format requirements |
Every tool returns file paths plus a structured summary, so the agent can review output and iterate.
Translation happens in the agent, not the server. Generate your English set, then ask for any locale:
"Now generate the same set in Turkish and German."
The agent translates the headlines idiomatically, and storeshots renders them with correct locale-specific casing and special characters. Output follows a clean convention:
output/
en/ios-phone/en_01.png … en_06.png
tr/ios-phone/tr_01.png … tr_06.png
de/android-phone/de_01.png … de_06.png
The MCP tools work on their own, but the bundled skill adds a guided workflow: benefit discovery from your codebase, headline approval before rendering, per-language sets, and upload guidance. Install it with:
mkdir -p ~/.claude/skills/storeshots
curl -o ~/.claude/skills/storeshots/SKILL.md \
https://raw.githubusercontent.com/mtbun/storeshots-mcp/main/skill/SKILL.md
Then ask Claude Code for "store screenshots for this app" and it walks the full flow.
Issues and PRs are welcome. See AGENTS.md for architecture and conventions; it is written for both human contributors and coding agents.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.