@appscreenshotstudio/mcp 0.3.0 → 0.3.1
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 +6 -18
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -136,27 +136,15 @@ Show all supported device specs. No API call needed.
|
|
|
136
136
|
|
|
137
137
|
**Free.**
|
|
138
138
|
|
|
139
|
-
##
|
|
139
|
+
## Claude Code Skill
|
|
140
140
|
|
|
141
|
-
MCP
|
|
141
|
+
The MCP server auto-installs a Claude Code skill on first startup. The skill teaches Claude a structured research-first workflow for better screenshot results. You can also install it manually:
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
| Argument | Default | Description |
|
|
148
|
-
|---|---|---|
|
|
149
|
-
| `platform` | ios | "ios", "android", or "both" |
|
|
150
|
-
| `extra_instructions` | none | Additional instructions like "use dark theme" |
|
|
151
|
-
|
|
152
|
-
### `improve-screenshots`
|
|
153
|
-
|
|
154
|
-
Research the codebase and improve an existing screenshot project. Compares current designs to the actual app and makes targeted fixes.
|
|
143
|
+
```bash
|
|
144
|
+
npx @appscreenshotstudio/mcp install-skill
|
|
145
|
+
```
|
|
155
146
|
|
|
156
|
-
|
|
157
|
-
|---|---|---|
|
|
158
|
-
| `project_id` | Yes | Project ID to improve |
|
|
159
|
-
| `focus` | No | What to focus on: "headlines", "colors", "story flow", etc. |
|
|
147
|
+
Once installed, use `/appscreenshotstudio` in Claude Code or just ask "generate App Store screenshots for my app".
|
|
160
148
|
|
|
161
149
|
## Supported Devices
|
|
162
150
|
|
package/dist/index.js
CHANGED
|
@@ -124,7 +124,7 @@ function buildDesignMessage(input) {
|
|
|
124
124
|
// ─── MCP Server ─────────────────────────────────────────────────────────────────
|
|
125
125
|
const server = new McpServer({
|
|
126
126
|
name: 'appscreenshotstudio',
|
|
127
|
-
version: '0.1
|
|
127
|
+
version: '0.3.1',
|
|
128
128
|
});
|
|
129
129
|
// Tool 1: generate-screenshots
|
|
130
130
|
server.registerTool('generate-screenshots', {
|