Brode.io
Server Details
Convert any image into machine embroidery files (DST, PES…) or vector graphics (SVG, PDF, EPS, DXF).
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolsbrode_convertAInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| preset | No | Style preset. Default: equilibre. | |
| options | No | Advanced options (see brode_presets). Unknown keys are rejected. | |
| input_key | Yes | Upload reference from POST /api/mcp/upload (the only accepted input). | |
| wait_seconds | No | Server-side wait for completion. Default 15. | |
| output_format | Yes |
TDQS
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.
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.
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.
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.
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.
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.
brode_downloadAInspect
Download a completed conversion's file: the result itself (file="output", default) or its companions — "preview" (PNG rendering), "worksheet" (embroidery thread color chart PDF), "stitches" (stitch trace JSON). Returns an absolute 'url' with filename, MIME type and size — fetch it with header 'Authorization: Bearer ' (e.g. curl -o file.dst ). Never returns base64: tool-result budgets can't carry file payloads.
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | Which file to fetch (default: output). preview/worksheet/stitches exist for completed jobs; worksheet and stitches only for embroidery formats. | |
| job_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavior disclosure burden. It explains that the tool returns an absolute URL rather than the file itself, requires an 'Authorization: Bearer' header when fetching, returns filename/MIME/size, and never returns base64 due to tool-result budget limits. It does not discuss error cases, but the key operational behavior is well covered.
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 dense but front-loaded: it states the object, lists variants with formats, explains the return type and auth requirement, and closes with the base64 limitation. Every clause earns its place and there is no filler or redundant restatement of the tool name.
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?
There is no output schema and no annotations, but the description fully explains what the agent receives (absolute URL, filename, MIME type, size), how to access the file (Authorization header, curl example), and which file types are available under which conditions. An agent can correctly invoke this tool from the description alone.
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 documents the 'file' enum and default, but the description adds concrete meaning: preview is a PNG rendering, worksheet is an embroidery thread color chart PDF, and stitches is a stitch trace JSON. It also frames job_id as identifying the completed conversion whose file is being downloaded, which is adequate despite the schema not describing job_id beyond its type.
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 opens with a specific verb and object: 'Download a completed conversion's file', then enumerates exactly which artifacts are available (output, preview, worksheet, stitches). This clearly distinguishes it from siblings like brode_convert, brode_job_status, and brode_presets by action and resource.
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?
Scoping is clear: the tool is for completed conversions, and availability constraints are stated explicitly (preview/worksheet/stitches only exist for completed jobs; worksheet/stitches only for embroidery formats). It does not explicitly name sibling alternatives or give a 'when not to use' clause, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brode_job_statusAInspect
Get the status of a conversion job (queued, processing, completed, failed) with progress stage and result metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. It does indicate this is a read-only lookup ('Get'), names the possible job states, and mentions progress/result metadata. It does not disclose polling semantics, failure behavior, or whether repeated calls have side effects, though the absence of such notes is less critical for a simple status endpoint.
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 well-structured sentence that front-loads the action and resource, then adds useful status enumeration and result metadata without any filler.
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 status look-up, the description covers the core purpose and return highlights, but it omits important usage context: how job_id is obtained, that this is a polling operation after brode_convert, and when a job can be considered final. Sibling tool names imply this flow but do not make it explicit.
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 has one required job_id with a UUID format, and schema description coverage is 0%, so the description needs to compensate. The description does not explain where job_id comes from, what it refers to beyond 'conversion job', or any constraints. The natural meaning of 'job_id' is understandable, but the description adds essentially no parameter-level guidance.
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 uses a specific verb ('Get') and a clear resource ('status of a conversion job'), and it enumerates the possible states: queued, processing, completed, failed. It also mentions progress stage and result metadata, making it clearly distinct from the sibling conversion, download, and preset 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?
The description implies this is a polling/status-check tool, likely used after brode_convert and before the job can be downloaded. However, it does not explicitly state when to use this tool versus brode_download, nor does it say that job_id must come from a prior conversion call.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brode_presetsAInspect
List Brode presets, output formats and common conversion options with guidance for choosing.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the behavioral burden. 'List' discloses that it is a read-only, informational operation, but it does not describe the return format, whether the list is exhaustive, or if any special prerequisites exist. It is adequate but minimal.
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, well-structured sentence that directly states what is listed and mentions the added guidance. There is no redundant or vague wording; it is appropriately concise 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?
For a simple, parameterless reference tool with no output schema and no annotations, the description is nearly complete: it specifies what is listed (presets, output formats, conversion options) and that guidance is included. It does not explicitly describe the output structure, but that is largely implied by the word 'List'.
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, so the baseline is 4. The description does not need to explain parameter details; it only describes the tool's output, which is sufficient.
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 uses a specific verb ('List') and a concrete resource ('Brode presets, output formats and common conversion options'), which clearly distinguishes it from the sibling tools (brode_convert, brode_download, brode_job_status). It states exactly what the tool provides, making its purpose unambiguous.
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 phrase 'with guidance for choosing' gives clear context that the tool helps users select presets/formats/options, implying it should be used before a conversion task. It does not explicitly mention alternatives or exclude cases, but the usage context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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!
Related MCP Connectors
Generate and vectorize clean, editable SVG graphics from text, images, or both.
Convert files between formats without quality loss. Speed up your workflow with fast, reliable con…
Generate vector art, vectorize images, and return SVG, PNG, and logo kits to AI agents.
Convert files between 400+ image, video, audio, document, ebook, archive and font formats.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceBrode.io - Convert any image into machine embroidery files (DST, PES, JEF, VP3, EXP, U01, XXX) or vector graphics (SVG, PDF, EPS, DXF) — hosted remote server with a free tier, by the maker of the Brode web app.-
- FlicenseAqualityCmaintenanceEnables AI assistants to convert SVG designs into machine-embroidery files (DST, PES, etc.) without Inkscape, and provides tools for lettering, validation, and previews.21-
- AlicenseAqualityDmaintenanceEnables AI-powered image to SVG vectorization, background removal, and SVG manipulation directly through MCP-compatible clients. Users can convert images, process batches, and edit vector properties like colors and complexity using the svg.new API.7161MIT
- AlicenseAqualityDmaintenanceEnables conversion between multiple image formats including JPG, PNG, WebP, GIF, BMP, TIFF, SVG, ICO, and AVIF with quality control and batch processing capabilities.4982MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.