Imagetosvg
FreeNot checkedEnables AI agents to vectorize raster images and import vector files (PDF/AI/EPS), then inspect, edit, render, and optimize SVGs locally.
About
Enables AI agents to vectorize raster images and import vector files (PDF/AI/EPS), then inspect, edit, render, and optimize SVGs locally.
README
A local Model Context Protocol server that gives AI agents full control over images — vectorize a raster image, import a vector file (PDF/AI/EPS), then inspect, edit, render, and optimize the SVG. No API keys, no cloud; everything runs locally.
The idea: an SVG is just text, and the agent is already the intelligence. So this server only does what an agent can't do on its own — turn pixels into editable paths and render SVG back to a picture for visual verification — plus a set of structured edit operations for the parts of SVG editing that are tedious by hand. The agent does the rest with its own file tools.
Why
Agents normally treat an image as opaque pixels they can't change. Convert it to SVG and the agent can recolor a logo, delete a layer, resize, restyle, or simplify it — then render the result and see whether the edit worked, all deterministically.
Tools
| Tool | Purpose |
|---|---|
convert_image_to_svg |
Raster → SVG (hybrid: clean trace for simple graphics, layered color trace for complex ones) |
import_vector |
PDF / AI / EPS → SVG (paths preserved, no tracing) |
inspect_svg |
List addressable layers (id, tag, fill, stroke, bbox) without parsing path strings |
edit_svg |
Structured edits by layer id (recolor, remove, isolate, transform, resize, set attribute) |
render_svg |
Rasterize SVG → PNG so the agent can verify visually |
optimize_svg |
Clean up with svgo while preserving layer ids and viewBox |
Supported raster inputs: PNG, JPG, WebP, GIF, BMP, TIFF, AVIF. Supported vector inputs: PDF, PDF-compatible AI, and EPS (EPS requires Ghostscript).
Install
git clone https://github.com/ujo78/imagetosvg-mcp.git
cd imagetosvg-mcp
npm install # builds automatically (prepare hook)
Requires Node.js >= 20. All native dependencies ship prebuilt binaries — no system toolchain required.
Connect it to an agent
Claude Code
User scope (available in every project):
claude mcp add -s user imagetosvg -- node "/absolute/path/to/imagetosvg-mcp/dist/index.js"
Or per-project, commit a .mcp.json at the repo root:
{
"mcpServers": {
"imagetosvg": {
"command": "node",
"args": ["/absolute/path/to/imagetosvg-mcp/dist/index.js"]
}
}
}
Claude Desktop / Cursor / Windsurf
Add the same block to the client's MCP config (claude_desktop_config.json for
Claude Desktop; the MCP settings panel for Cursor/Windsurf). Use an absolute path
to dist/index.js.
On Windows, use forward slashes in the path, e.g.
C:/Users/you/imagetosvg-mcp/dist/index.js.
The workflow
The bundled Claude skill teaches agents this loop:
- Look at the source image.
- Convert (
convert_image_to_svg) or import (import_vector); check the returned PNG preview. - Compare preview to the original; re-convert with a different
mode/max_colorsif needed. - Inspect (
inspect_svg) to learn the layers. - Edit with
edit_svg(structured) or the agent's own file tools (freeform). - Verify with
render_svgand look. Iterate. - Finalize with
optimize_svgand use the.svgin place of the image.
edit_svg operations
setFill{id,color}, setStroke{id,color}, removeNode{id}, isolateNode{id},
transform{id,translate?,scale?,rotate?}, setDimensions{width?,height?},
setAttribute{id,name,value}. Layer ids (layer-N) are assigned in document
order and survive optimize_svg.
Optional: EPS support
EPS import requires Ghostscript on PATH
(gswin64c on Windows). PDF and AI work without it; if Ghostscript is missing,
import_vector returns a clear error for EPS only.
Development
npm run dev # run the server from source via tsx
npm run typecheck # tsc --noEmit
npm test # vitest
npm run build # tsc -> dist/
See CONTRIBUTING.md for the full guide.
How it works
- Hybrid conversion: a unique-color heuristic classifies an image as simple
(vtracer binary trace → clean paths) or layered (vtracer color trace → stacked,
individually addressable color layers). Override with
mode/max_colors. - Vector import: PDF/AI go through mupdf (WASM, no system deps) with paths preserved; EPS is converted via Ghostscript when available.
- Stack: TypeScript (ESM) ·
@modelcontextprotocol/sdk·@neplex/vectorizer(vtracer) ·sharp·@resvg/resvg-js·svgo·svgson.
License
MIT © Rakshit Raj
Installing Imagetosvg
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/ujo78/imagetosvg-mcpFAQ
Is Imagetosvg MCP free?
Yes, Imagetosvg MCP is free — one-click install via Unyly at no cost.
Does Imagetosvg need an API key?
No, Imagetosvg runs without API keys or environment variables.
Is Imagetosvg hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Imagetosvg in Claude Desktop, Claude Code or Cursor?
Open Imagetosvg on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Imagetosvg with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
