@iborymagic/aseprite-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.
Files changed (2) hide show
  1. package/README.md +0 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,7 +3,6 @@ This server automates Aseprite workflows using the Model Context Protocol (MCP).
3
3
  It enables AI, chat assistants, and automation pipelines to directly execute Aseprite tasks such as sprite sheet export, frame extraction, and metadata output.
4
4
 
5
5
  *Aseprite must be installed in order to use this MCP server.
6
- *Currently, only character creation is possible, and not with images created through Aseprite.
7
6
 
8
7
  ## Features Overview
9
8
  ### V1 - Export/Utility
@@ -26,19 +25,6 @@ Adds deeper control using Aseprite Lua scripting, enabling safe AI-driven editin
26
25
  - `merge_visible_layers`: Merging all currently visible layers into a single layer
27
26
  - `aseprite_run_lua`: Executes a raw Lua script (advanced / unsafe)
28
27
 
29
- ### V3 - Image Generation
30
- (+ Character Pipeline)
31
- - Adds connection with LLM and Image Generation AI, enabling import/export image in Aseprite.
32
- - Only available on Character Generation
33
- - `character_generate_concept`: Generating concept image using Generative AI
34
- - `character_import_from_concept`: Importing character concept from concept image
35
- - `character_generate_full`: Execute whole character generating pipeline
36
- - `character_pipeline_analyze`: Analyze character concept image
37
- - `character_pipeline_normalize`: Normalize your animations with fixed frames, crops, tags, etc.
38
- - `character_pipeline_export`: Export animation in png + json format
39
-
40
- *You can change Image Generation AI by implementing ImageGenerator class in image-generator.ts
41
-
42
28
  ## How to use
43
29
  1) Run directly with npx
44
30
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iborymagic/aseprite-mcp",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "MCP server for using Aseprite API",
5
5
  "main": "index.js",
6
6
  "type": "module",