@appscreenshotstudio/mcp 0.6.3 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/skills/appscreenshotstudio/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -187,6 +187,7 @@ Once installed, use `/appscreenshotstudio` in Claude Code or just ask "generate
|
|
|
187
187
|
| `iphone-6.3` | iPhone 17 Pro | 1206x2622 | Optional |
|
|
188
188
|
| `ipad-13` | iPad Pro 13" | 2064x2752 | App Store |
|
|
189
189
|
| `android-phone` | Android Phone | 1080x2340 | Play Store |
|
|
190
|
+
| `pixel-11-pro` | Google Pixel 11 Pro | 1280x2856 | Play Store |
|
|
190
191
|
| `android-tablet-10` | Android Tablet 7" | 1200x1920 | Play Store |
|
|
191
192
|
| `android-tablet-large` | Android Tablet 10" | 1600x2560 | Play Store |
|
|
192
193
|
| `apple-watch-ultra` | Apple Watch Ultra 2 | 410x502 | App Store |
|
package/dist/index.js
CHANGED
|
@@ -37,6 +37,7 @@ const DEVICES = [
|
|
|
37
37
|
{ id: 'iphone-6.3', name: 'iPhone 17 Pro', width: 1206, height: 2622, category: 'iphone', required: false },
|
|
38
38
|
{ id: 'ipad-13', name: 'iPad Pro 13"', width: 2064, height: 2752, category: 'ipad', required: true },
|
|
39
39
|
{ id: 'android-phone', name: 'Android Phone', width: 1080, height: 2340, category: 'android-phone', required: true },
|
|
40
|
+
{ id: 'pixel-11-pro', name: 'Google Pixel 11 Pro', width: 1280, height: 2856, category: 'android-phone', required: false },
|
|
40
41
|
{ id: 'android-tablet-10', name: 'Android Tablet 7"', width: 1200, height: 1920, category: 'android-tablet', required: true },
|
|
41
42
|
{ id: 'android-tablet-large', name: 'Android Tablet 10"', width: 1600, height: 2560, category: 'android-tablet', required: false },
|
|
42
43
|
{ id: 'apple-watch-ultra', name: 'Apple Watch Ultra 2', width: 410, height: 502, category: 'apple-watch', required: true },
|
package/package.json
CHANGED
|
@@ -64,7 +64,7 @@ Call the `generate-screenshots` MCP tool with:
|
|
|
64
64
|
- `features`: top 3-5 features as array
|
|
65
65
|
- `brand_colors`: `{ primary, secondary?, accent? }` from theme files
|
|
66
66
|
- `mood`: user's chosen mood
|
|
67
|
-
- `device_id`: `"iphone-6.9"` (default), `"iphone-6.3"`, `"ipad-13"`, `"android-phone"`, `"android-tablet-10"` (7"), `"android-tablet-large"` (10"), `"apple-watch-ultra"`
|
|
67
|
+
- `device_id`: `"iphone-6.9"` (default), `"iphone-6.3"`, `"ipad-13"`, `"android-phone"`, `"pixel-11-pro"`, `"android-tablet-10"` (7"), `"android-tablet-large"` (10"), `"apple-watch-ultra"`
|
|
68
68
|
- `count`: number of cards (3-10)
|
|
69
69
|
- `story_flow`: `"auto"` (default), `"hero-intro"`, `"problem-solution"`, `"benefit-first"`, etc.
|
|
70
70
|
- `codebase_context`: the full context object from Step 1
|