Skip to main content
Glama

Get a presigned asset-upload URL

create_upload_url

Get a short-lived presigned URL to upload one brand-asset file to IBO's private storage. Requires order_token from get_order; the storage location is bound to the order server-side. PUT the raw file bytes to url, then reference key in submit_brief files[]. Allowed: jpg png webp pdf svg mp4 mov zip ai psd; 250MB/file, 1GB per order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sizeYesFile size in bytes
filenameYes
order_tokenYesFrom get_order

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyNo
urlNo
errorNo

TDQS

A5/5.0
Behavior5/5

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

Annotations already declare non-read-only, non-destructive, non-idempotent. Description adds key behaviors: short-lived, bound to order, PUT method, allowed types/sizes, 1GB per order. No contradictions.

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?

Two sentences, front-loaded with purpose and prerequisite, second sentence covers all needed steps and constraints. No extraneous information.

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

Completeness5/5

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

Covers purpose, prerequisites, steps, constraints, and integration with sibling tool. With output schema present, no need to detail return format. Provides all necessary context for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage 67% but description compensates: explains how filename and size are used, adds file type and size constraints. The POST-upload integration with submit_brief clarifies the key output.

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?

Clearly states the tool gets a short-lived presigned URL to upload one brand-asset file. Verb 'Get' and resource 'presigned URL' are specific. Distinguishes from sibling tools like create_checkout or submit_brief by focusing on upload.

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

Usage Guidelines5/5

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

Explicit prerequisite (order_token from get_order), steps (PUT file then reference key in submit_brief), and constraints (file types, sizes, per-order limit). Provides clear context for when to use vs alternatives.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct purpose: listing offers, creating payment checkout, verifying payment, uploading files, submitting briefs for paid orders, and custom inquiries. No overlap in functionality.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (e.g., create_checkout, get_order, list_offers). No mixing of conventions or unclear names.

Tool Count5/5

Six tools cover the entire workflow without excess or deficiency. Each tool serves a necessary step in the process from offer viewing to brief submission.

Completeness4/5

The tool surface covers the core workflow well. Minor gaps exist (no order cancellation or custom inquiry status retrieval), but these are mitigated by external processes (email) and clear instructions.