Skip to main content
Glama

list_workflow_templates

View all saved workflow templates in the registry. Access predefined workflows to streamline image generation tasks.

Instructions

List all saved workflow templates in the registry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler function for the 'list_workflow_templates' tool. Reads the templates directory, lists all .json files, parses each to extract name/description/updatedAt, and returns a formatted text response.
    server.tool(
      "list_workflow_templates",
      "List all saved workflow templates in the registry.",
      listSchema,
      async () => {
        let entries: string[];
        try {
          entries = await fs.readdir(store.dir);
        } catch {
          return {
            content: [
              {
                type: "text" as const,
                text: `No templates directory at ${store.dir} yet.`,
              },
            ],
          };
        }
        const names = entries
          .filter((f) => f.endsWith(".json"))
          .map((f) => f.replace(/\.json$/, ""));
        if (names.length === 0) {
          return {
            content: [
              { type: "text" as const, text: "No templates saved yet." },
            ],
          };
        }
        const rows: string[] = [];
        for (const name of names.sort()) {
          try {
            const raw = await fs.readFile(
              templatePath(store.dir, name),
              "utf-8",
            );
            const t = JSON.parse(raw) as StoredTemplate;
            const desc = t.description ? ` — ${t.description}` : "";
            rows.push(`  ${t.name}${desc} (updated ${t.updatedAt})`);
          } catch {
            rows.push(`  ${name} (unreadable)`);
          }
        }
        return {
          content: [
            {
              type: "text" as const,
              text: `Saved templates (${names.length}) in ${store.dir}:\n${rows.join("\n")}`,
            },
          ],
        };
      },
  • Schema definition for list_workflow_templates — an empty object since the tool takes no arguments.
    const listSchema = {};
  • src/server.ts:48-48 (registration)
    Registration call: registerTemplateTools(s, client, templateStore) wires all template tools (including 'list_workflow_templates') onto the MCP server.
    registerTemplateTools(s, client, templateStore);
  • Exported function registerTemplateTools that registers all workflow template tools (save, list, get, delete, run) onto the McpServer via server.tool().
    export function registerTemplateTools(
      server: McpServer,
      client: ComfyUIClient,
      store: TemplateStore,
    ): void {
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description fully bears transparency. It states read-only list behavior but omits details like pagination, ordering, or whether it returns full template details or just names. Adequate but could be more explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, no filler, directly states purpose. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the agent lacks information about return format. Description is adequate for a simple list tool but could be more helpful by hinting at what properties are returned.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has zero parameters, so description adds value by clarifying scope ('all saved templates in the registry'). Baseline for 0 params is 4, and the description meets it without redundant info.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'List all saved workflow templates in the registry' uses a specific verb 'list' and resource 'workflow templates', clearly distinguishing it from siblings like get_workflow_template (singular) and list_workflows (different resource).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs alternatives such as get_workflow_template for a single template or run_workflow_template for execution. Lacks explicit when-to-use or when-not-to-use context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/miller-joe/comfyui-mcp'

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