Skip to main content
Glama

create_folder_from_template

Create a folder from a template to replicate its lists, statuses, and structure in a Space. Standardize project layouts.

Instructions

Create a Folder in a Space from a Folder template, reproducing the template's Lists, statuses and structure. Returns the created Folder. Use to spin up a standardized project layout.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
space_idYesID of the Space to create the Folder in.
template_idYesID of the Folder template to instantiate.
nameYesName for the new Folder.
optionsNoOptional template import options, e.g. { return_immediately: true, content: {...} }.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv1.0.1
    • changedInput schema / properties / name / description
      Previous value: -"New folder name."New value: +"Name for the new Folder."
    • changedInput schema / properties / options / description
      Previous value: -"Template import options (return_immediately, content, etc)."New value: +"Optional template import options, e.g. { return_immediately: true, content: {...} }."
    • changedInput schema / properties / space_id / description
      Previous value: -"Space ID."New value: +"ID of the Space to create the Folder in."
    • changedInput schema / properties / template_id / description
      Previous value: -"Folder template ID."New value: +"ID of the Folder template to instantiate."
  2. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description must fully convey behavioral traits. It states the tool creates a folder and returns it, and mentions what is reproduced. However, it does not disclose potential failures (e.g., missing template or space), permissions needed, or side effects beyond creation. Moderate disclosure.

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?

The description consists of two concise sentences that front-load the purpose and return value. Every word adds value; no filler or redundancy.

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

Completeness4/5

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

Given the tool's moderate complexity (4 parameters, one optional object, no output schema), the description covers the core behavior and return. It does not explain error cases or optional behavior of the 'options' parameter beyond the schema, but is largely adequate for a creation tool.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already explains all four parameters. The description adds minor context (e.g., 'reproducing the template's Lists...') but does not significantly enhance understanding of individual parameters like space_id or template_id beyond the schema. Baseline 3 is appropriate.

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 uses a specific verb ('Create'), names the resource ('a Folder in a Space from a Folder template'), and explains the outcome ('reproducing the template's Lists, statuses and structure. Returns the created Folder.'). It clearly distinguishes from sibling tools like create_folder (no template) and create_list_from_template_in_folder (list not folder).

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

Usage Guidelines3/5

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

The description provides a single usage hint ('Use to spin up a standardized project layout'), but lacks explicit guidance on when not to use or comparisons to alternatives such as create_folder or create_list_from_template_in_folder. The context is implied but not fully directive.

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

Deploy Server

Other Tools