@imagerry/cli 0.1.7-beta → 0.1.8-beta
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 +32 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ The official command-line interface for [Imagerry](https://imagerry.com), built
|
|
|
18
18
|
|
|
19
19
|
* 🖥️ Process images directly from the terminal
|
|
20
20
|
* 🌐 **New:** Host a self-hosted API server with `serve`
|
|
21
|
+
* 🧠 **New:** Model Context Protocol (MCP) server support for AI agents (Claude Desktop, Cursor, Zed)
|
|
21
22
|
* 🔒 Keep image processing completely local
|
|
22
23
|
* 🎨 Apply built-in styling presets
|
|
23
24
|
* ⚙️ Create and reuse custom JSON presets
|
|
@@ -176,6 +177,37 @@ The server also exposes a few helpful informational routes:
|
|
|
176
177
|
- `GET /template` — Returns a JSON object of all available settings keys and their defaults.
|
|
177
178
|
- `GET /health` — Returns server health status and engine version.
|
|
178
179
|
|
|
180
|
+
## Model Context Protocol (MCP) Server
|
|
181
|
+
|
|
182
|
+
Imagerry CLI includes an official **Model Context Protocol (MCP)** server that exposes local image styling and formatting tools directly to AI assistants like Claude Desktop, Cursor, and Zed.
|
|
183
|
+
|
|
184
|
+
### Starting the MCP Server
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
imagerry mcp
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
### Claude Desktop Configuration
|
|
191
|
+
|
|
192
|
+
Add the following to your `claude_desktop_config.json`:
|
|
193
|
+
|
|
194
|
+
```json
|
|
195
|
+
{
|
|
196
|
+
"mcpServers": {
|
|
197
|
+
"imagerry": {
|
|
198
|
+
"command": "imagerry",
|
|
199
|
+
"args": ["mcp"],
|
|
200
|
+
"env": {
|
|
201
|
+
"IMAGERRY_LICENSE_KEY": "YOUR_PRO_LICENSE_KEY"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
### Registered Tools
|
|
209
|
+
* **`customize_image`**: Applies presets, gradients, and custom styles to local images (`inputPath`, `outputPath`, `preset`, `mode`).
|
|
210
|
+
|
|
179
211
|
## Automation
|
|
180
212
|
|
|
181
213
|
Imagerry CLI is designed to work well in automated environments.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@imagerry/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8-beta",
|
|
4
4
|
"description": "Command-line interface for the Imagerry engine",
|
|
5
5
|
"homepage": "https://cli.imagerry.com",
|
|
6
6
|
"repository": {
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"imagerry": "bin/imagerry.js"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@imagerry/cli-
|
|
27
|
-
"@imagerry/cli-darwin-
|
|
28
|
-
"@imagerry/cli-
|
|
29
|
-
"@imagerry/cli-linux-
|
|
30
|
-
"@imagerry/cli-
|
|
31
|
-
"@imagerry/cli-win32-
|
|
32
|
-
"@imagerry/cli-
|
|
26
|
+
"@imagerry/cli-android-arm64": "0.1.8-beta",
|
|
27
|
+
"@imagerry/cli-darwin-arm64": "0.1.8-beta",
|
|
28
|
+
"@imagerry/cli-darwin-x64": "0.1.8-beta",
|
|
29
|
+
"@imagerry/cli-linux-arm64": "0.1.8-beta",
|
|
30
|
+
"@imagerry/cli-linux-x64": "0.1.8-beta",
|
|
31
|
+
"@imagerry/cli-win32-arm64": "0.1.8-beta",
|
|
32
|
+
"@imagerry/cli-win32-x64": "0.1.8-beta"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"image",
|