@sylphx/iris 0.2.0 → 0.2.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 +10 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
# Iris
|
|
4
4
|
|
|
5
|
+
## Zero-config (no install)
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx -y @sylphx/iris
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Starts the MCP server on stdio (agents / Codex / Claude Desktop).
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
### Image evidence for agents
|
|
6
15
|
|
|
7
16
|
Canonical package: **`@sylphx/iris`** · bin **`iris`**
|
|
@@ -106,7 +115,6 @@ claude mcp add iris -- npx @sylphx/iris
|
|
|
106
115
|
**Install once. Call once.**
|
|
107
116
|
|
|
108
117
|
```bash
|
|
109
|
-
claude mcp add image-reader -- npx @sylphx/iris
|
|
110
118
|
```
|
|
111
119
|
|
|
112
120
|
```json
|
|
@@ -160,7 +168,6 @@ Supported formats: PNG, JPEG, GIF, WebP, TIFF, and other formats the **Rust deco
|
|
|
160
168
|
### Claude Code
|
|
161
169
|
|
|
162
170
|
```bash
|
|
163
|
-
claude mcp add image-reader -- npx @sylphx/iris
|
|
164
171
|
```
|
|
165
172
|
|
|
166
173
|
### Claude Desktop
|
|
@@ -170,7 +177,7 @@ Add this to `claude_desktop_config.json`:
|
|
|
170
177
|
```json
|
|
171
178
|
{
|
|
172
179
|
"mcpServers": {
|
|
173
|
-
"
|
|
180
|
+
"iris": {
|
|
174
181
|
"command": "npx",
|
|
175
182
|
"args": ["@sylphx/iris"]
|
|
176
183
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/iris",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"mcpName": "io.github.SylphxAI/iris",
|
|
5
5
|
"description": "Iris \u2014 evidence-first image reading for AI agents. Metadata, OCR text, regions, citeable evidence. Local-first. No generative LLM authority.",
|
|
6
6
|
"type": "module",
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"optionalDependencies": {
|
|
83
83
|
"sharp": "^0.35.0",
|
|
84
84
|
"exifr": "^7.1.3",
|
|
85
|
-
"@sylphx/iris-darwin-arm64": "0.2.
|
|
86
|
-
"@sylphx/iris-darwin-x64": "0.2.
|
|
87
|
-
"@sylphx/iris-linux-x64-gnu": "0.2.
|
|
88
|
-
"@sylphx/iris-linux-arm64-gnu": "0.2.
|
|
85
|
+
"@sylphx/iris-darwin-arm64": "0.2.1",
|
|
86
|
+
"@sylphx/iris-darwin-x64": "0.2.1",
|
|
87
|
+
"@sylphx/iris-linux-x64-gnu": "0.2.1",
|
|
88
|
+
"@sylphx/iris-linux-arm64-gnu": "0.2.1"
|
|
89
89
|
}
|
|
90
90
|
}
|