@iborymagic/aseprite-mcp 0.3.5 → 0.3.6
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,14 +28,14 @@ Adds deeper control using Aseprite Lua scripting, enabling safe AI-driven editin
|
|
|
28
28
|
## How to use
|
|
29
29
|
1) Run directly with npx
|
|
30
30
|
```bash
|
|
31
|
-
npx -y aseprite-mcp
|
|
31
|
+
npx -y @iborymagic/aseprite-mcp
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
2) Local Build & Run (for development)
|
|
35
35
|
```bash
|
|
36
36
|
npm install
|
|
37
37
|
npm run build
|
|
38
|
-
npx aseprite-mcp
|
|
38
|
+
npx @iborymagic/aseprite-mcp
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Using with Claude Desktop
|
|
@@ -45,7 +45,7 @@ Add the following to your claude_desktop_config.json
|
|
|
45
45
|
"mcpServers": {
|
|
46
46
|
"aseprite-mcp": {
|
|
47
47
|
"command": "npx",
|
|
48
|
-
"args": ["-y", "aseprite-mcp"]
|
|
48
|
+
"args": ["-y", "@iborymagic/aseprite-mcp"]
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -58,7 +58,7 @@ Add the following to your mcp.json
|
|
|
58
58
|
"mcpServers": {
|
|
59
59
|
"aseprite-mcp": {
|
|
60
60
|
"command": "npx",
|
|
61
|
-
"args": ["-y", "aseprite-mcp"]
|
|
61
|
+
"args": ["-y", "@iborymagic/aseprite-mcp"]
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
}
|