Skip to main content
Glama

create_folder

Create a folder or suite in a project, auto-detecting type based on nesting. Returns new folder ID, type, and path.

Instructions

Create a folder or a suite in a project. Use type "suite" for a leaf that holds test cases, and "folder" for a container that holds other folders and suites. Omitting type gives "folder" at the root and "suite" when nested, which is usually what you want. Suites cannot be parents, so a suite always needs parentId. Returns the new folder id, its type, and its path. To read an existing one use get_folder; to list them use list_folders.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesFolder/suite name
typeNoOPTIONAL - auto-detected. "folder" can contain children, "suite" is a leaf for test cases. Defaults to "folder" at root, "suite" when nested.
parentIdNoParent folder UUID. Omit for root-level folder. Note: suites cannot be parents.
projectIdYesProject UUID to create folder in

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv1.5.0

TDQS

A4.7/5.0
Behavior4/5

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

Beyond the annotations (which already indicate this is not read-only), the description explains important behavioral nuances: omitted type defaults to 'folder' at root but 'suite' when nested, suites cannot be parents, and suites always require parentId. It also discloses the return value shape. This adds meaningful context without contradicting the annotations.

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 is compact and information-dense. Every sentence adds actionable detail: creation action, type semantics, default behavior, parent constraint, return value, and reading/list alternatives. No filler or repetition of the schema.

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

Completeness5/5

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

Given that there is no output schema, this description sufficiently covers the return values and key constraints. It explains core creation rules, the parentId requirement for suites, the role of 'folder' vs 'suite', and directs users to get_folder/list_folders for reads. This gives an agent what it needs to invoke the tool correctly in different scenarios.

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?

The schema already documents all four parameters with high coverage, so the baseline is 3. However, the description adds useful semantic clarity on top, particularly around the 'type' default behavior and the requirement that a suite needs parentId. This helps an agent reason about valid parameter combinations beyond simple field definitions.

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 clearly states a concrete verb and resource: 'Create a folder or a suite in a project.' It distinguishes the purpose of suites vs folders and differentiates itself from sibling tools by name ('get_folder', 'list_folders'). An agent can tell exactly what this tool does and how it differs from related tools.

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

Usage Guidelines5/5

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

The description gives explicit guidance on when to use 'suite' vs 'folder', explains the default type behavior at root vs nested, and states when parentId is required. It also names sibling tools for reading and listing existing folders, making the appropriate context for this tool unambiguous.

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

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/m00nreport/mcp-server'

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