# io.github.JonathanWeerakkody/vectorise (npm · vectorizer-mcp)

Vectorize images to SVG and export to PDF, EPS, DXF, PNG, JPG, or WEBP via Vectorise.Me.

- Trust score: 63/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `vectorise-mcp`: 63/100, [markdown](https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorise-mcp.md), [page](https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorise-mcp)
- npm · `vectorizer-mcp`: 63/100 (this document), [markdown](https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorizer-mcp.md), [page](https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorizer-mcp)

## Channel facts

- Registry: `npm`
- Package: `vectorizer-mcp`
- Version: `0.2.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 16 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 795 tokens (~159/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add jonathanweerakkody-vectorise -- npx -y vectorizer-mcp
```

### Codex

```bash
codex mcp add jonathanweerakkody-vectorise -- npx -y vectorizer-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jonathanweerakkody-vectorise": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "vectorizer-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jonathanweerakkody-vectorise --command npx --arg -y --arg vectorizer-mcp
```

### Hermes

```yaml
mcp_servers:
  jonathanweerakkody-vectorise:
    command: "npx"
    args: ["-y", "vectorizer-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "jonathanweerakkody-vectorise": {
      "command": "npx",
      "args": [
        "-y",
        "vectorizer-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 63, −3)

No change was recorded against any check on this day. Supply Chain Security went from 97 to 87. Other categories moved too: Stability & Change Management rose 4.

### 2026-08-02 (score 66, +66)

- [security regression] Provenance: unverified → fail
- [security improvement] Malware scan: unverified → pass
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-08-01 (score 0, −14)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 14, −4)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 18, −21)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 39)

First indexed and scored.

## MCP tools (5)

### `vectorize_image` (~327 tokens)

Vectorize image to SVG

Convert a raster image file (JPG, PNG, BMP, WEBP, AVIF — up to 25 MB) into a scalable SVG vector. Writes the SVG next to the input file (or to output_path) and returns the saved path plus conversion stats. For most images just set `preset` (logo, photo, illustration, pixel_art, technical_drawing) or leave everything unset for full auto-detection. Use quality_tier to trade speed vs fidelity.

Input parameters:

- `color_mode` (string): Colour handling. Default color
- `image_path` (string, required): Absolute path to the input image file
- `output_path` (string): Where to save the SVG. Defaults to the input path with a .svg extension
- `palette_count` (integer): Target number of colours (sets manual palette mode)
- `preserve_exact_colors` (boolean): Keep source colours without merging similar shades
- `preset` (string): Friendly preset matching the app UI: auto (engine detects image type), logo (sharp edges, exact brand colours), illustration (drawings/cartoons/clipart), photo (smooth tonal gradients), pixel_art (pi…
- `quality_profile` (string): Advanced: engine profile. Prefer `preset` unless you know the engine. Default auto
- `quality_tier` (string): Speed/quality trade-off. Default balanced_crisp (credits: fast=1, balanced_crisp=2, high_precision=5)

### `vectorize_batch` (~308 tokens)

Vectorize multiple images to SVG

Convert up to 20 raster image files to SVG in one call. The same settings (preset, quality_tier, etc.) apply to every image. Files are converted sequentially and each gets an independent result — one bad file does not fail the batch. SVGs are saved next to each input (or into output_dir). Credits are charged per successful conversion.

Input parameters:

- `color_mode` (string): Colour handling. Default color
- `image_paths` (array, required): Absolute paths of the input image files (1–20)
- `output_dir` (string): Directory to save all SVGs into. Defaults to saving next to each input file
- `palette_count` (integer): Target number of colours (sets manual palette mode)
- `preserve_exact_colors` (boolean): Keep source colours without merging similar shades
- `preset` (string): Friendly preset matching the app UI: auto (engine detects image type), logo (sharp edges, exact brand colours), illustration (drawings/cartoons/clipart), photo (smooth tonal gradients), pixel_art (pi…
- `quality_profile` (string): Advanced: engine profile. Prefer `preset` unless you know the engine. Default auto
- `quality_tier` (string): Speed/quality trade-off. Default balanced_crisp (credits: fast=1, balanced_crisp=2, high_precision=5)

### `export_svg` (~102 tokens)

Export SVG to another format

Convert an SVG file to PDF, EPS, DXF, PNG, JPG, or WEBP via Vectorise.Me. EPS and DXF require a Pro plan. Writes the result next to the input (or to output_path).

Input parameters:

- `format` (string, required): Target output format
- `output_path` (string): Where to save the output. Defaults to the input path with the new extension
- `svg_path` (string, required): Absolute path to the input SVG file

### `get_usage` (~29 tokens)

Get API usage and credits

Show the plan, API credit balance, and recent daily usage for the configured Vectorise.Me API key.

### `get_capabilities` (~29 tokens)

Get export capabilities

List available export formats and per-format options supported by the Vectorise.Me API. No auth required.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorizer-mcp#diagnostics

## Score history

- 2026-08-03: 63
- 2026-08-02: 66
- 2026-08-01: 0
- 2026-07-31: 14
- 2026-07-30: 18
- 2026-07-28: 39
- 2026-07-27: 39

## Links

- npm package: https://www.npmjs.com/package/vectorizer-mcp
- Socket report: https://socket.dev/npm/package/vectorizer-mcp
- Website: https://vectorise.me/developers
- Changelog RSS feed: https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorizer-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorizer-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/jonathanweerakkody-vectorise/vectorizer-mcp
