Skip to main content
Glama

brode_convert

Convert a raster image (PNG/JPG/WebP/GIF/BMP/TIFF) to a vector format (svg, pdf, eps, dxf) or a machine embroidery file (dst, pes, jef, vp3, exp, u01, xxx). INPUT: upload your local file ONCE with your shell (curl -sS -H 'Authorization: Bearer ' -F 'file=@image.png' https://brode.io/api/mcp/upload) and pass the returned input_key here. Files up to 20 MB are accepted as-is — never read, compress or base64 the image yourself. Returns a job_id; waits up to wait_seconds for completion. Uses your brode.io account quota.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
presetNoStyle preset. Default: equilibre.
optionsNoAdvanced options (see brode_presets). Unknown keys are rejected.
input_keyYesUpload reference from POST /api/mcp/upload (the only accepted input).
wait_secondsNoServer-side wait for completion. Default 15.
output_formatYes

Schema Changelog

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

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations present, the description carries the full transparency burden. It openly discloses async behavior ('Returns a job_id; waits up to wait_seconds for completion'), the 20 MB file limit, the quota consumption, and the input_key requirement. It does not describe failure modes or error responses, but it covers the key operational traits an agent needs to call the tool correctly.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: formats, upload procedure, size limit, behavioral warning, return behavior, and quota. The purpose is front-loaded and the critical instructions are placed early. The curl example adds length but is essential operational detail rather than filler.

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

Completeness4/5

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

For a tool with five parameters, nested options, no annotations, and no output schema, the description covers the full workflow: upload, conversion, wait behavior, and resource consumption. It could mention how to retrieve results via siblings like brode_download or brode_job_status, but those sibling tools are visible and the job_id handoff strongly implies the next step.

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

Parameters4/5

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

Schema coverage is 80%, so the baseline is 3, but the description adds real value beyond the schema. It clarifies that input_key must come from the specific upload endpoint, groups output formats into vector vs embroidery categories, and explains wait_seconds behavior in the conversion flow. This helps an agent reason about how the parameters fit together.

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 opens with a specific verb and resource: 'Convert a raster image ... to a vector format ... or a machine embroidery file.' It explicitly lists acceptable input and output formats, making the tool's scope unambiguous. It also clearly distinguishes itself from siblings like brode_download, brode_job_status, and brode_presets by describing a conversion-specific responsibility.

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

Usage Guidelines4/5

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

The description provides strong practical guidance: upload the file once via the provided curl command, pass the returned input_key, and wait for completion. It also warns not to read, compress, or base64 the image. It does not explicitly name alternative tools for download or status checking, but the workflow context and sibling names make the intended usage clear.

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.2/5.0
Disambiguation5/5

Each tool has a distinct role in the conversion workflow: initiating a job, checking its status, downloading results, and listing available presets/formats. There is no overlap or ambiguity between tool purposes.

Naming Consistency4/5

All tools use the consistent brode_ prefix and snake_case, but two use verb-style names (convert, download) while two use noun-style names (job_status, presets). The pattern is predictable and readable, with only minor stylistic inconsistency.

Tool Count5/5

Four tools is well-scoped for a focused single-purpose conversion API. Each tool covers an essential part of the user journey: convert, check status, download, and discover presets.

Completeness5/5

The asynchronous conversion lifecycle is fully covered: initiate conversion, poll status, download output, and consult presets/options. Upload is handled through a documented external mechanism, which fits the tool design.

Resources