Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_create_project_folder

Create a project folder or subfolder in a project's file storage by providing a project ID and folder name; optionally specify a parent folder ID for subfolders.

Instructions

Create a folder (or sub-folder) inside a project's file storage.

Args: project_id: The project UUID. name: Folder name e.g. '01. Requirements'. parent_folder_id: UUID of parent folder for sub-folders.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
project_idYes
parent_folder_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It discloses the core creation action but omits permissions, duplicate-name behavior, handling of missing parent folders, and any side effects. For a mutation tool, this leaves the agent guessing about important behavioral details.

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?

Concise and front-loaded: it opens with the primary action, then provides a terse Args block. No filler or redundant restatement of the tool name, and the example for name is genuinely useful.

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?

Essential parameters are covered and an output schema exists to explain return values, but the description lacks preconditions, permission requirements, and edge-case behavior. For a straightforward create action this is mostly adequate, though an agent would still be uncertain about failure semantics given no annotations.

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 description coverage is 0%, but the description compensates by explaining all three parameters: project_id is 'The project UUID', name includes an example '01. Requirements', and parent_folder_id is 'UUID of parent folder for sub-folders.' This adds format and purpose details beyond the schema's bare type/title information.

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?

States a specific verb and resource: 'Create a folder (or sub-folder) inside a project's file storage.' This clearly identifies the tool's action and scope, and distinguishes it from sibling file-related tools like wetrack_add_project_file and wetrack_delete_project_folder.

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 explicit guidance on when to use this tool vs. alternatives. It does not mention preconditions, whether a parent folder must already exist, or how it relates to other file/folder operations. Usage is only implied by the tool's name and description.

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