🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

vectorizer-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vectorizer-mcp

MCP server for Vectorise.Me — vectorize raster images (JPG, PNG, BMP, WEBP, AVIF) to SVG and export to PDF, EPS, DXF, PNG, JPG, or WEBP from any MCP-compatible AI agent. Also published as vectorise-mcp (identical, kept in sync).

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

vectorizer-mcp

MCP server for Vectorise.Me — lets AI agents (Claude Desktop, Claude Code, Cursor, and any MCP-compatible client) vectorize raster images to SVG and export to PDF, EPS, DXF, PNG, JPG, or WEBP.

Also published as vectorise-mcp — identical package, either name works with npx.

Tools

ToolWhat it does
vectorize_imageConvert JPG/PNG/BMP/WEBP/AVIF (≤25 MB) to SVG, saved to disk
vectorize_batchConvert up to 20 images in one call with shared settings and per-file results
export_svgConvert an SVG file to PDF, EPS, DXF, PNG, JPG, or WEBP
get_usageShow plan, credit balance, and recent usage (needs API key)
get_capabilitiesList export formats and options (no auth)

Presets

Instead of learning the engine's tuning knobs, pass a preset (works in both vectorize tools):

PresetBest for
autoEngine detects the image type (default)
logoLogos, icons, text — sharp edges, exact brand colours
illustrationDrawings, cartoons, clipart
photoPhotographs — smooth tonal gradients
pixel_artPixel art — pixel-faithful, exact colours
technical_drawingBlueprints and line art — black & white

Advanced options (quality_tier, quality_profile, color_mode, palette_count, preserve_exact_colors) are still available, and anything you set explicitly overrides the preset.

Setup

Get an API key at vectorise.me/app (anonymous use works too, with basic rate limits). Credits per conversion: fast=1, balanced_crisp=2, high_precision=5.

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "vectorizer": {
      "command": "npx",
      "args": ["-y", "vectorizer-mcp"],
      "env": { "VECTORISE_API_KEY": "vm_live_..." }
    }
  }
}

Claude Code

claude mcp add vectorizer -e VECTORISE_API_KEY=vm_live_... -- npx -y vectorizer-mcp

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "vectorizer": {
      "command": "npx",
      "args": ["-y", "vectorizer-mcp"],
      "env": { "VECTORISE_API_KEY": "vm_live_..." }
    }
  }
}

Environment variables

  • VECTORISE_API_KEY — API key (optional; anonymous works with basic limits)
  • VECTORISE_API_URL — base URL override (default https://vectorise.me)

Example prompts

  • "Vectorize ~/Desktop/logo.png as a clean SVG with the logo preset"
  • "Convert every PNG in ~/Designs/icons to SVG using the pixel_art preset"
  • "Convert this sketch to SVG with the technical_drawing preset, then export it as DXF"
  • "How many Vectorise credits do I have left?"

API docs

Full REST API documentation: vectorise.me/developers · OpenAPI spec: vectorise.me/api/v1/openapi.json

License

MIT

Keywords

mcp

FAQs

Package last updated on 17 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts