Skip to main content
Glama

Brode.io — image to embroidery & vector MCP server

Brode.io converts any image into machine embroidery files (DST, PES, JEF, VP3, EXP, U01, XXX) or vector graphics (SVG, PDF, EPS, DXF).

Remote MCP server (Streamable HTTP, MCP 2025-06-18), hosted at https://brode.io/api/mcp — same engine and same free account as the brode.io web app (free tier: 5 vectorizations + 2 embroideries per month).

Tools

Tool

What it does

brode_convert

Convert an uploaded image (input_key) to SVG/PDF/EPS/DXF or DST/PES/JEF/VP3/EXP/U01/XXX. Five rendering presets, advanced options, waits up to 30 s for completion.

brode_presets

Guidance: rendering presets (fidele, equilibre, epure, graphiste, minimaliste), output formats and common options.

brode_job_status

Poll a conversion (queued → processing → completed/failed) with progress stage and result metadata (colors, stitches, dimensions).

brode_download

Returns an absolute download URL for the result file, preview PNG, thread color chart PDF or stitch trace JSON — fetch it with your API key as Bearer.

Related MCP server: svg.new MCP Server

Get an API key (free)

  1. Create a free account at brode.io/register

  2. Open Settings → API keys and create a key (brode_…)

Configuration

Claude Desktop / Cursor — mcp.json

{
  "mcpServers": {
    "brode": {
      "type": "http",
      "url": "https://brode.io/api/mcp",
      "headers": { "Authorization": "Bearer brode_YOUR_KEY" }
    }
  }
}

Claude Code

claude mcp add --transport http brode https://brode.io/api/mcp \
  --header "Authorization: Bearer brode_YOUR_KEY"

ZCode — ~/.zcode/cli/config.json

{
  "mcp": {
    "servers": {
      "brode": {
        "type": "http",
        "url": "https://brode.io/api/mcp",
        "headers": { "Authorization": "Bearer brode_YOUR_KEY" }
      }
    }
  }
}

Usage pattern (important)

Tool arguments are model-generated — never inline image bytes. Upload the file once with curl, then convert by reference:

curl -sS -H "Authorization: Bearer brode_YOUR_KEY" \
     -F "file=@image.png" \
     https://brode.io/api/mcp/upload
# → {"input_key":"uploads/<uuid>/source.png","ext":"png",...}

Then call brode_convert:

{ "input_key": "uploads/<uuid>/source.png", "output_format": "dst", "wait_seconds": 30 }

And fetch the result with the URL returned by brode_download:

curl -sS -H "Authorization: Bearer brode_YOUR_KEY" -o design.dst "<url>"

Embroidery files carry the design name as their internal machine label (e.g. LA: in DST headers), taken from the uploaded filename.

Quotas & pricing

Conversions use your brode.io plan quota — free tier: 5 vectorizations + 2 embroideries per month; paid plans from €9.90/month (pricing).


This repository is the public documentation of the hosted Brode.io MCP server. The conversion engine itself is closed-source and runs on brode.io infrastructure.

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    AI logo design MCP server — generates SVG logos with text-to-path conversion, SVG optimization, and full brand kit export (favicon, social media sizes, color palette). 4 tools: text_to_path, optimize_svg, export_brand_kit, image_to_svg.
    90
    34
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables 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.
    7
    16
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/brode-io/brode-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server