mcp-image-previewer 0.1.2 → 0.1.4
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 +9 -1
- package/dist/index.js +0 -0
- package/package.json +30 -2
package/README.md
CHANGED
|
@@ -14,7 +14,15 @@ An MCP (Model Context Protocol) server that previews base64-encoded images in a
|
|
|
14
14
|
|
|
15
15
|
- Node.js 18+
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
### Claude Code
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
claude mcp add image-previewer -- npx mcp-image-previewer
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Manual configuration
|
|
18
26
|
|
|
19
27
|
Add to your MCP client configuration:
|
|
20
28
|
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,15 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-image-previewer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server for previewing base64-encoded images from other MCP servers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
7
8
|
"bin": {
|
|
8
9
|
"mcp-image-previewer": "dist/index.js"
|
|
9
10
|
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"ui"
|
|
14
|
+
],
|
|
10
15
|
"scripts": {
|
|
11
16
|
"build": "tsc",
|
|
12
|
-
"start": "node dist/index.js"
|
|
17
|
+
"start": "node dist/index.js",
|
|
18
|
+
"prepublishOnly": "npm run build"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"model-context-protocol",
|
|
23
|
+
"image",
|
|
24
|
+
"preview",
|
|
25
|
+
"viewer",
|
|
26
|
+
"slint",
|
|
27
|
+
"gui"
|
|
28
|
+
],
|
|
29
|
+
"author": "Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/signal-slot/mcp-image-previewer.git"
|
|
34
|
+
},
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/signal-slot/mcp-image-previewer/issues"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/signal-slot/mcp-image-previewer#readme",
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18"
|
|
13
41
|
},
|
|
14
42
|
"dependencies": {
|
|
15
43
|
"@modelcontextprotocol/sdk": "^1.12.1",
|