create_folder
创建文件夹 (类似 mkdir -p)。
幂等: 如果路径已经存在, 直接返回该文件夹元数据, 不抛错。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder_path | Yes | 要创建的完整路径, 形如 '/工作/项目A/2026'。中间路径不存在时按 mkdir -p 语义递归创建; 末端已存在时直接返回原文件夹 (幂等). |
创建文件夹 (类似 mkdir -p)。
幂等: 如果路径已经存在, 直接返回该文件夹元数据, 不抛错。
| Name | Required | Description | Default |
|---|---|---|---|
| folder_path | Yes | 要创建的完整路径, 形如 '/工作/项目A/2026'。中间路径不存在时按 mkdir -p 语义递归创建; 末端已存在时直接返回原文件夹 (幂等). |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Output schema / (root)Previous value: -{
- "properties": {
- "result": {
- "additionalProperties": true,
- "title": "Result",
- "type": "object"
- }
- },
- "required": [
- "result"
- ],
- "title": "create_folderOutput",
- "type": "object"
-}New value: +nullDoes the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It explicitly discloses idempotent behavior ('如果路径已经存在, 直接返回该文件夹元数据') and compares to mkdir -p for recursive creation. It does not detail permission requirements or edge-case errors, but the core mutation behavior and return-on-existing behavior are transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two short sentences, front-loaded with the action and an analogy, followed by a crucial idempotency note. Every word contributes value, and there is no redundancy with the schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter create-folder tool with no output schema, the description provides the essential behavioral context: recursive mkdir -p-style creation and idempotent return. The normal-case return metadata is only implied, and error conditions are not discussed, but these are minor gaps given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the single parameter with full detail, including path format and mkdir -p semantics, so description-level parameter clarification is unnecessary. The tool description adds the idempotency note, which is behavioral rather than parameter-specific. Per rubric, high schema coverage establishes a baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description opens with '创建文件夹' and the mkdir -p analogy, making the action and resource unmistakable. It is unique among the sibling tools (the only folder-creation tool), so there is clear differentiation. The verb+resource specificity is strong.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The mkdir -p analogy and idempotency statement give clear context for when to use the tool: create a folder recursively and safely even if the path already exists. It does not explicitly list when-not scenarios, but no alternative create-folder tool exists in the sibling list, so the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Tools are largely distinct with clear purposes. Some potential confusion exists between upload_file (a convenience wrapper) and the upload_init/chunk/complete sequence, but descriptions help clarify. The inclusion of scrape_url feels out of place but is also distinct.
Most tools follow a consistent verb_noun pattern (e.g., create_folder, delete_file, download_file). However, 'file_read' breaks the pattern (should be read_file), and 'get_file_info' uses get_ while others use list_. Overall minor inconsistency.
With 25 tools, the count is slightly high but still reasonable for a file management server that includes upload, download, sharing, and folder operations. A few tools (like scrape_url) seem tangential, but overall the scope justifies the count.
The tool surface covers most core file and folder operations (create, read, update/move, delete, list, search, upload, download, share, zip). Notable gaps include no rename_file tool and no ability to update file metadata. Still, the set is fairly complete for basic file management.