Skip to main content
Glama

create_storage_path

Create a new storage path to organize documents automatically by defining a name, path template, and optional matching rules.

Instructions

Create a new storage path with a name, path template, and optional matching rules.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
pathYesThe path template, e.g. '{{ created_year }}/{{ correspondent }}/{{ title }}'
matchNo
is_insensitiveNoWhether matching is case-insensitive
matching_algorithmNoMatching algorithm: 0=None, 1=Any word, 2=All words, 3=Exact match, 4=Regular expression, 5=Fuzzy word, 6=Automatic

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.0

TDQS

B3.2/5.0
Behavior2/5

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

Annotations only state readOnlyHint=false and destructiveHint=false, which are generic. The description does not disclose any behavioral traits beyond the fact that it creates something. It omits side effects, idempotency, whether an existing name is rejected, auth requirements, or response behavior. For a mutation tool with minimal annotations, the description carries the burden and fails to provide meaningful transparency.

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 a single, focused sentence of about 16 words. It front-loads the action ('Create a new storage path') and includes all essential elements without filler. Every word contributes to understanding the tool's basic function.

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

Completeness2/5

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

With 5 parameters, 2 required, and no output schema, the description is too thin for an agent to call the tool correctly. It does not mention matching rule semantics, uniqueness constraints, what the response contains, or any validation rules. The schema fills some gaps but the overall definition lacks essential context for reliable invocation.

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 coverage is 60% (path, is_insensitive, matching_algorithm have descriptions; name and match do not). The description adds grouping by calling match-related fields 'optional matching rules,' which signals their optional nature. However, it does not explain what 'match' is or how matching_algorithm values behave, leaving the undocumented params only marginally clarified.

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 states a specific verb ('Create') and resource ('storage path'), and lists the key fields (name, path template, optional matching rules). This clearly distinguishes it from sibling operations like update_storage_path, delete_storage_path, or test_storage_path, leaving no ambiguity about the tool's role.

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?

The description provides no guidance on when to use this tool instead of alternatives. It does not mention that this is for creating new storage paths only, nor contrast it with update_storage_path or test_storage_path. An agent gets no context about prerequisites or conditions that would select this tool over siblings.

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