Skip to main content
Glama

list_projects

Retrieve all active pixel art projects to manage, edit, or export animations and sprite sheets.

Instructions

List all active projects

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The actual implementation of the list_projects tool logic, which iterates over active projects and returns their details.
    private listProjects(): object {
      const projects = [];
      for (const [id, piskel] of this.projects) {
        projects.push({
          projectId: id,
          name: piskel.getDescriptor().name,
          width: piskel.getWidth(),
          height: piskel.getHeight(),
        });
      }
      return { projects };
  • Registration of the list_projects tool definition within the MCP server.
    name: 'list_projects',
    description: 'List all active projects',
    inputSchema: {
      type: 'object',
      properties: {},

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yafeiaa/piskel-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server