@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 CHANGED
@@ -136,27 +136,15 @@ Show all supported device specs. No API call needed.
136
136
 
137
137
  **Free.**
138
138
 
139
- ## Prompts
139
+ ## Claude Code Skill
140
140
 
141
- MCP prompts are pre-defined workflows your agent can follow.
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
- ### `create-app-screenshots`
144
-
145
- Full guided workflow: research the codebase, generate screenshots with rich context, iterate, and export. Best results when used from within the app's project directory.
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
- | Argument | Required | Description |
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.0',
127
+ version: '0.3.1',
128
128
  });
129
129
  // Tool 1: generate-screenshots
130
130
  server.registerTool('generate-screenshots', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscreenshotstudio/mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "MCP server for generating App Store screenshots via AppScreenshotStudio",
5
5
  "type": "module",
6
6
  "license": "MIT",