@iborymagic/aseprite-mcp 0.4.0 → 0.4.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 +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,6 +16,14 @@ Supports fundamental Aseprite export workflow:
16
16
  Adds deeper control using Aseprite Lua scripting, enabling safe AI-driven editing operations such as:
17
17
  - `aseprite_list_lua_templates`: Lists available Lua templates
18
18
  - Predefined safe Lua automation(templates)
19
+ - `get_active_sprite_info`: Provides basic information about the currently active sprite
20
+ - `get_frame_info`: Inspects the animation timeline and frame structure of the active sprite
21
+ - `get_layer_list`: Returns a full structural overview of all layers in the active sprite, including groups
22
+ - `get_tag_list`: Lists all animation tags defined in the active sprite
23
+ - `get_is_layer_exists`: Checks whether a layer with a specific name exists
24
+ - `get_is_tag_exists`: Checks whether a specific animation tag exists
25
+ - `get_palette_info`: Inspects the current palette of the active sprite
26
+ - `get_selection_bounds`: Inspects the current selection state and its bounds
19
27
  - `remove_layer_by_name`: Removing specific layers
20
28
  - `recolor_palette`: Palette recoloring
21
29
  - `normalize_animation_speed`: Normalizing animation speed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iborymagic/aseprite-mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "MCP server for using Aseprite API",
5
5
  "main": "index.js",
6
6
  "type": "module",