@appscreenshotstudio/mcp 0.1.0 → 0.1.2

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 CHANGED
@@ -96,9 +96,9 @@ Show all supported device specs. No API call needed.
96
96
  | `ipad-13` | iPad Pro 13" | 2064x2752 | App Store |
97
97
  | `android-phone` | Android Phone | 1080x2340 | Play Store |
98
98
  | `android-tablet-10` | Android Tablet 10" | 2560x1600 | Play Store |
99
- | `iphone-6.5` | iPhone 14 Plus | 1284x2778 | Optional |
100
- | `iphone-6.3` | iPhone 16 Pro | 1179x2556 | Optional |
101
- | `iphone-6.1` | iPhone 14 | 1170x2532 | Optional |
99
+ | `iphone-5.5` | iPhone 8 Plus | 1242x2208 | Optional |
100
+ | `ipad-12.9` | iPad Pro 12.9" | 2048x2732 | Optional |
101
+ | `ipad-11` | iPad Pro 11" | 1668x2388 | Optional |
102
102
 
103
103
  ## Workflow
104
104
 
package/dist/index.js CHANGED
@@ -7,9 +7,6 @@ const API_KEY = process.env.APPSCREENSHOTSTUDIO_API_KEY;
7
7
  // ─── Devices (mirrors lib/device-specs.ts) ─────────────────────────────────────
8
8
  const DEVICES = [
9
9
  { id: 'iphone-6.9', name: 'iPhone 16 Pro Max', width: 1260, height: 2736, category: 'iphone', required: true },
10
- { id: 'iphone-6.5', name: 'iPhone 14 Plus', width: 1284, height: 2778, category: 'iphone', required: false },
11
- { id: 'iphone-6.3', name: 'iPhone 16 Pro', width: 1179, height: 2556, category: 'iphone', required: false },
12
- { id: 'iphone-6.1', name: 'iPhone 14', width: 1170, height: 2532, category: 'iphone', required: false },
13
10
  { id: 'iphone-5.5', name: 'iPhone 8 Plus', width: 1242, height: 2208, category: 'iphone', required: false },
14
11
  { id: 'ipad-13', name: 'iPad Pro 13"', width: 2064, height: 2752, category: 'ipad', required: true },
15
12
  { id: 'ipad-12.9', name: 'iPad Pro 12.9"', width: 2048, height: 2732, category: 'ipad', required: false },
@@ -212,7 +209,7 @@ server.registerTool('render-screenshots', {
212
209
  text: [
213
210
  `Rendered ${data.images?.length || 0} screenshots:`,
214
211
  '',
215
- ...(data.images || []).map((url, i) => `Card ${i + 1}: ${url}`),
212
+ ...(data.images || []).map((img, i) => `Card ${i + 1}: ${img.url} (${img.width}×${img.height})`),
216
213
  ].join('\n'),
217
214
  }],
218
215
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscreenshotstudio/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for generating App Store screenshots via AppScreenshotStudio",
5
5
  "type": "module",
6
6
  "license": "MIT",