Skip to main content
Glama

upload_file

Upload a file from a URL to PutPut storage

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL of the file to upload
prefixNoOptional path prefix for organization
filenameNoOptional filename override
metadataNoOptional key-value metadata
visibilityNoFile visibility (default: public)

Schema Changelog

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

  1. First observed

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 of behavioral disclosure. It only states the function without revealing side effects (e.g., overwrites, storage location), network behavior, or whether server-side fetching occurs. This is insufficient for a write operation.

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, well-structured sentence that is concise and front-loaded with the key action. Every word adds value without unnecessary detail.

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?

The schema covers the parameters, but the description omits behavioral context such as the default visibility (public) and the fact that metadata is free-form. There is no output schema, so expectations about return values are missing. The description is minimal but not misleading, making it adequately complete for a basic tool.

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?

The schema provides 100% coverage for the parameters, so the description does not need to repeat them. However, the description adds no extra meaning about how parameters interact or affect the upload, but the baseline of 3 is appropriate given the schema richness.

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 the action ('Upload'), the resource ('a file'), the source ('from a URL'), and the destination ('PutPut storage'). It is specific and distinct from sibling operations like delete_file or list_files.

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

Usage Guidelines3/5

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

Usage is implied: upload a file from a URL. However, there is no explicit guidance on when to use this tool versus alternatives, nor any mention of prerequisites or exclusions. The description does not provide context such as file size limits or required permissions.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a unique purpose: upload, list, get details, and delete. No overlap or ambiguity between actions.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case: delete_file, get_file_info, list_files, upload_file.

Tool Count5/5

4 tools cover the core file management lifecycle appropriately without being unnecessarily large or sparse.

Completeness4/5

The set covers create (upload), list, detail, and delete. A download or update tool is missing, but for a URL-based upload service, the existing tools cover most workflow needs.