stagenth · file-relay
Server Details
Cloud file system + web scraping for AI over MCP. Upload, folders, share links, scrape_url.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 21 of 21 tools scored. Lowest: 2.8/5.
Each tool has a clearly distinct purpose, covering folder operations, file upload/download, sharing, search, and quota. Even similar tools like download_file and download_shared_file are well-differentiated by context.
All tools follow a consistent verb_noun pattern (e.g., create_folder, delete_file, upload_chunk). No mixing of casing or conventions, making the naming predictable and intuitive.
21 tools is slightly high but justified for a comprehensive file relay service covering upload, download, sharing, folder management, search, and quota. The count is well-scoped without being excessive.
The tool set covers core file operations but misses rename_file and restore from trash (implied but not exposed). Also includes an unrelated scrape_url tool, which dilutes focus. Gaps exist but are not critical.
Available Tools
21 toolscreate_folderAInspect
创建文件夹 (类似 mkdir -p)。
幂等: 如果路径已经存在, 直接返回该文件夹元数据, 不抛错。
| Name | Required | Description | Default |
|---|---|---|---|
| folder_path | Yes | 要创建的完整路径, 形如 '/工作/项目A/2026'。中间路径不存在时按 mkdir -p 语义递归创建; 末端已存在时直接返回原文件夹 (幂等). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must reveal behaviors. It discloses recursive creation (mkdir -p) and idempotency, which are key. It does not mention permissions, error cases beyond idempotency, or limitations, but for a folder creation tool, this is adequate.
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 concise (two short sentences) and front-loaded with the primary purpose. It avoids unnecessary detail but could be slightly expanded without losing conciseness. Every sentence adds value.
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?
Given the tool's simplicity, one required parameter, and presence of an output schema, the description is sufficiently complete. It explains core behavior and idempotency. It could mention authentication or path constraints, but the schema already covers path format.
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 input schema has 100% coverage and a very detailed parameter description. The tool description adds the mkdir -p analogy and idempotency, which reinforce the parameter semantics. Together, they provide rich meaning beyond just the schema.
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?
The description clearly states the tool creates folders, using the analogy '类似 mkdir -p'. This distinguishes it from sibling tools like delete_folder, list_folders, and rename_folder. The idempotency behavior is also mentioned, adding specificity.
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 description explains that the tool is idempotent and behaves like mkdir -p, which gives clear usage context. However, it does not explicitly state when not to use it or suggest alternatives, though the sibling tool set provides some implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_fileCInspect
删除一个文件。
| Name | Required | Description | Default |
|---|---|---|---|
| file_id | Yes | 文件 ID |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description only says 'Delete a file.' It does not disclose behavioral traits like irreversibility, permission requirements, or effects on shares. The description carries full burden and is insufficient.
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 a single, clear phrase with no wasted words. It is appropriately concise for a straightforward tool.
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?
Given that this is a potentially destructive operation with sibling tools and an output schema, the description is too brief. It lacks details on return values, side effects, and prerequisites, making it incomplete.
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?
Schema coverage is 100% (file_id described as 'File Id' with Chinese description), and the description adds no extra meaning. Baseline 3 is correct since the schema does the heavy lifting and no additional value is provided.
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?
The description clearly states the action (delete) and the resource (file), but it does not distinguish this tool from sibling tools like 'delete_folder'. A score of 4 is appropriate because it is specific but lacks differentiation.
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?
No guidance is provided on when to use this tool versus alternatives (e.g., move_file or rename_folder). The description offers no context for when to delete vs. other operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_folderAInspect
删除文件夹 (类似 rmdir 或 rm -r)。
内部 ready/locked 文件按"软删进回收站"处理, 30 天后才物删 OSS 字节;
用户可在该窗口期内通过回收站恢复。
| Name | Required | Description | Default |
|---|---|---|---|
| recursive | No | False (默认): 文件夹必须为空 (无子文件夹 + 无文件), 否则报 folder_not_empty。True: 递归删除整棵子树, 内部所有文件软删进回收站 (类似 rm -rf). | |
| folder_path | Yes | 要删除的文件夹完整路径 |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosure. It explains the soft-delete behavior, the 30-day retention period, and the recovery option via recycle bin. This goes beyond a simple 'delete' and gives the agent important safety and lifecycle information. The description is particularly transparent about the handling of 'ready/locked' files.
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 concise: one sentence for the core action and one for the critical behavioral detail. It front-loads the action and then adds nuance. It is slightly sparse in terms of use cases, but given the schema covers parameter details, this level of conciseness is effective.
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?
Given the tool's complexity (deletion with soft-delete workflow) and the existence of an output schema (which presumably documents return values), the description provides enough information for correct invocation. It covers the key behavioral aspects not in the schema: the soft-delete and recovery window. However, it does not mention any security or permission requirements, which could be a minor gap.
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 input schema has 100% coverage with descriptions for both parameters. The tool description adds context about the overall deletion behavior (soft delete, recycle bin) but does not add specific parameter-level meaning beyond what the schema provides. Baseline score of 3 is appropriate since schema covers parameter semantics well.
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?
The description clearly states the tool's purpose: deleting a folder, and provides an analogy to Unix commands (rmdir/rm -r). It distinguishes this from file deletion by mentioning the behavior for internal files, which adds specificity. The name 'delete_folder' itself is clear, and the description reinforces it with concrete examples.
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 description does not explicitly state when to use this tool versus alternatives like delete_file. However, the context of sibling tools (delete_file, move_folder, etc.) implies that this is for folders. The description mentions recursive vs non-recursive behavior, which helps users choose the right mode, but no direct comparison to other tools is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
download_fileBInspect
下载一个文件, 按 MCP spec 2025-06-18 的原生 content 类型返回。
根据文件 category 自动选择最合适的 MCP content block 类型:
- image (jpg/png/webp/...) → content[0].type = "image"
(base64 + mimeType; AI 客户端原生显示图片, 多模态 LLM 可直接看图)
- audio (mp3/wav/...) → content[0].type = "audio"
(base64 + mimeType; AI 客户端原生播放, 多模态模型可直接听)
- text/code + as_text=true → content[0].type = "text"
(UTF-8 字符串; 适合代码/文档阅读分析)
- 其他所有 (video / document / archive / 大文本 / ...)
→ content[0].type = "resource_link"
(15 分钟有效的 URL + mimeType + size; 签名自带, 无需 Authorization;
AI 用 bash curl 拉字节, 或提示用户点链接在浏览器下载)
【限速】所有分支都遵守会员档位的 download_speed_bytes_per_sec 设定:
- image / audio / text 分支走 astream_file(throttle=...) 读字节再 base64
- resource_link 分支: 链接指向 /api/v1/mcp-download/{token}, 目标路由
也用同一套 astream_file + throttle 算法 (详见 api/v1/mcp_download.py)
【零副作用】不再使用 share_service.create_share —— MCP 下载不会在你的
账号里留下任何公开分享记录, 不进分享面板, 不计分享审计。
| Name | Required | Description | Default |
|---|---|---|---|
| as_text | No | 【仅文本/代码文件】直接返 UTF-8 字符串文本内容。图片/音频等非文本文件不受此参数影响(它们按 MCP 原生 content type 返回)。 | |
| file_id | No | ||
| file_uuid | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description compensates well by disclosing rate limiting (membership-based speed), zero side effects (no share record), and content type mapping. Mentions signed URL validity (15 minutes) and auth-free access for resource_link. Missing details on error handling and auth requirements, but overall informative.
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 structured with bullet points and sections, but it includes excessive implementation details (e.g., 'astream_file', route path) that may not be necessary for an AI agent. While front-loaded with purpose, it could be more concise.
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?
Covers content types, rate limiting, and side effects. With an output schema (not shown), the description appropriately focuses on behavior. However, lacks error scenarios, validation of parameters, and size limits. Adequate but not exhaustive for a 3-parameter tool.
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?
Schema description coverage is low (33%). The description adequately explains 'as_text' (only for text/code files, ignored by others). However, it fails to describe 'file_id' and 'file_uuid' parameters, not clarifying that at least one is needed or their relationship. Does not compensate for the coverage gap.
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?
The description clearly states '下载一个文件' (download a file) and details the MCP content type selection based on file category. It differentiates from sibling 'download_shared_file' by emphasizing zero side effects (no share record). However, it could more explicitly contrast with other download-related tools.
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?
Provides guidelines on when to use each content type and explains the 'as_text' parameter behavior. Lacks explicit guidance on prerequisites (e.g., must provide file_id or file_uuid) and does not mention scenarios where this tool should be avoided. No comparison with alternatives like 'get_file_info'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_file_infoAInspect
查询单个文件详情。file_id 与 file_uuid 提供其一即可。
| Name | Required | Description | Default |
|---|---|---|---|
| file_id | No | 文件 ID | |
| file_uuid | No | 文件 UUID(二选一) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description is minimal but implies a harmless read operation. It does not detail potential errors or scope of 'details'.
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?
Two concise sentences with no wasted words, purpose front-loaded.
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?
Output schema exists, so return values are covered. Description adequately covers purpose and parameter usage for a simple query tool.
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?
Schema covers both parameters fully; description adds 'one of' constraint, adding value beyond schema. Baseline 3 plus credit.
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?
The description clearly states the action (query details) and resource (single file), and the 'one of' parameter constraint distinguishes it from list/search siblings.
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 description indicates when to use (when you have file_id or file_uuid) but lacks explicit guidance on when not to use or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_folder_treeAInspect
以 ASCII 树状图返回用户的文件夹/文件层级 (推荐: 用户问“目录结构”时用这个).
返回:
{
"root_path": "/",
"tree": "ASCII 字符串",
"stats": {"folders": N, "files": M, "truncated": bool}
}
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | 最大渲染深度, 默认 10. 超出深度的节点显示为 '...'. | |
| max_nodes | No | 最大渲染节点数 (文件+文件夹合计). 超出后用 'N more...' 截断. | |
| folder_path | No | 起始路径, 默认 '/' 即整个用户文件树。 | / |
| include_files | No | True 时把文件也画进树, False 只画目录。 |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Describes output format including a truncated flag, but does not explicitly state read-only nature or other behavioral traits like performance limits.
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?
Extremely concise: one sentence of purpose followed by a code block. No wasted words, front-loaded with key information.
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 tree-view tool with full schema coverage and output format provided in description, it is reasonably complete. Could mention read-only nature, but overall sufficient.
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?
Schema coverage is 100% with parameter descriptions. The description adds little beyond the schema; the sample output helps understand parameter effects but does not explain parameters directly. Baseline 3 is appropriate.
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 clearly states it returns an ASCII tree of folder/file hierarchy. Recommends use when user asks about directory structure, distinguishing it from sibling tools like list_files and list_folders.
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?
Explicitly recommends use when user asks about directory structure. No explicit when-not-to-use or alternatives, but context is clear and helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_quotaAInspect
查看当前用户的存储配额使用情况。
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It states '查看' (view), implying read-only, but does not explicitly confirm no side effects, no authentication requirements, or any limitations like caching or rate limits. For a tool with no annotations, this is insufficient.
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 a single, clear sentence with no unnecessary words. It is front-loaded and to the point.
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 simple, zero-parameter query tool with an existing output schema, the description is complete enough. It tells the agent exactly what the tool does.
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 tool has zero parameters and the schema description coverage is 100% (no parameters to describe). The description does not need to add parameter details. With zero parameters, a baseline of 4 is appropriate.
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?
The description clearly states the tool retrieves the current user's storage quota usage (查看当前用户的存储配额使用情况). It is a specific verb ('查看/view') and resource ('存储配额使用情况/storage quota usage'). Among sibling tools, no other tool appears to relate to quotas, so it distinguishes well.
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 description implies the tool is used for checking quota, but it provides no explicit guidance on when to use it versus alternatives, nor any exclusions. Given it is a simple zero-parameter tool, the usage context is clear, but the description could be enhanced with a hint that this is the definitive source for quota information.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_filesAInspect
列出当前用户的文件 (默认递归遍历整个文件夹层级).
返回值同时附带 ``subfolders``(直接子文件夹列表) 与 ``has_subfolders``
提示, 帮助 AI 感知层级结构。若用户问“目录结构 / 树”, 直接调
``get_folder_tree`` 拿到 ASCII 树状图更直观。
每个 item 都有 ``folder_path`` 字段标注它的实际归属, 同名文件不会
因递归而混淆。
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| size | No | ||
| search | No | 按文件名或描述搜索 | |
| category | No | 按分类过滤:audio/video/image/text/code/document/archive/other | |
| recursive | No | True (默认) = 深度遍历, 返回该路径及所有后代文件夹下的全部文件; False = 仅列直接子文件 (类似 'ls'). 用户问“都有什么文件”时一律保持 True. | |
| folder_path | No | 目标文件夹路径, 形如 '/' 或 '/工作/项目A'。默认 '/' 列根目录。用 list_folders 探查可用路径。 | / |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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 key behaviors: recursive traversal by default, return includes 'subfolders' and 'has_subfolders', each item has a 'folder_path' to avoid confusion from recursion. It does not mention pagination or performance implications, but the information provided is sufficient for safe use.
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 well-structured and front-loaded: the first sentence states the main purpose. It uses line breaks to separate key points without unnecessary words. Every sentence adds value, including the hint about get_folder_tree and the note about folder_path preventing confusion.
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?
Given the tool's moderate complexity and the presence of an output schema (which likely documents return values), the description covers essential aspects: default behavior, return structure, parameter guidance, and alternative tool. It leaves no critical gaps for an agent to misunderstand.
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?
Schema description coverage is 67%, with page and size lacking descriptions. The description adds context for folder_path (default '/', use list_folders to explore) and recursive (default true, keep true for 'all files'). It also explains the return structure, which aids understanding of parameter effects. It partially compensates for missing schema descriptions.
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?
The description clearly states that the tool lists the current user's files with recursive traversal by default. It distinguishes itself from the sibling tool get_folder_tree by noting that for directory tree visualization, get_folder_tree is more appropriate. The verb '列出' (list) and resource '文件' (files) are specific.
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 description explicitly mentions an alternative tool (get_folder_tree) for when the user asks about directory structure or tree. It implies the default recursive behavior and suggests using list_folders to probe available paths. This provides clear guidelines on when to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_foldersAInspect
列出文件夹 (类似 ls -d 只看目录)。
路径不存在抛 folder_not_found。要列文件用 list_files。
| Name | Required | Description | Default |
|---|---|---|---|
| recursive | No | True 时返回整棵子树 (深度遍历)。默认 False — 只列直接子文件夹. | |
| folder_path | No | 父文件夹路径, 默认 '/' 即根目录。返回直接子文件夹列表 (不含其文件). | / |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the error behavior and implies read-only nature (listing). The recursion behavior is described in the schema. It does not mention any destructive actions or permissions, but for a listing tool, this is sufficient.
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: three short sentences that convey purpose, error handling, and alternative tool. Every sentence is valuable and front-loaded.
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?
Given the output schema exists and covers return values, the description adequately covers purpose, behavior, error, and alternative. It is complete for a simple listing tool with no required parameters.
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?
Schema description coverage is 100%, so baseline is 3. The description adds the analogy to `ls -d` which provides semantic context, but does not elaborate on parameters beyond what the schema already provides. No significant added value.
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?
The description clearly states the tool lists folders, analogous to `ls -d`, and explicitly distinguishes it from `list_files`. The error condition is also mentioned. This is specific and distinguishes from siblings.
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 description gives explicit guidance: use this to list folders, and use `list_files` for files. It also mentions the error when path does not exist, indicating when not to use it (if path might be invalid).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_fileAInspect
把文件挪到指定文件夹 (类似 mv file /target/dir/)。
OSS 字节不动, 只改逻辑路径, 操作几毫秒完成。
| Name | Required | Description | Default |
|---|---|---|---|
| file_id | Yes | 要移动的文件 ID | |
| target_folder_path | Yes | 目标文件夹路径, 形如 '/归档/2026'。'/' 即移到根目录. | |
| auto_create_folders | No | 目标路径不存在时是否 mkdir -p |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description explicitly states that the operation only changes the logical path, not the OSS bytes, and completes in milliseconds. This adds valuable behavioral context beyond the basic 'move' verb, compensating for missing annotations.
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 concise: two sentences, no fluff. The purpose is stated first, followed by a key behavioral detail. Every word earns its place.
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?
The description covers the core behavior and performance, but omits potential error scenarios, permissions, or output structure. However, the presence of an output schema reduces the need to describe returns. A bit more context about prerequisites would improve it.
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?
With 100% schema coverage, baseline is 3. The description does not add significant detail beyond what the schema already provides for each parameter. The analogy helps with understanding but does not enhance parameter semantics.
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?
The description clearly states the tool moves a file to a specified folder, using an analogy to Unix `mv`. The verb 'move' and resource 'file' are specific, and the sibling 'move_folder' implicitly distinguishes the scope.
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?
No guidance on when to use this tool versus alternatives like 'move_folder' or 'create_folder'. The description does not mention prerequisites, error conditions, or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_folderAInspect
移动整个文件夹 (类似 mv /工作/项目A /归档/)。
会递归更新所有后代的逻辑路径。OSS 字节不动。
| Name | Required | Description | Default |
|---|---|---|---|
| folder_path | Yes | 要移动的文件夹完整路径, 如 '/工作/项目A' | |
| target_parent_path | Yes | 新父文件夹路径。'/' 即移到根目录。若也想改名, 用 rename_folder 工具 (不在此工具中合并). | |
| auto_create_folders | No | 目标父路径不存在时是否 mkdir -p |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses recursive logical path update and that OSS bytes are not moved (no payload movement). Does not mention permissions, rate limits, or synchronicity. Adds value but leaves gaps.
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?
Two sentences with an example. No redundant information. Front-loaded and efficient. Every sentence adds value.
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?
Output schema exists, so return values not needed. Covers purpose, behavior, and parameter meaning. Could mention constraints like no cross-filesystem moves or subtree moves, but otherwise adequate for this complexity.
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?
Schema covers all parameters. Description adds extra context: example usage, note that rename is separate for target_parent_path, and explanation of auto_create_folders. Provides meaning beyond schema.
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 clearly states the tool moves a folder, analogous to 'mv' command. It specifies recursive update of logical paths and that OSS bytes are not moved. This distinguishes it from siblings like move_file and rename_folder.
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?
Provides an example of usage and clarifies that renaming should use rename_folder. However, lacks explicit when-not-to-use or prerequisites. Context with sibling tools helps but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rename_folderCInspect
改名 (不动 parent)。
| Name | Required | Description | Default |
|---|---|---|---|
| new_name | Yes | 新名字 (不含 / )。同 parent 下不能重名. | |
| folder_path | Yes | 要改名的文件夹完整路径 |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It only states 'do not move parent,' but discloses nothing about permissions, side effects, or failure modes. Minimal behavioral context.
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 very concise (single phrase) but lacks structure or additional context. It is front-loaded, but its brevity sacrifices completeness, making it more under-specified than efficiently concise.
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?
Given the simplicity of the tool (2 params, high schema coverage, no annotations, output schema exists), the description is insufficient. It does not explain return values, constraints like no duplicate names fully, or error conditions.
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?
Schema coverage is 100%, so the baseline is 3. The description adds no additional meaning beyond what the schema provides. The schema itself has descriptions in Chinese, but the tool description offers no extra semantics.
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?
The description '改名 (不动 parent)' clearly states the action (rename) and resource (folder), and the parenthetical 'do not move parent' distinguishes it from the sibling move_folder tool. However, it could be more explicit about the resource type.
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?
No explicit guidance on when to use this tool versus alternatives. The phrase '不动 parent' implies it differs from moving, but there are no when-to-use or when-not-to-use instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scrape_urlAInspect
抓取一个公开网页,返回干净的 Markdown(供 AI 阅读/总结/提取)。
只抓公开网页,禁止内网/保留地址;不生成任何内容,只做抓取与格式转换。
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 要抓取的网页 URL(http/https,仅限公开网页) | |
| formats | No | 输出格式子集:markdown / html / text,默认 markdown | |
| only_main_content | No | 只提取正文主体,去掉导航/广告/页脚 |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It covers security constraints (public-only) and basic behavior (fetching, format conversion). However, it lacks information on error handling, timeouts, concurrency, or rate limits. This is adequate but has gaps.
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 two sentences long, front-loading the main purpose and then adding key constraints. Every sentence earns its place with no redundant words.
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?
The tool has three parameters and an output schema. The description covers the core function, output format, and usage constraints. It does not describe the output schema in detail, but that is provided elsewhere. For a straightforward web scraping tool, the information is largely complete.
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?
Schema description coverage is 100%, so baseline is 3. The description adds a critical constraint on the url parameter (only public web pages), which goes beyond the schema's description. This adds meaningful context, raising the score to 4.
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?
The description clearly states the tool fetches a public web page and returns clean Markdown for AI use. It uses a specific verb (抓取/fetch) and resource (公开网页/public web page), and the purpose is well-defined. The sibling tools are all file/folder operations, so there is no ambiguity.
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 description explicitly states when to use (public web pages) and when not to use (intranet/reserved addresses), along with a clear prohibition. It also clarifies that the tool does not generate content, only fetches and converts. This provides strong guidance for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_filesBInspect
在当前用户的所有文件中搜索。
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | 搜索关键词(文件名或描述) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the scope (current user's files) but does not disclose whether the search covers file content or metadata only, nor any other behavioral traits like potential rate limits or pagination. It adds some context beyond the schema but not enough.
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 a single concise sentence with no wasted words. It could be improved by adding structure (e.g., bullet points) but is already efficient.
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?
Given the tool's simplicity (2 parameters, output schema present), the description is minimal but sufficient. It states the core functionality but leaves questions about search scope (metadata vs. content) unresolved. The output schema helps but the description could be more complete.
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?
Schema description coverage is 50%: the query parameter has a description, while limit lacks one. The tool description does not add any parameter-specific information. Baseline for 50% coverage is 3, as it is not low (<50%) but the description does not compensate.
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?
The description clearly states the tool searches in all files of the current user, using the specific verb 'search' and resource 'files'. This differentiates it from sibling tools like list_files (which lists files) or get_file_info (which retrieves a single file).
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 description provides no guidance on when to use this tool versus alternatives like list_files or get_file_info. There is no mention of context, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_chunkAInspect
上传单个分片 (第 2 步 / 共 3 步)。
可并发调用, 后端内部会记录已上传索引。网络抖动重试同一 chunk_index
安全 (服务端幂等写临时块)。
| Name | Required | Description | Default |
|---|---|---|---|
| chunk_index | Yes | 分片索引 (0-based), 最后一片索引 = total_chunks-1 | |
| data_base64 | Yes | 本片字节的 base64 编码。每片大小应等于 upload_init 返回的 chunk_size, 最后一片可能短。单次调用建议 <12MB base64 (约 8-9MB 原字节)。 | |
| session_uuid | Yes | upload_init 返回的会话 UUID |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full burden. It discloses concurrency, server-side index recording, and idempotency on retry. Missing details like failure modes, session expiration, or rate limits, but covers key behavioral traits.
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?
Two sentences with no filler. Front-loaded with the tool's purpose and step position. Every sentence adds value.
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?
Given the tool complexity (part of a multi-step upload, concurrency, idempotency), the description covers concurrency and retry behavior. It assumes knowledge of upload_init for session_uuid and chunk_size. Output schema presence reduces need for return value explanation. Lacks explicit error handling info but adequate overall.
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?
Schema coverage is 100% (3 parameters described). The description adds value beyond schema by explaining chunk index range (last = total_chunks-1) and data size constraints (matches chunk_size from upload_init). This aids correct usage.
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?
The description clearly states 'upload a single chunk' and identifies it as Step 2 of 3, making the verb and resource specific. It distinguishes from sibling tools that handle folders, shares, or other file operations.
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 description mentions it is Step 2 of 3, implying a sequence with upload_init and upload_complete, and notes concurrency and retry safety. However, it does not explicitly state prerequisites or when not to use this tool, though the step context is helpful.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_completeAInspect
合并所有分片 (第 3 步 / 共 3 步)。
两种路径:
- 直传 (推荐, shim 走这条): parts 带齐所有 (part_number, etag),
后端调 OSS CompleteMultipartUpload 服务端合并, 不耗 ECS 内存/带宽。
- 中转 (兼容老 shim / 网页端): 不传 parts, 从临时分片合并。
返回最终 file 元数据 (id, uuid, filename, size_bytes, sha256, ...).
| Name | Required | Description | Default |
|---|---|---|---|
| parts | No | 【OSS 直传模式】每片对应的 (part_number, etag)。如: [{"part_number": 1, "etag": "abc..."}, ...]。shim 在 PUT 每片到 OSS 后从响应头拿到 ETag, 传回来。传了 parts 走 OSS CompleteMultipartUpload 合并 (字节不经 ECS)。不传则走老路: 从 upload_chunk 落地的临时片合并 (中转模式)。 | |
| session_uuid | Yes | upload_init 返回的会话 UUID |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses both behavioral paths (OSS server-side merge vs local merge), memory/bandwidth implications, and what is returned (final file metadata). This is comprehensive for a completion step.
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?
Description is well-structured with a clear purpose, bullet points for paths, and a final output line. Every sentence is meaningful and front-loaded with the core action. No wasted text.
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?
Given the complexity (multi-step process, two modes) and the presence of an output schema, the description is complete. It explains both paths, their trade-offs, and explicitly lists the return fields. No gaps observed.
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?
Schema coverage is 100%, baseline 3. The description adds value by explaining the parts parameter with examples and behavior (e.g., '传了 parts 走 OSS...'), and session_uuid is clearly linked to upload_init. This exceeds what the schema alone provides.
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?
The description clearly states it merges all shards (step 3 of 3) and distinguishes between direct and transit paths. It uses specific verbs and resources, and the context distinguishes it from sibling tools like upload_init and upload_chunk.
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?
Explicitly states it's step 3, describes two paths with detailed guidance on when to use each (recommended for shim), and implies when not to use (e.g., not for initial upload or chunk upload). Alternatives are clear through context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_fileAInspect
上传一个文件(base64 形式)。
用 init + 单次分片 + complete 的方式复用现有服务。
适合中小文件(< 20MB)。超大文件请使用 Web 端分片上传。
新增 folder_path: 上传到指定文件夹, 默认根目录 "/"。
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | 文件名(含扩展名) | |
| mime_type | No | ||
| folder_path | No | 目标文件夹路径。'/' = 根目录 (默认); '/工作/2026' = 嵌套路径。auto_create_folders=True 时路径不存在会 mkdir -p; auto_create_folders=False 时不存在抛错。 | / |
| content_base64 | Yes | 文件内容的 base64 编码。较大文件建议分多次调用前先咨询管理员。 | |
| auto_create_folders | No | 路径不存在时是否自动 mkdir -p, 默认 True (类似 Linux mkdir -p) |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It mentions the upload process and size limit but fails to disclose error handling, overwrite behavior, or authentication requirements. The existence of an output schema partially compensates, but gaps remain.
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 concise and front-loaded with the main purpose. It uses a few sentences to convey process, size limits, and parameter notes without redundancy, though structure could be slightly improved.
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?
Given the tool complexity, schema coverage, and presence of an output schema, the description is largely complete. It covers purpose, usage context, and key parameter behavior, though it omits error scenarios and idempotency details.
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?
Schema coverage is high (80%), so the baseline is 3. The description adds value by clarifying the folder_path and auto_create_folders behavior, but does not significantly enhance understanding of filename or content_base64 beyond the schema.
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?
The description clearly states it uploads a file in base64 format, using a specific process (init + single chunk + complete). It mentions size limits and folder path, distinguishing it from related tools like upload_chunk and upload_init.
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 description provides a size guideline (suitable for files <20MB) and advises using web-based chunked upload for larger files. It also explains the folder_path parameter. However, it does not explicitly state when not to use this tool versus upload_chunk or other alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_initAInspect
发起分片上传会话 (第 1 步 / 共 3 步)。
返回:
- instant=true 时, file 字段是已秒传的文件元数据, 直接用即可
- instant=false 时, 用 session_uuid + 服务端给的 chunk_size/total_chunks
逐片调 upload_chunk, 最后调 upload_complete。
| Name | Required | Description | Default |
|---|---|---|---|
| sha256 | Yes | 整个文件的 sha256 (64 位小写十六进制); 服务端用这个做秒传命中 | |
| filename | Yes | 文件名(含扩展名) | |
| mime_type | No | ||
| folder_path | No | 目标文件夹路径, 默认 '/' 即根目录。auto_create_folders=True 时会按 mkdir -p 语义自动建。 | / |
| total_size_bytes | Yes | 整个文件的字节数 | |
| auto_create_folders | No | 路径不存在时是否自动 mkdir -p |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
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 clearly explains the two possible return scenarios: instant (file metadata) and non-instant (session_uuid with chunk info), and the subsequent steps. It does not cover error conditions or rate limits, but is adequate for a multi-step upload initiation.
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 concise: one sentence stating purpose, followed by bullet points for return handling. No redundant information, and the key information is front-loaded.
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?
The description explains the overall workflow as step 1 of 3 and references upload_chunk and upload_complete. With an output schema available, the agent can get return field details. It does not cover error handling or session expiry, but provides sufficient context for a multi-step process.
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?
Schema coverage is 83%, so the baseline is 3. The description does not add additional meaning to parameters beyond what the schema already provides; it focuses on usage flow rather than parameter details.
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?
The description clearly states '发起分片上传会话 (第 1 步 / 共 3 步)' (initiate a chunked upload session as step 1 of 3), specifying the verb and resource. It distinguishes from siblings like upload_chunk, upload_complete, and upload_file by framing it as the first step of a multi-step process.
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 description provides clear context on when to use this tool (as the first step of chunked upload) and what to do based on the instant flag. It also implicitly differentiates from a direct upload (upload_file) by describing the chunked flow, but lacks explicit when-not-to-use or alternative tool mentions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!